[doc] Update PHP doc links (#18957)

* Replace https://secure.php.net with https://www.php.net

* Replace http://www.php.net with https://www.php.net
This commit is contained in:
Bizley
2021-10-19 14:50:26 +02:00
committed by GitHub
parent b22bcaebfd
commit 0041f034fd
221 changed files with 596 additions and 596 deletions

View File

@@ -97,7 +97,7 @@ class ArrayExpression implements ExpressionInterface, \ArrayAccess, \Countable,
/**
* Whether a offset exists
*
* @link https://secure.php.net/manual/en/arrayaccess.offsetexists.php
* @link https://www.php.net/manual/en/arrayaccess.offsetexists.php
* @param mixed $offset <p>
* An offset to check for.
* </p>
@@ -115,7 +115,7 @@ class ArrayExpression implements ExpressionInterface, \ArrayAccess, \Countable,
/**
* Offset to retrieve
*
* @link https://secure.php.net/manual/en/arrayaccess.offsetget.php
* @link https://www.php.net/manual/en/arrayaccess.offsetget.php
* @param mixed $offset <p>
* The offset to retrieve.
* </p>
@@ -130,7 +130,7 @@ class ArrayExpression implements ExpressionInterface, \ArrayAccess, \Countable,
/**
* Offset to set
*
* @link https://secure.php.net/manual/en/arrayaccess.offsetset.php
* @link https://www.php.net/manual/en/arrayaccess.offsetset.php
* @param mixed $offset <p>
* The offset to assign the value to.
* </p>
@@ -148,7 +148,7 @@ class ArrayExpression implements ExpressionInterface, \ArrayAccess, \Countable,
/**
* Offset to unset
*
* @link https://secure.php.net/manual/en/arrayaccess.offsetunset.php
* @link https://www.php.net/manual/en/arrayaccess.offsetunset.php
* @param mixed $offset <p>
* The offset to unset.
* </p>
@@ -163,7 +163,7 @@ class ArrayExpression implements ExpressionInterface, \ArrayAccess, \Countable,
/**
* Count elements of an object
*
* @link https://secure.php.net/manual/en/countable.count.php
* @link https://www.php.net/manual/en/countable.count.php
* @return int The custom count as an integer.
* </p>
* <p>
@@ -178,7 +178,7 @@ class ArrayExpression implements ExpressionInterface, \ArrayAccess, \Countable,
/**
* Retrieve an external iterator
*
* @link https://secure.php.net/manual/en/iteratoraggregate.getiterator.php
* @link https://www.php.net/manual/en/iteratoraggregate.getiterator.php
* @return Traversable An instance of an object implementing <b>Iterator</b> or
* <b>Traversable</b>
* @since 2.0.14.1