Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJ0WI <J0WI@users.noreply.github.com>2020-09-17 18:23:07 +0300
committerJ0WI <J0WI@users.noreply.github.com>2020-09-17 18:40:04 +0300
commit68ce17e59bf8bc09757f9b56fdad458679d6e988 (patch)
tree324ade0863f0680002324ccddcd8f4ae5e06f97c /build/stubs
parentec07ca2abbc88f395b8eeedc4b2e5b679018a673 (diff)
Unify links to php.net
Update all links to https://www.php.net/ Signed-off-by: J0WI <J0WI@users.noreply.github.com>
Diffstat (limited to 'build/stubs')
-rw-r--r--build/stubs/gd.php32
-rw-r--r--build/stubs/imagick.php2
-rw-r--r--build/stubs/intl.php626
-rw-r--r--build/stubs/memcached.php2
4 files changed, 331 insertions, 331 deletions
diff --git a/build/stubs/gd.php b/build/stubs/gd.php
index b7e9419f7eb..061bfe6453e 100644
--- a/build/stubs/gd.php
+++ b/build/stubs/gd.php
@@ -2805,9 +2805,9 @@ define('IMG_TGA', 128);
/**
* Return an image containing the affine tramsformed src image, using an optional clipping area
- * @link https://secure.php.net/manual/en/function.imageaffine.php
+ * @link https://www.php.net/manual/en/function.imageaffine.php
* @param resource $image <p>An image resource, returned by one of the image creation functions,
- * such as {@link https://secure.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}.</p>
+ * such as {@link https://www.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}.</p>
* @param array $affine <p>Array with keys 0 to 5.</p>
* @param array $clip [optional] <p>Array with keys "x", "y", "width" and "height".</p>
* @return resource|bool Return affined image resource on success or FALSE on failure.
@@ -2816,7 +2816,7 @@ function imageaffine($image, $affine, $clip = null) {}
/**
* Concat two matrices (as in doing many ops in one go)
- * @link https://secure.php.net/manual/en/function.imageaffinematrixconcat.php
+ * @link https://www.php.net/manual/en/function.imageaffinematrixconcat.php
* @param array $m1 <p>Array with keys 0 to 5.</p>
* @param array $m2 <p>Array with keys 0 to 5.</p>
* @return array|bool Array with keys 0 to 5 and float values or <b>FALSE</b> on failure.
@@ -2826,7 +2826,7 @@ function imageaffinematrixconcat(array $m1, array $m2) {}
/**
* Return an image containing the affine tramsformed src image, using an optional clipping area
- * @link https://secure.php.net/manual/en/function.imageaffinematrixget.php
+ * @link https://www.php.net/manual/en/function.imageaffinematrixget.php
* @param int $type <p> One of <b>IMG_AFFINE_*</b> constants.
* @param mixed $options [optional]
* @return array|bool Array with keys 0 to 5 and float values or <b>FALSE</b> on failure.
@@ -2837,9 +2837,9 @@ function imageaffinematrixget ($type, $options = null) {}
/**
* Crop an image using the given coordinates and size, x, y, width and height
- * @link https://secure.php.net/manual/en/function.imagecrop.php
+ * @link https://www.php.net/manual/en/function.imagecrop.php
* @param resource $image <p>
- * An image resource, returned by one of the image creation functions, such as {@link https://secure.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}.
+ * An image resource, returned by one of the image creation functions, such as {@link https://www.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}.
* </p>
* @param array $rect <p>Array with keys "x", "y", "width" and "height".</p>
* @return resource|bool Return cropped image resource on success or FALSE on failure.
@@ -2849,9 +2849,9 @@ function imagecrop ($image, $rect) {}
/**
* Crop an image automatically using one of the available modes
- * @link https://secure.php.net/manual/en/function.imagecropauto.php
+ * @link https://www.php.net/manual/en/function.imagecropauto.php
* @param resource $image <p>
- * An image resource, returned by one of the image creation functions, such as {@link https://secure.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}.
+ * An image resource, returned by one of the image creation functions, such as {@link https://www.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}.
* </p>
* @param int $mode [optional] <p>
* One of <b>IMG_CROP_*</b> constants.
@@ -2870,9 +2870,9 @@ function imagecropauto ($image, $mode = IMG_CROP_DEFAULT, $threshold = .5, $colo
/**
* Flips an image using a given mode
- * @link https://secure.php.net/manual/en/function.imageflip.php
+ * @link https://www.php.net/manual/en/function.imageflip.php
* @param resource $image <p>
- * An image resource, returned by one of the image creation functions, such as {@link https://secure.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}.
+ * An image resource, returned by one of the image creation functions, such as {@link https://www.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}.
* </p>
* @param int $mode <p>
* Flip mode, this can be one of the <b>IMG_FLIP_*</b> constants:
@@ -2911,9 +2911,9 @@ function imageflip ($image, $mode) {}
/**
* Converts a palette based image to true color
- * @link https://secure.php.net/manual/en/function.imagepalettetotruecolor.php
+ * @link https://www.php.net/manual/en/function.imagepalettetotruecolor.php
* @param resource $image <p>
- * An image resource, returnd by one of the image creation functions, such as {@link https://secure.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}.
+ * An image resource, returnd by one of the image creation functions, such as {@link https://www.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}.
* </p>
* @return bool Returns <b>TRUE</b> if the convertion was complete, or if the source image already is a true color image, otherwise <b>FALSE</b> is returned.
* @since 5.5
@@ -2923,9 +2923,9 @@ function imagepalettetotruecolor ($image) {}
/**
* @since 5.5
* Scale an image using the given new width and height
- * @link https://secure.php.net/manual/en/function.imagescale.php
+ * @link https://www.php.net/manual/en/function.imagescale.php
* @param resource $image <p>
- * An image resource, returnd by one of the image creation functions, such as {@link https://secure.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}.
+ * An image resource, returnd by one of the image creation functions, such as {@link https://www.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}.
* </p>
* @param int $new_width
* @param int $new_height [optional]
@@ -2937,9 +2937,9 @@ function imagescale ($image, $new_width, $new_height = -1, $mode = IMG_BILINEAR_
/**
* Set the interpolation method
- * @link https://secure.php.net/manual/en/function.imagesetinterpolation.php
+ * @link https://www.php.net/manual/en/function.imagesetinterpolation.php
* @param resource $image <p>
- * An image resource, returned by one of the image creation functions, such as {@link https://secure.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}.
+ * An image resource, returned by one of the image creation functions, such as {@link https://www.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}.
* </p>
* @param int $method <p>
* The interpolation method, which can be one of the following:
diff --git a/build/stubs/imagick.php b/build/stubs/imagick.php
index 0c489736223..147e8b34dbd 100644
--- a/build/stubs/imagick.php
+++ b/build/stubs/imagick.php
@@ -1944,7 +1944,7 @@ class Imagick implements Iterator, Countable {
public function getImageFormat () {}
/**
- * @link https://secure.php.net/manual/en/imagick.getimagemimetype.php
+ * @link https://www.php.net/manual/en/imagick.getimagemimetype.php
* @return string Returns the image mime-type.
*/
public function getImageMimeType () {}
diff --git a/build/stubs/intl.php b/build/stubs/intl.php
index d8533d9079a..201db9a33f4 100644
--- a/build/stubs/intl.php
+++ b/build/stubs/intl.php
@@ -1106,27 +1106,27 @@ class Normalizer {
/**
* Default normalization options
- * @link https://secure.php.net/manual/en/class.normalizer.php
+ * @link https://www.php.net/manual/en/class.normalizer.php
*/
const OPTION_DEFAULT = "";
/**
* No decomposition/composition
- * @link https://secure.php.net/manual/en/class.normalizer.php
+ * @link https://www.php.net/manual/en/class.normalizer.php
* @removed 8.0
*/
const NONE = "1";
/**
* Normalization Form D (NFD) - Canonical Decomposition
- * @link https://secure.php.net/manual/en/class.normalizer.php
+ * @link https://www.php.net/manual/en/class.normalizer.php
*/
const FORM_D = "2";
const NFD = 2;
/**
* Normalization Form KD (NFKD) - Compatibility Decomposition
- * @link https://secure.php.net/manual/en/class.normalizer.php
+ * @link https://www.php.net/manual/en/class.normalizer.php
*/
const FORM_KD = "3";
const NFKD = 3;
@@ -1134,7 +1134,7 @@ class Normalizer {
/**
* Normalization Form C (NFC) - Canonical Decomposition followed by
* Canonical Composition
- * @link https://secure.php.net/manual/en/class.normalizer.php
+ * @link https://www.php.net/manual/en/class.normalizer.php
*/
const FORM_C = "4";
const NFC = 4;
@@ -1142,7 +1142,7 @@ class Normalizer {
/**
* Normalization Form KC (NFKC) - Compatibility Decomposition, followed by
* Canonical Composition
- * @link https://secure.php.net/manual/en/class.normalizer.php
+ * @link https://www.php.net/manual/en/class.normalizer.php
*/
const FORM_KC = "5";
const NFKC = 5;
@@ -1771,7 +1771,7 @@ class IntlDateFormatter {
/**
* (PHP 5 &gt;= 5.5.0, PECL intl &gt;= 3.0.0)<br/>
* Get copy of formatter's calendar object
- * @link https://secure.php.net/manual/en/intldateformatter.getcalendarobject.php
+ * @link https://www.php.net/manual/en/intldateformatter.getcalendarobject.php
* @return IntlCalendar A copy of the internal calendar object used by this formatter.
*/
public function getCalendarObject() { }
@@ -1779,7 +1779,7 @@ class IntlDateFormatter {
/**
* (PHP 5 &gt;= 5.5.0, PECL intl &gt;= 3.0.0)<br/>
* Get formatter's timezone
- * @link https://secure.php.net/manual/en/intldateformatter.gettimezone.php
+ * @link https://www.php.net/manual/en/intldateformatter.gettimezone.php
* @return IntlTimeZone|false The associated IntlTimeZone object or FALSE on failure.
*/
public function getTimeZone() { }
@@ -1793,7 +1793,7 @@ class IntlDateFormatter {
* If <b>NULL</b> or the empty string, the default time zone for the runtime is used.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
- * @deprecated 5.5 https://secure.php.net/manual/en/migration55.deprecated.php
+ * @deprecated 5.5 https://www.php.net/manual/en/migration55.deprecated.php
* @removed 7.0
*/
public function setTimeZoneId($zone) { }
@@ -1809,26 +1809,26 @@ class IntlDateFormatter {
* <li>
* <p>
* <b>NULL</b>, in which case the default timezone will be used, as specified in
- * the ini setting {@link "https://secure.php.net/manual/en/datetime.configuration.php#ini.date.timezone" date.timezone} or
- * through the function {@link "https://secure.php.net/manual/en/function.date-default-timezone-set.php" date_default_timezone_set()} and as
- * returned by {@link "https://secure.php.net/manual/en/function.date-default-timezone-get.php" date_default_timezone_get()}.
+ * the ini setting {@link "https://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone" date.timezone} or
+ * through the function {@link "https://www.php.net/manual/en/function.date-default-timezone-set.php" date_default_timezone_set()} and as
+ * returned by {@link "https://www.php.net/manual/en/function.date-default-timezone-get.php" date_default_timezone_get()}.
* </p>
* </li>
* <li>
* <p>
- * An {@link "https://secure.php.net/manual/en/class.intltimezone.php" IntlTimeZone}, which will be used directly.
+ * An {@link "https://www.php.net/manual/en/class.intltimezone.php" IntlTimeZone}, which will be used directly.
* </p>
* </li>
* <li>
* <p>
- * A {@link "https://secure.php.net/manual/en/class.datetimezone.php" DateTimeZone}. Its identifier will be extracted
+ * A {@link "https://www.php.net/manual/en/class.datetimezone.php" DateTimeZone}. Its identifier will be extracted
* and an ICU timezone object will be created; the timezone will be backed
* by ICU's database, not PHP's.
* </p>
* </li>
*<li>
* <p>
- * A {@link "https://secure.php.net/manual/en/language.types.string.php" string}, which should be a valid ICU timezone identifier.
+ * A {@link "https://www.php.net/manual/en/language.types.string.php" string}, which should be a valid ICU timezone identifier.
* See <b>IntlTimeZone::createTimeZoneIDEnumeration()</b>. Raw offsets such as <em>"GMT+08:30"</em> are also accepted.
* </p>
* </li>
@@ -1904,12 +1904,12 @@ class IntlDateFormatter {
/**
* (PHP 5 &gt;= 5.5.0, PECL intl &gt;= 3.0.0)<br/>
* Formats an object
- * @link https://secure.php.net/manual/en/intldateformatter.formatobject.php
+ * @link https://www.php.net/manual/en/intldateformatter.formatobject.php
* @param object $object <p>
- * An object of type {@link "https://secure.php.net/manual/en/class.intlcalendar.php" IntlCalendar} or {@link "https://secure.php.net/manual/en/class.datetime.php" DateTime}. The timezone information in the object will be used.
+ * An object of type {@link "https://www.php.net/manual/en/class.intlcalendar.php" IntlCalendar} or {@link "https://www.php.net/manual/en/class.datetime.php" DateTime}. The timezone information in the object will be used.
* </p>
* @param mixed $format [optional] <p>
- * How to format the date/time. This can either be an {@link "https://secure.php.net/manual/en/language.types.array.php" array} with
+ * How to format the date/time. This can either be an {@link "https://www.php.net/manual/en/language.types.array.php" array} with
* two elements (first the date style, then the time style, these being one
* of the constants <b>IntlDateFormatter::NONE</b>,
* <b>IntlDateFormatter::SHORT</b>,
@@ -1917,12 +1917,12 @@ class IntlDateFormatter {
* <b>IntlDateFormatter::LONG</b>,
* <b>IntlDateFormatter::FULL</b>), a long with
* the value of one of these constants (in which case it will be used both
- * for the time and the date) or a {@link "https://secure.php.net/manual/en/language.types.string.php" string} with the format
+ * for the time and the date) or a {@link "https://www.php.net/manual/en/language.types.string.php" string} with the format
* described in {@link "http://www.icu-project.org/apiref/icu4c/classSimpleDateFormat.html#details" the ICU documentation}.
* If <br>NULL</br>, the default style will be used.
* </p>
* @param string $locale [optional] <p>
- * The locale to use, or <b>NULL</b> to use the {@link "https://secure.php.net/manual/en/intl.configuration.php#ini.intl.default-locale"default one}.</p>
+ * The locale to use, or <b>NULL</b> to use the {@link "https://www.php.net/manual/en/intl.configuration.php#ini.intl.default-locale"default one}.</p>
* @return string|false A string with result or <b>FALSE</b> on failure.
*/
public static function formatObject($object, $format = null, $locale = null) { }
@@ -2318,9 +2318,9 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Add a (signed) amount of time to a field
- * @link https://secure.php.net/manual/en/intlcalendar.add.php
+ * @link https://www.php.net/manual/en/intlcalendar.add.php
* @param int $field <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}.
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}.
* These are integer values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
@@ -2333,26 +2333,26 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Whether this object's time is after that of the passed object
- * https://secure.php.net/manual/en/intlcalendar.after.php
+ * https://www.php.net/manual/en/intlcalendar.after.php
* @param IntlCalendar $calendar <p>The calendar whose time will be checked against this object's time.</p>
* @return bool
* Returns <b>TRUE</b> if this object's current time is after that of the
* <em>calendar</em> argument's time. Returns <b>FALSE</b> otherwise.
- * Also returns <b>FALSE</b> on failure. You can use {@link https://secure.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or
- * {@link https://secure.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to detect error conditions.
+ * Also returns <b>FALSE</b> on failure. You can use {@link https://www.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or
+ * {@link https://www.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to detect error conditions.
*/
public function after(IntlCalendar $calendar) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Whether this object's time is before that of the passed object
- * @link https://secure.php.net/manual/en/intlcalendar.before.php
+ * @link https://www.php.net/manual/en/intlcalendar.before.php
* @param IntlCalendar $calendar <p> The calendar whose time will be checked against this object's time.</p>
* @return bool
* Returns <b>TRUE</B> if this object's current time is before that of the
* <em>calendar</em> argument's time. Returns <b>FALSE</b> otherwise.
- * Also returns <b>FALSE</b> on failure. You can use {@link https://secure.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or
- * {@link https://secure.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to detect error conditions.
+ * Also returns <b>FALSE</b> on failure. You can use {@link https://www.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or
+ * {@link https://www.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to detect error conditions.
* </p>
*/
public function before(IntlCalendar $calendar) { }
@@ -2360,9 +2360,9 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Clear a field or all fields
- * @link https://secure.php.net/manual/en/intlcalendar.clear.php
+ * @link https://www.php.net/manual/en/intlcalendar.clear.php
* @param int $field [optional] <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
* values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
@@ -2373,7 +2373,7 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Private constructor for disallowing instantiation
- * @link https://secure.php.net/manual/en/intlcalendar.construct.php
+ * @link https://www.php.net/manual/en/intlcalendar.construct.php
*
*/
private function __construct() { }
@@ -2382,7 +2382,7 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Create a new IntlCalendar
- * @link https://secure.php.net/manual/en/intlcalendar.createinstance.php
+ * @link https://www.php.net/manual/en/intlcalendar.createinstance.php
* @param mixed $timeZone [optional] <p> <p>
* The timezone to use.
* </p>
@@ -2391,26 +2391,26 @@ class IntlCalendar {
* <li>
* <p>
* <b>NULL</b>, in which case the default timezone will be used, as specified in
- * the ini setting {@link https://secure.php.net/manual/en/datetime.configuration.php#ini.date.timezone date.timezone} or
- * through the function {@link https://secure.php.net/manual/en/function.date-default-timezone-set.php date_default_timezone_set()} and as
- * returned by {@link https://secure.php.net/manual/en/function.date-default-timezone-get.php date_default_timezone_get()}.
+ * the ini setting {@link https://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone date.timezone} or
+ * through the function {@link https://www.php.net/manual/en/function.date-default-timezone-set.php date_default_timezone_set()} and as
+ * returned by {@link https://www.php.net/manual/en/function.date-default-timezone-get.php date_default_timezone_get()}.
* </p>
* </li>
* <li>
* <p>
- * An {@link https://secure.php.net/manual/en/class.intltimezone.php IntlTimeZone}, which will be used directly.
+ * An {@link https://www.php.net/manual/en/class.intltimezone.php IntlTimeZone}, which will be used directly.
* </p>
* </li>
* <li>
* <p>
- * A {@link https://secure.php.net/manual/en/class.datetimezone.php DateTimeZone}. Its identifier will be extracted
+ * A {@link https://www.php.net/manual/en/class.datetimezone.php DateTimeZone}. Its identifier will be extracted
* and an ICU timezone object will be created; the timezone will be backed
* by ICU's database, not PHP's.
* </p>
* </li>
* <li>
* <p>
- * A {@link https://secure.php.net/manual/en/language.types.string.php string}, which should be a valid ICU timezone identifier.
+ * A {@link https://www.php.net/manual/en/language.types.string.php string}, which should be a valid ICU timezone identifier.
* See <b>IntlTimeZone::createTimeZoneIDEnumeration()</b>. Raw
* offsets such as <em>"GMT+08:30"</em> are also accepted.
* </p>
@@ -2418,10 +2418,10 @@ class IntlCalendar {
* </ul>
* </p>
* @param string $locale [optional] <p>
- * A locale to use or <b>NULL</b> to use {@link https://secure.php.net/manual/en/intl.configuration.php#ini.intl.default-locale the default locale}.
+ * A locale to use or <b>NULL</b> to use {@link https://www.php.net/manual/en/intl.configuration.php#ini.intl.default-locale the default locale}.
* </p>
* @return IntlCalendar
- * The created {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} instance or <b>NULL</b> on
+ * The created {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} instance or <b>NULL</b> on
* failure.
*/
public static function createInstance($timeZone = null, $locale = null) { }
@@ -2429,14 +2429,14 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Compare time of two IntlCalendar objects for equality
- * @link https://secure.php.net/manual/en/intlcalendar.equals.php
+ * @link https://www.php.net/manual/en/intlcalendar.equals.php
* @param IntlCalendar $calendar
* @return bool <p>
* Returns <b>TRUE</b> if the current time of both this and the passed in
- * {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} object are the same, or <b>FALSE</b>
+ * {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} object are the same, or <b>FALSE</b>
* otherwise. The value <b>FALSE</b> can also be returned on failure. This can only
* happen if bad arguments are passed in. In any case, the two cases can be
- * distinguished by calling {@link https://secure.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()}.
+ * distinguished by calling {@link https://www.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()}.
* </p>
*/
public function equals($calendar) { }
@@ -2444,7 +2444,7 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Calculate difference between given time and this object's time
- * @link https://secure.php.net/manual/en/intlcalendar.fielddifference.php
+ * @link https://www.php.net/manual/en/intlcalendar.fielddifference.php
* @param float $when <p>
* The time against which to compare the quantity represented by the
* <em>field</em>. For the result to be positive, the time
@@ -2456,7 +2456,7 @@ class IntlCalendar {
* </p>
*
* <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
* values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
@@ -2469,24 +2469,24 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a2)<br/>
* Create an IntlCalendar from a DateTime object or string
- * @link https://secure.php.net/manual/en/intlcalendar.fromdatetime.php
+ * @link https://www.php.net/manual/en/intlcalendar.fromdatetime.php
* @param mixed $dateTime <p>
- * A {@link https://secure.php.net/manual/en/class.datetime.php DateTime} object or a {@link https://secure.php.net/manual/en/language.types.string.php string} that
- * can be passed to {@link https://secure.php.net/manual/en/datetime.construct.php DateTime::__construct()}.
+ * A {@link https://www.php.net/manual/en/class.datetime.php DateTime} object or a {@link https://www.php.net/manual/en/language.types.string.php string} that
+ * can be passed to {@link https://www.php.net/manual/en/datetime.construct.php DateTime::__construct()}.
* </p>
* @return IntlCalendar
- * The created {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} object or <b>NULL</b> in case of
- * failure. If a {@link https://secure.php.net/manual/en/language.types.string.php string} is passed, any exception that occurs
- * inside the {@link https://secure.php.net/manual/en/class.datetime.php DateTime} constructor is propagated.
+ * The created {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} object or <b>NULL</b> in case of
+ * failure. If a {@link https://www.php.net/manual/en/language.types.string.php string} is passed, any exception that occurs
+ * inside the {@link https://www.php.net/manual/en/class.datetime.php DateTime} constructor is propagated.
*/
public static function fromDateTime($dateTime) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the value for a field
- * @link https://secure.php.net/manual/en/intlcalendar.get.php
+ * @link https://www.php.net/manual/en/intlcalendar.get.php
* @param int $field <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
* values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
@@ -2497,14 +2497,14 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* The maximum value for a field, considering the object's current time
- * @link https://secure.php.net/manual/en/intlcalendar.getactualmaximum.php
+ * @link https://www.php.net/manual/en/intlcalendar.getactualmaximum.php
* @param int $field <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
* values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
* @return int
- * An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing the maximum value in the units associated
+ * An {@link https://www.php.net/manual/en/language.types.integer.php int} representing the maximum value in the units associated
* with the given <em>field</em> or <b>FALSE</b> on failure.
*/
public function getActualMaximum($field) { }
@@ -2512,14 +2512,14 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* The minimum value for a field, considering the object's current time
- * @link https://secure.php.net/manual/en/intlcalendar.getactualminimum.php
+ * @link https://www.php.net/manual/en/intlcalendar.getactualminimum.php
* @param int $field <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}.
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}.
* These are integer values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
* @return int
- * An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing the minimum value in the field's
+ * An {@link https://www.php.net/manual/en/language.types.integer.php int} representing the minimum value in the field's
* unit or <b>FALSE</b> on failure.
*/
public function getActualMinimum($field) { }
@@ -2527,7 +2527,7 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get array of locales for which there is data
- * @link https://secure.php.net/manual/en/intlcalendar.getavailablelocales.php
+ * @link https://www.php.net/manual/en/intlcalendar.getavailablelocales.php
* @return array An array of strings, one for which locale.
*/
@@ -2554,7 +2554,7 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get last error code on the object
- * @link https://secure.php.net/manual/en/intlcalendar.geterrorcode.php
+ * @link https://www.php.net/manual/en/intlcalendar.geterrorcode.php
* @return int An ICU error code indicating either success, failure or a warning.
*
*/
@@ -2563,7 +2563,7 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get last error message on the object
- * @link https://secure.php.net/manual/en/intlcalendar.geterrormessage.php
+ * @link https://www.php.net/manual/en/intlcalendar.geterrormessage.php
* @return string The error message associated with last error that occurred in a function call on this object, or a string indicating the non-existance of an error.
*/
public function getErrorMessage() { }
@@ -2571,7 +2571,7 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the first day of the week for the calendar's locale
- * @link https://secure.php.net/manual/en/intlcalendar.getfirstdayofweek.php
+ * @link https://www.php.net/manual/en/intlcalendar.getfirstdayofweek.php
* @return int
* One of the constants <b>IntlCalendar::DOW_SUNDAY</b>,
* <b>IntlCalendar::DOW_MONDAY</b>, ...,
@@ -2583,13 +2583,13 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the largest local minimum value for a field
- * @link https://secure.php.net/manual/en/intlcalendar.getgreatestminimum.php
+ * @link https://www.php.net/manual/en/intlcalendar.getgreatestminimum.php
* @param int $field <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
* values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* @return int
- * An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing a field value, in the field's
+ * An {@link https://www.php.net/manual/en/language.types.integer.php int} representing a field value, in the field's
* unit, or <b>FALSE</b> on failure.
*/
public function getGreatestMinimum($field) { }
@@ -2615,14 +2615,14 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the smallest local maximum for a field
- * @link https://secure.php.net/manual/en/intlcalendar.getleastmaximum.php
+ * @link https://www.php.net/manual/en/intlcalendar.getleastmaximum.php
* @param int $field <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
* values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
* @return int
- * An {@link https://secure.php.net/manual/en/language.types.integer.ph int} representing a field value in the field's
+ * An {@link https://www.php.net/manual/en/language.types.integer.ph int} representing a field value in the field's
* unit or <b>FALSE</b> on failure.
* </p>
*/
@@ -2631,7 +2631,7 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the locale associated with the object
- * @link https://secure.php.net/manual/en/intlcalendar.getlocale.php
+ * @link https://www.php.net/manual/en/intlcalendar.getlocale.php
* @param int $localeType <p>
* Whether to fetch the actual locale (the locale from which the calendar
* data originates, with <b>Locale::ACTUAL_LOCALE</b>) or the
@@ -2649,9 +2649,9 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the global maximum value for a field
- * @link https://secure.php.net/manual/en/intlcalendar.getmaximum.php
+ * @link https://www.php.net/manual/en/intlcalendar.getmaximum.php
* @param int $field <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
* values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
@@ -2663,18 +2663,18 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get minimal number of days the first week in a year or month can have
- * @link https://secure.php.net/manual/en/intlcalendar.getminimaldaysinfirstweek.php
+ * @link https://www.php.net/manual/en/intlcalendar.getminimaldaysinfirstweek.php
* @return int
- * An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing a number of days or <b>FALSE</b> on failure.
+ * An {@link https://www.php.net/manual/en/language.types.integer.php int} representing a number of days or <b>FALSE</b> on failure.
*/
public function getMinimalDaysInFirstWeek() { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the global minimum value for a field
- * @link https://secure.php.net/manual/en/intlcalendar.getminimum.php
+ * @link https://www.php.net/manual/en/intlcalendar.getminimum.php
* @param int $field <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field}. These are integer
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field}. These are integer
* values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
@@ -2693,7 +2693,7 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get behavior for handling repeating wall time
- * @link https://secure.php.net/manual/en/intlcalendar.getrepeatedwalltimeoption.php
+ * @link https://www.php.net/manual/en/intlcalendar.getrepeatedwalltimeoption.php
* @return int
* One of the constants <b>IntlCalendar::WALLTIME_FIRST</b> or
* <b>IntlCalendar::WALLTIME_LAST</b>.
@@ -2704,7 +2704,7 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get behavior for handling skipped wall time
- * @link https://secure.php.net/manual/en/intlcalendar.getskippedwalltimeoption.php
+ * @link https://www.php.net/manual/en/intlcalendar.getskippedwalltimeoption.php
* @return int
* One of the constants <b>IntlCalendar::WALLTIME_FIRST</b>,
* <b>IntlCalendar::WALLTIME_LAST</b> or
@@ -2716,7 +2716,7 @@ class IntlCalendar {
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get time currently represented by the object
* @return float
- * A {@link https://secure.php.net/manual/en/language.types.float.php float} representing the number of milliseconds elapsed since the
+ * A {@link https://www.php.net/manual/en/language.types.float.php float} representing the number of milliseconds elapsed since the
* reference time (1 Jan 1970 00:00:00 UTC).
*/
public function getTime() { }
@@ -2724,9 +2724,9 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the object's timezone
- * @link https://secure.php.net/manual/en/intlcalendar.gettimezone.php
+ * @link https://www.php.net/manual/en/intlcalendar.gettimezone.php
* @return IntlTimeZone
- * An {@link https://secure.php.net/manual/en/class.intltimezone.php IntlTimeZone} object corresponding to the one used
+ * An {@link https://www.php.net/manual/en/class.intltimezone.php IntlTimeZone} object corresponding to the one used
* internally in this object.
*/
public function getTimeZone() { }
@@ -2734,9 +2734,9 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the calendar type
- * @link https://secure.php.net/manual/en/intlcalendar.gettype.php
+ * @link https://www.php.net/manual/en/intlcalendar.gettype.php
* @return string
- * A {@link https://secure.php.net/manual/en/language.types.string.php string} representing the calendar type, such as
+ * A {@link https://www.php.net/manual/en/language.types.string.php string} representing the calendar type, such as
* <em>'gregorian'</em>, <em>'islamic'</em>, etc.
*/
public function getType() { }
@@ -2744,7 +2744,7 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get time of the day at which weekend begins or ends
- * @link https://secure.php.net/manual/en/intlcalendar.getweekendtransition.php
+ * @link https://www.php.net/manual/en/intlcalendar.getweekendtransition.php
* @param string $dayOfWeek <p>
* One of the constants <b>IntlCalendar::DOW_SUNDAY</b>,
* <b>IntlCalendar::DOW_MONDAY</b>, ...,
@@ -2759,19 +2759,19 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Whether the object's time is in Daylight Savings Time
- * @link https://secure.php.net/manual/en/intlcalendar.indaylighttime.php
+ * @link https://www.php.net/manual/en/intlcalendar.indaylighttime.php
* @return bool
* Returns <b>TRUE</b> if the date is in Daylight Savings Time, <b>FALSE</b> otherwise.
* The value <b>FALSE</b> may also be returned on failure, for instance after
- * specifying invalid field values on non-lenient mode; use {@link https://secure.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or query
- * {@link https://secure.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to disambiguate.
+ * specifying invalid field values on non-lenient mode; use {@link https://www.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or query
+ * {@link https://www.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to disambiguate.
*/
public function inDaylightTime() { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Whether another calendar is equal but for a different time
- * @link https://secure.php.net/manual/en/intlcalendar.isequivalentto.php
+ * @link https://www.php.net/manual/en/intlcalendar.isequivalentto.php
* @param IntlCalendar $calendar The other calendar against which the comparison is to be made.
* @return bool
* Assuming there are no argument errors, returns <b>TRUE</b> iif the calendars are equivalent except possibly for their set time.
@@ -2781,39 +2781,39 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Whether date/time interpretation is in lenient mode
- * @link https://secure.php.net/manual/en/intlcalendar.islenient.php
+ * @link https://www.php.net/manual/en/intlcalendar.islenient.php
* @return bool
- * A {@link https://secure.php.net/manual/en/language.types.boolean.php bool} representing whether the calendar is set to lenient mode.
+ * A {@link https://www.php.net/manual/en/language.types.boolean.php bool} representing whether the calendar is set to lenient mode.
*/
public function isLenient() { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Whether a certain date/time is in the weekend
- * @link https://secure.php.net/manual/en/intlcalendar.isweekend.php
+ * @link https://www.php.net/manual/en/intlcalendar.isweekend.php
* @param float|null $date [optional] <p>
* An optional timestamp representing the number of milliseconds since the
* epoch, excluding leap seconds. If <b>NULL</b>, this object's current time is
* used instead.
* </p>
* @return bool
- * <p> A {@link https://secure.php.net/manual/en/language.types.boolean.php bool} indicating whether the given or this object's time occurs
+ * <p> A {@link https://www.php.net/manual/en/language.types.boolean.php bool} indicating whether the given or this object's time occurs
* in a weekend.
* </p>
* <p>
* The value <b>FALSE</b> may also be returned on failure, for instance after giving
- * a date out of bounds on non-lenient mode; use {@link https://secure.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or query
- * {@link https://secure.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to disambiguate.</p>
+ * a date out of bounds on non-lenient mode; use {@link https://www.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or query
+ * {@link https://www.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to disambiguate.</p>
*/
public function isWeekend($date = null) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Add value to field without carrying into more significant fields
- * @link https://secure.php.net/manual/en/intlcalendar.roll.php
+ * @link https://www.php.net/manual/en/intlcalendar.roll.php
* @param int $field
- * <p>One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time
- * {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
+ * <p>One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time
+ * {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
* values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
@@ -2830,10 +2830,10 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Whether a field is set
- * @link https://secure.php.net/manual/en/intlcalendar.isset.php
+ * @link https://www.php.net/manual/en/intlcalendar.isset.php
* @param int $field <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time
- * {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}.
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time
+ * {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}.
* These are integer values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
@@ -2844,9 +2844,9 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Set a time field or several common fields at once
- * @link https://secure.php.net/manual/en/intlcalendar.set.php
+ * @link https://www.php.net/manual/en/intlcalendar.set.php
* @param int $year <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
* values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
@@ -2877,7 +2877,7 @@ class IntlCalendar {
/**
* (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
* Set a time field or several common fields at once
- * @link https://secure.php.net/manual/en/intlcalendar.set.php
+ * @link https://www.php.net/manual/en/intlcalendar.set.php
* @param int $field One of the IntlCalendar date/time field constants. These are integer values between 0 and IntlCalendar::FIELD_COUNT.
* @param int $value The new value of the given field.
* @return bool Returns <b>TRUE</b> on success and <b>FALSE</b> on failure.
@@ -2888,7 +2888,7 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Set the day on which the week is deemed to start
- * @link https://secure.php.net/manual/en/intlcalendar.setfirstdayofweek.php
+ * @link https://www.php.net/manual/en/intlcalendar.setfirstdayofweek.php
* @param int $dayOfWeek <p>
* One of the constants <b>IntlCalendar::DOW_SUNDAY</b>,
* <b>IntlCalendar::DOW_MONDAY</b>, ...,
@@ -2901,7 +2901,7 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Set whether date/time interpretation is to be lenient
- * @link https://secure.php.net/manual/en/intlcalendar.setlenient.php
+ * @link https://www.php.net/manual/en/intlcalendar.setlenient.php
* @param string $isLenient <p>
* Use <b>TRUE</b> to activate the lenient mode; <b>FALSE</b> otherwise.
* </p>
@@ -2912,7 +2912,7 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Set behavior for handling repeating wall times at negative timezone offset transitions
- * @link https://secure.php.net/manual/en/intlcalendar.setrepeatedwalltimeoption.php
+ * @link https://www.php.net/manual/en/intlcalendar.setrepeatedwalltimeoption.php
* @param int $wallTimeOption <p>
* One of the constants <b>IntlCalendar::WALLTIME_FIRST</b> or
* <b>IntlCalendar::WALLTIME_LAST</b>.
@@ -2926,7 +2926,7 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Set behavior for handling skipped wall times at positive timezone offset transitions
- * @link https://secure.php.net/manual/en/intlcalendar.setskippedwalltimeoption.php
+ * @link https://www.php.net/manual/en/intlcalendar.setskippedwalltimeoption.php
* @param int $wallTimeOption <p>
* One of the constants <b>IntlCalendar::WALLTIME_FIRST</b>,
* <b>IntlCalendar::WALLTIME_LAST</b> or
@@ -2942,7 +2942,7 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Set the calendar time in milliseconds since the epoch
- * @link https://secure.php.net/manual/en/intlcalendar.settime.php
+ * @link https://www.php.net/manual/en/intlcalendar.settime.php
* @param float $date <p>
* An instant represented by the number of number of milliseconds between
* such instant and the epoch, ignoring leap seconds.
@@ -2955,7 +2955,7 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Set the timezone used by this calendar
- * @link https://secure.php.net/manual/en/intlcalendar.settimezone.php
+ * @link https://www.php.net/manual/en/intlcalendar.settimezone.php
* @param mixed $timeZone <p>
* The new timezone to be used by this calendar. It can be specified in the
* following ways:
@@ -2964,26 +2964,26 @@ class IntlCalendar {
* <li>
* <p>
* <b>NULL</b>, in which case the default timezone will be used, as specified in
- * the ini setting {@link https://secure.php.net/manual/en/datetime.configuration.php#ini.date.timezone date.timezone} or
- * through the function {@link https://secure.php.net/manual/en/function.date-default-timezone-set.php date_default_timezone_set()} and as
- * returned by {@link https://secure.php.net/manual/en/function.date-default-timezone-get.php date_default_timezone_get()}.
+ * the ini setting {@link https://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone date.timezone} or
+ * through the function {@link https://www.php.net/manual/en/function.date-default-timezone-set.php date_default_timezone_set()} and as
+ * returned by {@link https://www.php.net/manual/en/function.date-default-timezone-get.php date_default_timezone_get()}.
* </p>
* </li>
* <li>
* <p>
- * An {@link https://secure.php.net/manual/en/class.intltimezone.php IntlTimeZone}, which will be used directly.
+ * An {@link https://www.php.net/manual/en/class.intltimezone.php IntlTimeZone}, which will be used directly.
* </p>
* </li>
* <li>
* <p>
- * A {@link https://secure.php.net/manual/en/class.datetimezone.php DateTimeZone}. Its identifier will be extracted
+ * A {@link https://www.php.net/manual/en/class.datetimezone.php DateTimeZone}. Its identifier will be extracted
* and an ICU timezone object will be created; the timezone will be backed
* by ICU's database, not PHP's.
* </p>
* </li>
* <li>
* <p>
- * A {@link https://secure.php.net/manual/en/language.types.string.php string}, which should be a valid ICU timezone identifier.
+ * A {@link https://www.php.net/manual/en/language.types.string.php string}, which should be a valid ICU timezone identifier.
* See b>IntlTimeZone::createTimeZoneIDEnumeration()</b>. Raw
* offsets such as <em>"GMT+08:30"</em> are also accepted.
* </p>
@@ -2996,9 +2996,9 @@ class IntlCalendar {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a2)<br/>
* Convert an IntlCalendar into a DateTime object
- * @link https://secure.php.net/manual/en/intlcalendar.todatetime.php
+ * @link https://www.php.net/manual/en/intlcalendar.todatetime.php
* @return DateTime|false
- * A {@link https://secure.php.net/manual/en/class.datetime.php DateTime} object with the same timezone as this
+ * A {@link https://www.php.net/manual/en/class.datetime.php DateTime} object with the same timezone as this
* object (though using PHP's database instead of ICU's) and the same time,
* except for the smaller precision (second precision instead of millisecond).
* Returns <b>FALSE</b> on failure.
@@ -3042,7 +3042,7 @@ class IntlTimeZone {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the number of IDs in the equivalency group that includes the given ID
- * @link https://secure.php.net/manual/en/intltimezone.countequivalentids.php
+ * @link https://www.php.net/manual/en/intltimezone.countequivalentids.php
* @param string $zoneId
* @return int|false number of IDs or <b>FALSE</b> on failure
*/
@@ -3051,7 +3051,7 @@ class IntlTimeZone {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Create a new copy of the default timezone for this host
- * @link https://secure.php.net/manual/en/intltimezone.createdefault.php
+ * @link https://www.php.net/manual/en/intltimezone.createdefault.php
* @return IntlTimeZone
*/
public static function createDefault() { }
@@ -3059,7 +3059,7 @@ class IntlTimeZone {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get an enumeration over time zone IDs associated with the given country or offset
- * @link https://secure.php.net/manual/en/intltimezone.createenumeration.php
+ * @link https://www.php.net/manual/en/intltimezone.createenumeration.php
* @param mixed $countryOrRawOffset [optional]
* @return IntlIterator|false an iterator or <b>FALSE</b> on failure
*/
@@ -3068,7 +3068,7 @@ class IntlTimeZone {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Create a timezone object for the given ID
- * @link https://secure.php.net/manual/en/intltimezone.createtimezone.php
+ * @link https://www.php.net/manual/en/intltimezone.createtimezone.php
* @param string $zoneId
* @return IntlTimeZone|null a timezone object or <b>NULL</b> on failure
*/
@@ -3077,7 +3077,7 @@ class IntlTimeZone {
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Get an enumeration over system time zone IDs with the given filter conditions
- * @link https://secure.php.net/manual/en/intltimezone.createtimezoneidenumeration.php
+ * @link https://www.php.net/manual/en/intltimezone.createtimezoneidenumeration.php
* @param int $zoneType
* @param string|null $region [optional]
* @param int $rawOffset [optional]
@@ -3088,7 +3088,7 @@ class IntlTimeZone {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Create a timezone object from DateTimeZone
- * @link https://secure.php.net/manual/en/intltimezone.fromdatetimezone.php
+ * @link https://www.php.net/manual/en/intltimezone.fromdatetimezone.php
* @param DateTimeZone $zoneId
* @return IntlTimeZone|null a timezone object or <b>NULL</b> on failure
*/
@@ -3097,7 +3097,7 @@ class IntlTimeZone {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the canonical system timezone ID or the normalized custom time zone ID for the given time zone ID
- * @link https://secure.php.net/manual/en/intltimezone.getcanonicalid.php
+ * @link https://www.php.net/manual/en/intltimezone.getcanonicalid.php
* @param string $zoneId
* @param bool $isSystemID [optional]
* @return string|false the timezone ID or <b>FALSE</b> on failure
@@ -3117,7 +3117,7 @@ class IntlTimeZone {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the amount of time to be added to local standard time to get local wall clock time
- * @link https://secure.php.net/manual/en/intltimezone.getequivalentid.php
+ * @link https://www.php.net/manual/en/intltimezone.getequivalentid.php
* @return int
*/
public function getDSTSavings() { }
@@ -3125,7 +3125,7 @@ class IntlTimeZone {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get an ID in the equivalency group that includes the given ID
- * @link https://secure.php.net/manual/en/intltimezone.getequivalentid.php
+ * @link https://www.php.net/manual/en/intltimezone.getequivalentid.php
* @param string $zoneId
* @param int $index
* @return string|false the time zone ID or <b>FALSE</b> on failure
@@ -3135,7 +3135,7 @@ class IntlTimeZone {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get last error code on the object
- * @link https://secure.php.net/manual/en/intltimezone.geterrorcode.php
+ * @link https://www.php.net/manual/en/intltimezone.geterrorcode.php
* @return int
*/
public function getErrorCode() { }
@@ -3143,7 +3143,7 @@ class IntlTimeZone {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get last error message on the object
- * @link https://secure.php.net/manual/en/intltimezone.geterrormessage.php
+ * @link https://www.php.net/manual/en/intltimezone.geterrormessage.php
* @return string
*/
public function getErrorMessage() { }
@@ -3151,7 +3151,7 @@ class IntlTimeZone {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Create GMT (UTC) timezone
- * @link https://secure.php.net/manual/en/intltimezone.getgmt.php
+ * @link https://www.php.net/manual/en/intltimezone.getgmt.php
* @return IntlTimeZone
*/
public static function getGMT() { }
@@ -3166,7 +3166,7 @@ class IntlTimeZone {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the time zone raw and GMT offset for the given moment in time
- * @link https://secure.php.net/manual/en/intltimezone.getoffset.php
+ * @link https://www.php.net/manual/en/intltimezone.getoffset.php
* @param float $date
* moment in time for which to return offsets, in units of milliseconds from
* January 1, 1970 0:00 GMT, either GMT time or local wall time, depending on
@@ -3188,7 +3188,7 @@ class IntlTimeZone {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the raw GMT offset (before taking daylight savings time into account
- * @link https://secure.php.net/manual/en/intltimezone.getrawoffset.php
+ * @link https://www.php.net/manual/en/intltimezone.getrawoffset.php
* @return int
*/
public function getRawOffset() { }
@@ -3196,7 +3196,7 @@ class IntlTimeZone {
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Get the region code associated with the given system time zone ID
- * @link https://secure.php.net/manual/en/intltimezone.getregion.php
+ * @link https://www.php.net/manual/en/intltimezone.getregion.php
* @param string $zoneId
* @return string|false region or <b>FALSE</b> on failure
*/
@@ -3205,7 +3205,7 @@ class IntlTimeZone {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the timezone data version currently used by ICU
- * @link https://secure.php.net/manual/en/intltimezone.gettzdataversion.php
+ * @link https://www.php.net/manual/en/intltimezone.gettzdataversion.php
* @return string
*/
public static function getTZDataVersion() { }
@@ -3213,7 +3213,7 @@ class IntlTimeZone {
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Get the "unknown" time zone
- * @link https://secure.php.net/manual/en/intltimezone.getunknown.php
+ * @link https://www.php.net/manual/en/intltimezone.getunknown.php
* @return IntlTimeZone
*/
public static function getUnknown() { }
@@ -3222,7 +3222,7 @@ class IntlTimeZone {
* (PHP 7 &gt;=7.1.0)<br/>
* Translates a system timezone (e.g. "America/Los_Angeles") into a Windows
* timezone (e.g. "Pacific Standard Time").
- * @link https://secure.php.net/manual/en/intltimezone.getwindowsid.php
+ * @link https://www.php.net/manual/en/intltimezone.getwindowsid.php
* @param string $timezone
* @return string|false the Windows timezone or <b>FALSE</b> on failure
* @since 7.1
@@ -3232,7 +3232,7 @@ class IntlTimeZone {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Check if this zone has the same rules and offset as another zone
- * @link https://secure.php.net/manual/en/intltimezone.hassamerules.php
+ * @link https://www.php.net/manual/en/intltimezone.hassamerules.php
* @param IntlTimeZone $otherTimeZone
* @return bool
*/
@@ -3241,7 +3241,7 @@ class IntlTimeZone {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Convert to DateTimeZone object
- * @link https://secure.php.net/manual/ru/intltimezone.todatetimezone.php
+ * @link https://www.php.net/manual/ru/intltimezone.todatetimezone.php
* @return DateTimeZone|false the DateTimeZone object or <b>FALSE</b> on failure
*/
public function toDateTimeZone() { }
@@ -3249,7 +3249,7 @@ class IntlTimeZone {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Check if this time zone uses daylight savings time
- * @link https://secure.php.net/manual/ru/intltimezone.usedaylighttime.php
+ * @link https://www.php.net/manual/ru/intltimezone.usedaylighttime.php
* @return bool
*/
public function useDaylightTime() { }
@@ -4178,7 +4178,7 @@ function datefmt_get_timezone_id(MessageFormatter $mf) { }
/**
* (PHP 5 &gt;= 5.3.0, PECL intl &gt;= 3.0.0)<br/>
* Get copy of formatter's calendar object
- * @link https://secure.php.net/manual/en/intldateformatter.getcalendarobject.php
+ * @link https://www.php.net/manual/en/intldateformatter.getcalendarobject.php
* @return IntlCalendar A copy of the internal calendar object used by this formatter.
*/
function datefmt_get_calendar_object() { }
@@ -4186,7 +4186,7 @@ function datefmt_get_calendar_object() { }
/**
* (PHP 5 &gt;= 5.5.0, PECL intl &gt;= 3.0.0)<br/>
* Get formatter's timezone
- * @link https://secure.php.net/manual/en/intldateformatter.gettimezone.php
+ * @link https://www.php.net/manual/en/intldateformatter.gettimezone.php
* @return IntlTimeZone|false The associated IntlTimeZone object or FALSE on failure.
*/
function datefmt_get_timezone() { }
@@ -4201,7 +4201,7 @@ function datefmt_get_timezone() { }
* If <b>NULL</b> or the empty string, the default time zone for the runtime is used.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
- * @deprecated 5.5 https://secure.php.net/manual/en/migration55.deprecated.php
+ * @deprecated 5.5 https://www.php.net/manual/en/migration55.deprecated.php
* @removed 7.0
*/
function datefmt_set_timezone_id(MessageFormatter $mf, $zone) { }
@@ -4218,26 +4218,26 @@ function datefmt_set_timezone_id(MessageFormatter $mf, $zone) { }
* <li>
* <p>
* <b>NULL</b>, in which case the default timezone will be used, as specified in
- * the ini setting {@link "https://secure.php.net/manual/en/datetime.configuration.php#ini.date.timezone" date.timezone} or
- * through the function {@link "https://secure.php.net/manual/en/function.date-default-timezone-set.php" date_default_timezone_set()} and as
- * returned by {@link "https://secure.php.net/manual/en/function.date-default-timezone-get.php" date_default_timezone_get()}.
+ * the ini setting {@link "https://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone" date.timezone} or
+ * through the function {@link "https://www.php.net/manual/en/function.date-default-timezone-set.php" date_default_timezone_set()} and as
+ * returned by {@link "https://www.php.net/manual/en/function.date-default-timezone-get.php" date_default_timezone_get()}.
* </p>
* </li>
* <li>
* <p>
- * An {@link "https://secure.php.net/manual/en/class.intltimezone.php" IntlTimeZone}, which will be used directly.
+ * An {@link "https://www.php.net/manual/en/class.intltimezone.php" IntlTimeZone}, which will be used directly.
* </p>
* </li>
* <li>
* <p>
- * A {@link "https://secure.php.net/manual/en/class.datetimezone.php" DateTimeZone}. Its identifier will be extracted
+ * A {@link "https://www.php.net/manual/en/class.datetimezone.php" DateTimeZone}. Its identifier will be extracted
* and an ICU timezone object will be created; the timezone will be backed
* by ICU's database, not PHP's.
* </p>
* </li>
* <li>
* <p>
- * A {@link "https://secure.php.net/manual/en/language.types.string.php" string}, which should be a valid ICU timezone identifier.
+ * A {@link "https://www.php.net/manual/en/language.types.string.php" string}, which should be a valid ICU timezone identifier.
* See <b>IntlTimeZone::createTimeZoneIDEnumeration()</b>. Raw offsets such as <em>"GMT+08:30"</em> are also accepted.
* </p>
* </li>
@@ -4309,12 +4309,12 @@ function datefmt_format(MessageFormatter $mf, $value) { }
/**
* (PHP 5 &gt;= 5.5.0, PECL intl &gt;= 3.0.0)<br/>
* Formats an object
- * @link https://secure.php.net/manual/en/intldateformatter.formatobject.php
+ * @link https://www.php.net/manual/en/intldateformatter.formatobject.php
* @param object $object <p>
* An object of type IntlCalendar or DateTime. The timezone information in the object will be used.
* </p>
* @param mixed $format [optional] <p>
- * How to format the date/time. This can either be an {https://secure.php.net/manual/en/language.types.array.php array} with
+ * How to format the date/time. This can either be an {https://www.php.net/manual/en/language.types.array.php array} with
* two elements (first the date style, then the time style, these being one
* of the constants <b>IntlDateFormatter::NONE</b>,
* <b>IntlDateFormatter::SHORT</b>,
@@ -4322,7 +4322,7 @@ function datefmt_format(MessageFormatter $mf, $value) { }
* <b>IntlDateFormatter::LONG</b>,
* <b>IntlDateFormatter::FULL</b>), a long with
* the value of one of these constants (in which case it will be used both
- * for the time and the date) or a {@link https://secure.php.net/manual/en/language.types.string.php} with the format
+ * for the time and the date) or a {@link https://www.php.net/manual/en/language.types.string.php} with the format
* described in {@link http://www.icu-project.org/apiref/icu4c/classSimpleDateFormat.html#details the ICU documentation}
* documentation. If <b>NULL</b>, the default style will be used.
* </p>
@@ -4639,7 +4639,7 @@ function idn_to_utf8($domain, $options = 0, $variant = INTL_IDNA_VARIANT_2003, a
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Create a new IntlCalendar
- * @link https://secure.php.net/manual/en/intlcalendar.createinstance.php
+ * @link https://www.php.net/manual/en/intlcalendar.createinstance.php
* @param mixed $timeZone [optional] <p> <p>
* The timezone to use.
* </p>
@@ -4648,26 +4648,26 @@ function idn_to_utf8($domain, $options = 0, $variant = INTL_IDNA_VARIANT_2003, a
* <li>
* <p>
* <b>NULL</b>, in which case the default timezone will be used, as specified in
- * the ini setting {@link https://secure.php.net/manual/en/datetime.configuration.php#ini.date.timezone date.timezone} or
- * through the function {@link https://secure.php.net/manual/en/function.date-default-timezone-set.php date_default_timezone_set()} and as
- * returned by {@link https://secure.php.net/manual/en/function.date-default-timezone-get.php date_default_timezone_get()}.
+ * the ini setting {@link https://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone date.timezone} or
+ * through the function {@link https://www.php.net/manual/en/function.date-default-timezone-set.php date_default_timezone_set()} and as
+ * returned by {@link https://www.php.net/manual/en/function.date-default-timezone-get.php date_default_timezone_get()}.
* </p>
* </li>
* <li>
* <p>
- * An {@link https://secure.php.net/manual/en/class.intltimezone.php IntlTimeZone}, which will be used directly.
+ * An {@link https://www.php.net/manual/en/class.intltimezone.php IntlTimeZone}, which will be used directly.
* </p>
* </li>
* <li>
* <p>
- * A {@link https://secure.php.net/manual/en/class.datetimezone.php DateTimeZone}. Its identifier will be extracted
+ * A {@link https://www.php.net/manual/en/class.datetimezone.php DateTimeZone}. Its identifier will be extracted
* and an ICU timezone object will be created; the timezone will be backed
* by ICU's database, not PHP's.
* </p>
* </li>
* <li>
* <p>
- * A {@link https://secure.php.net/manual/en/language.types.string.php string}, which should be a valid ICU timezone identifier.
+ * A {@link https://www.php.net/manual/en/language.types.string.php string}, which should be a valid ICU timezone identifier.
* See <b>IntlTimeZone::createTimeZoneIDEnumeration()</b>. Raw
* offsets such as <em>"GMT+08:30"</em> are also accepted.
* </p>
@@ -4675,10 +4675,10 @@ function idn_to_utf8($domain, $options = 0, $variant = INTL_IDNA_VARIANT_2003, a
* </ul>
* </p>
* @param string $locale [optional] <p>
- * A locale to use or <b>NULL</b> to use {@link https://secure.php.net/manual/en/intl.configuration.php#ini.intl.default-locale the default locale}.
+ * A locale to use or <b>NULL</b> to use {@link https://www.php.net/manual/en/intl.configuration.php#ini.intl.default-locale the default locale}.
* </p>
* @return IntlCalendar
- * The created {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} instance or <b>NULL</b> on
+ * The created {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} instance or <b>NULL</b> on
* failure.
* @since 5.5
*/
@@ -4706,7 +4706,7 @@ function intlcal_get_keyword_values_for_locale($key, $locale, $commonlyUsed) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get number representing the current time
- * @link https://secure.php.net/manual/en/intlcalendar.getnow.php
+ * @link https://www.php.net/manual/en/intlcalendar.getnow.php
* @return float A float representing a number of milliseconds since the epoch, not counting leap seconds.
* @since 5.5
*/
@@ -4715,7 +4715,7 @@ function intlcal_get_now() { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get array of locales for which there is data
- * @link https://secure.php.net/manual/en/intlcalendar.getavailablelocales.php
+ * @link https://www.php.net/manual/en/intlcalendar.getavailablelocales.php
* @return array An array of strings, one for which locale.
* @since 5.5
*/
@@ -4725,12 +4725,12 @@ function intlcal_get_available_locales() { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the value for a field
- * @link https://secure.php.net/manual/en/intlcalendar.get.php
+ * @link https://www.php.net/manual/en/intlcalendar.get.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
* @param int $field <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
* values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
@@ -4744,7 +4744,7 @@ function intl_get($calendar, $field) { }
* Get time currently represented by the object
* @param IntlCalendar $calendar <p>The calendar whose time will be checked against this object's time.</p>
* @return float
- * A {@link https://secure.php.net/manual/en/language.types.float.php float} representing the number of milliseconds elapsed since the
+ * A {@link https://www.php.net/manual/en/language.types.float.php float} representing the number of milliseconds elapsed since the
* reference time (1 Jan 1970 00:00:00 UTC).
* @since 5.5
*/
@@ -4753,7 +4753,7 @@ function intlcal_get_time($calendar) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Set the calendar time in milliseconds since the epoch
- * @link https://secure.php.net/manual/en/intlcalendar.settime.php
+ * @link https://www.php.net/manual/en/intlcalendar.settime.php
* @param float $date <p>
* An instant represented by the number of number of milliseconds between
* such instant and the epoch, ignoring leap seconds.
@@ -4767,12 +4767,12 @@ function intlcal_set_time($date) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Add a (signed) amount of time to a field
- * @link https://secure.php.net/manual/en/intlcalendar.add.php
+ * @link https://www.php.net/manual/en/intlcalendar.add.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
* @param int $field <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}.
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}.
* These are integer values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
@@ -4786,7 +4786,7 @@ function intlcal_add($calendar, $field, $amount) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Set the timezone used by this calendar
- * @link https://secure.php.net/manual/en/intlcalendar.settimezone.php
+ * @link https://www.php.net/manual/en/intlcalendar.settimezone.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
@@ -4798,26 +4798,26 @@ function intlcal_add($calendar, $field, $amount) { }
* <li>
* <p>
* <b>NULL</b>, in which case the default timezone will be used, as specified in
- * the ini setting {@link https://secure.php.net/manual/en/datetime.configuration.php#ini.date.timezone date.timezone} or
- * through the function {@link https://secure.php.net/manual/en/function.date-default-timezone-set.php date_default_timezone_set()} and as
- * returned by {@link https://secure.php.net/manual/en/function.date-default-timezone-get.php date_default_timezone_get()}.
+ * the ini setting {@link https://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone date.timezone} or
+ * through the function {@link https://www.php.net/manual/en/function.date-default-timezone-set.php date_default_timezone_set()} and as
+ * returned by {@link https://www.php.net/manual/en/function.date-default-timezone-get.php date_default_timezone_get()}.
* </p>
* </li>
* <li>
* <p>
- * An {@link https://secure.php.net/manual/en/class.intltimezone.php IntlTimeZone}, which will be used directly.
+ * An {@link https://www.php.net/manual/en/class.intltimezone.php IntlTimeZone}, which will be used directly.
* </p>
* </li>
* <li>
* <p>
- * A {@link https://secure.php.net/manual/en/class.datetimezone.php DateTimeZone}. Its identifier will be extracted
+ * A {@link https://www.php.net/manual/en/class.datetimezone.php DateTimeZone}. Its identifier will be extracted
* and an ICU timezone object will be created; the timezone will be backed
* by ICU's database, not PHP's.
* </p>
* </li>
* <li>
* <p>
- * A {@link https://secure.php.net/manual/en/language.types.string.php string}, which should be a valid ICU timezone identifier.
+ * A {@link https://www.php.net/manual/en/language.types.string.php string}, which should be a valid ICU timezone identifier.
* See <b>IntlTimeZone::createTimeZoneIDEnumeration()</b>. Raw
* offsets such as <em>"GMT+08:30"</em> are also accepted.
* </p>
@@ -4831,7 +4831,7 @@ function intlcal_set_time_zone($calendar, $timeZone) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Whether this object's time is after that of the passed object
- * https://secure.php.net/manual/en/intlcalendar.after.php
+ * https://www.php.net/manual/en/intlcalendar.after.php
* @param IntlCalendar $calendarObject <p>
* The calendar object, on the procedural style interface.
* </p>
@@ -4839,8 +4839,8 @@ function intlcal_set_time_zone($calendar, $timeZone) { }
* @return bool
* Returns <b>TRUE</b> if this object's current time is after that of the
* <em>calendar</em> argument's time. Returns <b>FALSE</b> otherwise.
- * Also returns <b>FALSE</b> on failure. You can use {@link https://secure.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or
- * {@link https://secure.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to detect error conditions.
+ * Also returns <b>FALSE</b> on failure. You can use {@link https://www.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or
+ * {@link https://www.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to detect error conditions.
* @since 5.5
*/
function intlcal_after(IntlCalendar $calendarObject, IntlCalendar $calendar) { }
@@ -4848,7 +4848,7 @@ function intlcal_after(IntlCalendar $calendarObject, IntlCalendar $calendar) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Whether this object's time is before that of the passed object
- * @link https://secure.php.net/manual/en/intlcalendar.before.php
+ * @link https://www.php.net/manual/en/intlcalendar.before.php
* @param IntlCalendar $calendarObject <p>
* The calendar object, on the procedural style interface.
* </p>
@@ -4856,8 +4856,8 @@ function intlcal_after(IntlCalendar $calendarObject, IntlCalendar $calendar) { }
* @return bool
* Returns <b>TRUE</B> if this object's current time is before that of the
* <em>calendar</em> argument's time. Returns <b>FALSE</b> otherwise.
- * Also returns <b>FALSE</b> on failure. You can use {@link https://secure.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or
- * {@link https://secure.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to detect error conditions.
+ * Also returns <b>FALSE</b> on failure. You can use {@link https://www.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or
+ * {@link https://www.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to detect error conditions.
* </p>
* @since 5.5
*/
@@ -4867,12 +4867,12 @@ function intlcal_before(IntlCalendar $calendarObject, IntlCalendar $calendar) {
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Set a time field or several common fields at once
- * @link https://secure.php.net/manual/en/intlcalendar.set.php
+ * @link https://www.php.net/manual/en/intlcalendar.set.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
* @param int $year <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
* values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
@@ -4904,13 +4904,13 @@ function intlcal_set($calendar, $year, $month, $dayOfMonth = null, $hour = null,
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Add value to field without carrying into more significant fields
- * @link https://secure.php.net/manual/en/intlcalendar.roll.php
+ * @link https://www.php.net/manual/en/intlcalendar.roll.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
* @param int $field <p>One of the
- * {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time
- * {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}.
+ * {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time
+ * {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}.
* These are integer values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
@@ -4927,12 +4927,12 @@ function intlcal_roll($calendar, $field, $amountOrUpOrDown) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Clear a field or all fields
- * @link https://secure.php.net/manual/en/intlcalendar.clear.php
+ * @link https://www.php.net/manual/en/intlcalendar.clear.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
* @param int $field [optional] <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
* values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
@@ -4944,7 +4944,7 @@ function intlcal_clear($calendar, $field = null) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Calculate difference between given time and this object's time
- * @link https://secure.php.net/manual/en/intlcalendar.fielddifference.php
+ * @link https://www.php.net/manual/en/intlcalendar.fielddifference.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
@@ -4959,7 +4959,7 @@ function intlcal_clear($calendar, $field = null) { }
* </p>
*
* <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
* values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
@@ -4973,17 +4973,17 @@ function intlcal_field_difference($calendar, $when, $field) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* The maximum value for a field, considering the object's current time
- * @link https://secure.php.net/manual/en/intlcalendar.getactualmaximum.php
+ * @link https://www.php.net/manual/en/intlcalendar.getactualmaximum.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
* @param int $field <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
* values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
* @return int
- * An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing the maximum value in the units associated
+ * An {@link https://www.php.net/manual/en/language.types.integer.php int} representing the maximum value in the units associated
* with the given <em>field</em> or <b>FALSE</b> on failure.
* @since 5.5
*/
@@ -4992,17 +4992,17 @@ function intlcal_get_actual_maximum($calendar, $field) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* The minimum value for a field, considering the object's current time
- * @link https://secure.php.net/manual/en/intlcalendar.getactualminimum.php
+ * @link https://www.php.net/manual/en/intlcalendar.getactualminimum.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
* @param int $field <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}.
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}.
* These are integer values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
* @return int
- * An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing the minimum value in the field's
+ * An {@link https://www.php.net/manual/en/language.types.integer.php int} representing the minimum value in the field's
* unit or <b>FALSE</b> on failure.
* @since 5.5
*/
@@ -5010,7 +5010,7 @@ function intlcal_get_actual_minimum($calendar, $field) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
- * @link https://secure.php.net/manual/en/intlcalendar.getdayofweektype.php
+ * @link https://www.php.net/manual/en/intlcalendar.getdayofweektype.php
* Tell whether a day is a weekday, weekend or a day that has a transition between the two
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
@@ -5033,7 +5033,7 @@ function intlcal_get_day_of_week_type($calendar, $dayOfWeek) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the first day of the week for the calendar's locale
- * @link https://secure.php.net/manual/en/intlcalendar.getfirstdayofweek.php
+ * @link https://www.php.net/manual/en/intlcalendar.getfirstdayofweek.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
@@ -5048,16 +5048,16 @@ function intlcal_get_first_day_of_week($calendar) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the largest local minimum value for a field
- * @link https://secure.php.net/manual/en/intlcalendar.getgreatestminimum.php
+ * @link https://www.php.net/manual/en/intlcalendar.getgreatestminimum.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
* @param int $field <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
* values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* @return int
- * An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing a field value, in the field's
+ * An {@link https://www.php.net/manual/en/language.types.integer.php int} representing a field value, in the field's
* unit, or <b>FALSE</b> on failure.
* @since 5.5
*/
@@ -5082,17 +5082,17 @@ function intlcal_get($calendar, $index) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the smallest local maximum for a field
- * @link https://secure.php.net/manual/en/intlcalendar.getleastmaximum.php
+ * @link https://www.php.net/manual/en/intlcalendar.getleastmaximum.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
* @param int $field <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
* values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
* @return int
- * An {@link https://secure.php.net/manual/en/language.types.integer.ph int} representing a field value in the field's
+ * An {@link https://www.php.net/manual/en/language.types.integer.ph int} representing a field value in the field's
* unit or <b>FALSE</b> on failure.
* </p>
* @since 5.5
@@ -5102,16 +5102,16 @@ function intlcal_get_least_maximum($calendar, $field) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the largest local minimum value for a field
- * @link https://secure.php.net/manual/en/intlcalendar.getgreatestminimum.php
+ * @link https://www.php.net/manual/en/intlcalendar.getgreatestminimum.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
* @param int $field <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
* values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* @return int
- * An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing a field value, in the field's
+ * An {@link https://www.php.net/manual/en/language.types.integer.php int} representing a field value, in the field's
* unit, or <b>FALSE</b> on failure.
* @since 5.5
*/
@@ -5120,7 +5120,7 @@ function intlcal_get_greatest_minimum($calendar, $field) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the locale associated with the object
- * @link https://secure.php.net/manual/en/intlcalendar.getlocale.php
+ * @link https://www.php.net/manual/en/intlcalendar.getlocale.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
@@ -5141,12 +5141,12 @@ function intlcal_get_locale($calendar, $localeType) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the global maximum value for a field
- * @link https://secure.php.net/manual/en/intlcalendar.getmaximum.php
+ * @link https://www.php.net/manual/en/intlcalendar.getmaximum.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
* @param int $field <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
* values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
@@ -5159,13 +5159,13 @@ function intcal_get_maximum($calendar, $field) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
- * @link https://secure.php.net/manual/en/intlcalendar.getminimaldaysinfirstweek.php
+ * @link https://www.php.net/manual/en/intlcalendar.getminimaldaysinfirstweek.php
* Get minimal number of days the first week in a year or month can have
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
* @return int
- * An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing a number of days or <b>FALSE</b> on failure.
+ * An {@link https://www.php.net/manual/en/language.types.integer.php int} representing a number of days or <b>FALSE</b> on failure.
* @since 5.5
*/
function intlcal_get_minimal_days_in_first_week($calendar) { }
@@ -5173,12 +5173,12 @@ function intlcal_get_minimal_days_in_first_week($calendar) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the global minimum value for a field
- * @link https://secure.php.net/manual/en/intlcalendar.getminimum.php
+ * @link https://www.php.net/manual/en/intlcalendar.getminimum.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
* @param int $field <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field}. These are integer
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field}. These are integer
* values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
@@ -5191,12 +5191,12 @@ function intlcal_get_minimum($calendar, $field) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the object's timezone
- * @link https://secure.php.net/manual/en/intlcalendar.gettimezone.php
+ * @link https://www.php.net/manual/en/intlcalendar.gettimezone.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
* @return IntlTimeZone
- * An {@link https://secure.php.net/manual/en/class.intltimezone.php IntlTimeZone} object corresponding to the one used
+ * An {@link https://www.php.net/manual/en/class.intltimezone.php IntlTimeZone} object corresponding to the one used
* internally in this object.
* @since 5.5
*/
@@ -5205,12 +5205,12 @@ function intlcal_get_time_zone($calendar) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the calendar type
- * @link https://secure.php.net/manual/en/intlcalendar.gettype.php
+ * @link https://www.php.net/manual/en/intlcalendar.gettype.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
* @return string
- * A {@link https://secure.php.net/manual/en/language.types.string.php string} representing the calendar type, such as
+ * A {@link https://www.php.net/manual/en/language.types.string.php string} representing the calendar type, such as
* <em>'gregorian'</em>, <em>'islamic'</em>, etc.
* @since 5.5
*/
@@ -5219,7 +5219,7 @@ function intlcal_get_type($calendar) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get time of the day at which weekend begins or ends
- * @link https://secure.php.net/manual/en/intlcalendar.getweekendtransition.php
+ * @link https://www.php.net/manual/en/intlcalendar.getweekendtransition.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
@@ -5238,15 +5238,15 @@ function intlcal_get_weekend_transition($calendar, $dayOfWeek) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Whether the object's time is in Daylight Savings Time
- * @link https://secure.php.net/manual/en/intlcalendar.indaylighttime.php
+ * @link https://www.php.net/manual/en/intlcalendar.indaylighttime.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
* @return bool
* Returns <b>TRUE</b> if the date is in Daylight Savings Time, <b>FALSE</b> otherwise.
* The value <b>FALSE</b> may also be returned on failure, for instance after
- * specifying invalid field values on non-lenient mode; use {@link https://secure.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or query
- * {@link https://secure.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to disambiguate.
+ * specifying invalid field values on non-lenient mode; use {@link https://www.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or query
+ * {@link https://www.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to disambiguate.
* @since 5.5
*/
function intlcal_in_daylight_time($calendar) { }
@@ -5254,12 +5254,12 @@ function intlcal_in_daylight_time($calendar) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Whether date/time interpretation is in lenient mode
- * @link https://secure.php.net/manual/en/intlcalendar.islenient.php
+ * @link https://www.php.net/manual/en/intlcalendar.islenient.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
* @return bool
- * A {@link https://secure.php.net/manual/en/language.types.boolean.php bool} representing whether the calendar is set to lenient mode.
+ * A {@link https://www.php.net/manual/en/language.types.boolean.php bool} representing whether the calendar is set to lenient mode.
* @since 5.5
*/
function intlcal_is_lenient($calendar) { }
@@ -5267,12 +5267,12 @@ function intlcal_is_lenient($calendar) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Whether a field is set
- * @link https://secure.php.net/manual/en/intlcalendar.isset.php
+ * @link https://www.php.net/manual/en/intlcalendar.isset.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
* @param int $field <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
* values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
@@ -5284,12 +5284,12 @@ function intlcal_is_set($calendar, $field) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the global maximum value for a field
- * @link https://secure.php.net/manual/en/intlcalendar.getmaximum.php
+ * @link https://www.php.net/manual/en/intlcalendar.getmaximum.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
* @param int $field <p>
- * One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
+ * One of the {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
* values between <em>0</em> and
* <b>IntlCalendar::FIELD_COUNT</b>.
* </p>
@@ -5302,7 +5302,7 @@ function intlcal_get_maximum($calendar, $field) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Whether another calendar is equal but for a different time
- * @link https://secure.php.net/manual/en/intlcalendar.isequivalentto.php
+ * @link https://www.php.net/manual/en/intlcalendar.isequivalentto.php
* @param IntlCalendar $calendarObject <p>
* The calendar object, on the procedural style interface.
* </p>
@@ -5316,7 +5316,7 @@ function intlcal_is_equivalent_to(IntlCalendar $calendarObject, IntlCalendar $ca
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Whether a certain date/time is in the weekend
- * @link https://secure.php.net/manual/en/intlcalendar.isweekend.php
+ * @link https://www.php.net/manual/en/intlcalendar.isweekend.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
@@ -5326,13 +5326,13 @@ function intlcal_is_equivalent_to(IntlCalendar $calendarObject, IntlCalendar $ca
* used instead.
* </p>
* @return bool
- * <p> A {@link https://secure.php.net/manual/en/language.types.boolean.php bool} indicating whether the given or this object's time occurs
+ * <p> A {@link https://www.php.net/manual/en/language.types.boolean.php bool} indicating whether the given or this object's time occurs
* in a weekend.
* </p>
* <p>
* The value <b>FALSE</b> may also be returned on failure, for instance after giving
- * a date out of bounds on non-lenient mode; use {@link https://secure.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or query
- * {@link https://secure.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to disambiguate.</p>
+ * a date out of bounds on non-lenient mode; use {@link https://www.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or query
+ * {@link https://www.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to disambiguate.</p>
* @since 5.5
*/
function intlcal_is_weekend($calendar, $date = null) { }
@@ -5341,7 +5341,7 @@ function intlcal_is_weekend($calendar, $date = null) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Set the day on which the week is deemed to start
- * @link https://secure.php.net/manual/en/intlcalendar.setfirstdayofweek.php
+ * @link https://www.php.net/manual/en/intlcalendar.setfirstdayofweek.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
@@ -5358,7 +5358,7 @@ function intlcal_set_first_day_of_week($calendar, $dayOfWeek) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Set whether date/time interpretation is to be lenient
- * @link https://secure.php.net/manual/en/intlcalendar.setlenient.php
+ * @link https://www.php.net/manual/en/intlcalendar.setlenient.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
@@ -5374,7 +5374,7 @@ function intlcal_set_lenient($calendar, $isLenient) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get behavior for handling repeating wall time
- * @link https://secure.php.net/manual/en/intlcalendar.getrepeatedwalltimeoption.php
+ * @link https://www.php.net/manual/en/intlcalendar.getrepeatedwalltimeoption.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
@@ -5388,17 +5388,17 @@ function intlcal_get_repeated_wall_time_option($calendar) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Compare time of two IntlCalendar objects for equality
- * @link https://secure.php.net/manual/en/intlcalendar.equals.php
+ * @link https://www.php.net/manual/en/intlcalendar.equals.php
* @param IntlCalendar $calendarObject <p>
* The calendar object, on the procedural style interface.
* </p>
* @param IntlCalendar $calendar
* @return bool <p>
* Returns <b>TRUE</b> if the current time of both this and the passed in
- * {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} object are the same, or <b>FALSE</b>
+ * {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} object are the same, or <b>FALSE</b>
* otherwise. The value <b>FALSE</b> can also be returned on failure. This can only
* happen if bad arguments are passed in. In any case, the two cases can be
- * distinguished by calling {@link https://secure.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()}.
+ * distinguished by calling {@link https://www.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()}.
* </p>
* @since 5.5
*/
@@ -5407,7 +5407,7 @@ function intlcal_equals($calendarObject, $calendar) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get behavior for handling skipped wall time
- * @link https://secure.php.net/manual/en/intlcalendar.getskippedwalltimeoption.php
+ * @link https://www.php.net/manual/en/intlcalendar.getskippedwalltimeoption.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
@@ -5422,7 +5422,7 @@ function intlcal_get_skipped_wall_time_option($calendar) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Set behavior for handling repeating wall times at negative timezone offset transitions
- * @link https://secure.php.net/manual/en/intlcalendar.setrepeatedwalltimeoption.php
+ * @link https://www.php.net/manual/en/intlcalendar.setrepeatedwalltimeoption.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
@@ -5439,7 +5439,7 @@ function intlcal_set_repeated_wall_time_option($calendar, $wallTimeOption) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Set behavior for handling skipped wall times at positive timezone offset transitions
- * @link https://secure.php.net/manual/en/intlcalendar.setskippedwalltimeoption.php
+ * @link https://www.php.net/manual/en/intlcalendar.setskippedwalltimeoption.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
@@ -5459,15 +5459,15 @@ function intlcal_set_skipped_wall_time_option($calendar, $wallTimeOption) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a2)<br/>
* Create an IntlCalendar from a DateTime object or string
- * @link https://secure.php.net/manual/en/intlcalendar.fromdatetime.php
+ * @link https://www.php.net/manual/en/intlcalendar.fromdatetime.php
* @param mixed $dateTime <p>
- * A {@link https://secure.php.net/manual/en/class.datetime.php DateTime} object or a {@link https://secure.php.net/manual/en/language.types.string.php string} that
- * can be passed to {@link https://secure.php.net/manual/en/datetime.construct.php DateTime::__construct()}.
+ * A {@link https://www.php.net/manual/en/class.datetime.php DateTime} object or a {@link https://www.php.net/manual/en/language.types.string.php string} that
+ * can be passed to {@link https://www.php.net/manual/en/datetime.construct.php DateTime::__construct()}.
* </p>
* @return IntlCalendar
- * The created {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} object or <b>NULL</b> in case of
- * failure. If a {@link https://secure.php.net/manual/en/language.types.string.php string} is passed, any exception that occurs
- * inside the {@link https://secure.php.net/manual/en/class.datetime.php DateTime} constructor is propagated.
+ * The created {@link https://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} object or <b>NULL</b> in case of
+ * failure. If a {@link https://www.php.net/manual/en/language.types.string.php string} is passed, any exception that occurs
+ * inside the {@link https://www.php.net/manual/en/class.datetime.php DateTime} constructor is propagated.
* @since 5.5
*/
function intlcal_from_date_time($dateTime) { }
@@ -5476,12 +5476,12 @@ function intlcal_from_date_time($dateTime) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a2)<br/>
* Convert an IntlCalendar into a DateTime object
- * @link https://secure.php.net/manual/en/intlcalendar.todatetime.php
+ * @link https://www.php.net/manual/en/intlcalendar.todatetime.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
* @return DateTime|false
- * A {@link https://secure.php.net/manual/en/class.datetime.php DateTime} object with the same timezone as this
+ * A {@link https://www.php.net/manual/en/class.datetime.php DateTime} object with the same timezone as this
* object (though using PHP's database instead of ICU's) and the same time,
* except for the smaller precision (second precision instead of millisecond).
* Returns <b>FALSE</b> on failure.
@@ -5493,7 +5493,7 @@ function intlcal_to_date_time($calendar) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get last error code on the object
- * @link https://secure.php.net/manual/en/intlcalendar.geterrorcode.php
+ * @link https://www.php.net/manual/en/intlcalendar.geterrorcode.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
@@ -5505,7 +5505,7 @@ function intlcal_get_error_code($calendar) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get last error message on the object
- * @link https://secure.php.net/manual/en/intlcalendar.geterrormessage.php
+ * @link https://www.php.net/manual/en/intlcalendar.geterrormessage.php
* @param IntlCalendar $calendar <p>
* The calendar object, on the procedural style interface.
* </p>
@@ -5518,7 +5518,7 @@ function intlcal_get_error_message($calendar) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the number of IDs in the equivalency group that includes the given ID
- * @link https://secure.php.net/manual/en/intltimezone.countequivalentids.php
+ * @link https://www.php.net/manual/en/intltimezone.countequivalentids.php
* @param string $zoneId
* @return int
* @since 5.5
@@ -5528,7 +5528,7 @@ function intltz_count_equivalent_ids($zoneId) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Create a new copy of the default timezone for this host
- * @link https://secure.php.net/manual/en/intltimezone.createdefault.php
+ * @link https://www.php.net/manual/en/intltimezone.createdefault.php
* @return IntlTimeZone
* @since 5.5
*/
@@ -5536,7 +5536,7 @@ function intlz_create_default() { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
- * @link https://secure.php.net/manual/en/intltimezone.createenumeration.php
+ * @link https://www.php.net/manual/en/intltimezone.createenumeration.php
* @param mixed $countryOrRawOffset [optional]
* @return IntlIterator
* @since 5.5
@@ -5545,7 +5545,7 @@ function intltz_create_enumeration($countryOrRawOffset) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
- * @link https://secure.php.net/manual/en/intltimezone.createtimezone.php
+ * @link https://www.php.net/manual/en/intltimezone.createtimezone.php
* @param string $zoneId
* @return IntlTimeZone
* @since 5.5
@@ -5554,7 +5554,7 @@ function intltz_create_time_zone($zoneId) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
- * @link https://secure.php.net/manual/en/intltimezone.fromdatetimezone.php
+ * @link https://www.php.net/manual/en/intltimezone.fromdatetimezone.php
* @param DateTimeZone $zoneId
* @return IntlTimeZone
* @since 5.5
@@ -5564,7 +5564,7 @@ function intltz_from_date_time_zone($zoneId) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the canonical system timezone ID or the normalized custom time zone ID for the given time zone ID
- * @link https://secure.php.net/manual/en/intltimezone.getcanonicalid.php
+ * @link https://www.php.net/manual/en/intltimezone.getcanonicalid.php
* @param string $zoneId
* @param bool $isSystemID [optional]
* @return string
@@ -5592,7 +5592,7 @@ function intltz_get_display_name($obj, $isDaylight, $style, $locale) { }
* @param IntlTimeZone $obj - <p>
* The time zone object, on the procedural style interface.
* </p>
- * @link https://secure.php.net/manual/en/intltimezone.getequivalentid.php
+ * @link https://www.php.net/manual/en/intltimezone.getequivalentid.php
* @return int
* @since 5.5
*/
@@ -5601,7 +5601,7 @@ function intltz_get_dst_savings($obj) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get an ID in the equivalency group that includes the given ID
- * @link https://secure.php.net/manual/en/intltimezone.getequivalentid.php
+ * @link https://www.php.net/manual/en/intltimezone.getequivalentid.php
* @param string $zoneId
* @param int $index
* @return string
@@ -5612,7 +5612,7 @@ function intltz_get_equivalent_id($zoneId, $index) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get last error code on the object
- * @link https://secure.php.net/manual/en/intltimezone.geterrorcode.php
+ * @link https://www.php.net/manual/en/intltimezone.geterrorcode.php
* @param IntlTimeZone $obj - <p>
* The time zone object, on the procedural style interface.
* </p>
@@ -5624,7 +5624,7 @@ function intltz_get_error_code($obj) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get last error message on the object
- * @link https://secure.php.net/manual/en/intltimezone.geterrormessage.php
+ * @link https://www.php.net/manual/en/intltimezone.geterrormessage.php
* @param IntlTimeZone $obj - <p>
* The time zone object, on the procedural style interface.
* </p>
@@ -5636,7 +5636,7 @@ function intltz_get_error_message($obj) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Create GMT (UTC) timezone
- * @link https://secure.php.net/manual/en/intltimezone.getgmt.php
+ * @link https://www.php.net/manual/en/intltimezone.getgmt.php
* @return IntlTimeZone
* @since 5.5
*/
@@ -5645,7 +5645,7 @@ function intltz_getGMT() { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get timezone ID
- * @link https://secure.php.net/manual/en/intltimezone.getid.php
+ * @link https://www.php.net/manual/en/intltimezone.getid.php
* @param IntlTimeZone $obj
* @return string
* @since 5.5
@@ -5655,7 +5655,7 @@ function intltz_get_id($obj) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the time zone raw and GMT offset for the given moment in time
- * @link https://secure.php.net/manual/en/intltimezone.getoffset.php
+ * @link https://www.php.net/manual/en/intltimezone.getoffset.php
* @param IntlTimeZone $obj
* @param float $date
* @param bool $local
@@ -5668,7 +5668,7 @@ function intltz_get_offset($obj, $date, $local, &$rawOffset, &$dstOffset) { }
/**
* Get the raw GMT offset (before taking daylight savings time into account
- * @link https://secure.php.net/manual/en/intltimezone.getrawoffset.php
+ * @link https://www.php.net/manual/en/intltimezone.getrawoffset.php
* @param IntlTimeZone $obj
* @return int
*/
@@ -5677,7 +5677,7 @@ function intltz_get_raw_offset($obj) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Get the timezone data version currently used by ICU
- * @link https://secure.php.net/manual/en/intltimezone.gettzdataversion.php
+ * @link https://www.php.net/manual/en/intltimezone.gettzdataversion.php
* @param IntlTimeZone $obj
* @return string
* @since 5.5
@@ -5687,7 +5687,7 @@ function intltz_get_tz_data_version($obj) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Check if this zone has the same rules and offset as another zone
- * @link https://secure.php.net/manual/en/intltimezone.hassamerules.php
+ * @link https://www.php.net/manual/en/intltimezone.hassamerules.php
* @param IntlTimeZone $obj
* @param IntlTimeZone $otherTimeZone
* @return bool
@@ -5698,7 +5698,7 @@ function intltz_has_same_rules($obj, $otherTimeZone) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Convert to DateTimeZone object
- * @link https://secure.php.net/manual/ru/intltimezone.todatetimezone.php
+ * @link https://www.php.net/manual/ru/intltimezone.todatetimezone.php
* @param $obj
* @return DateTimeZone
* @since 5.5
@@ -5708,7 +5708,7 @@ function intltz_to_date_time_zone($obj) { }
/**
* (PHP 5 &gt;=5.5.0 PECL intl &gt;= 3.0.0a1)<br/>
* Check if this time zone uses daylight savings time
- * @link https://secure.php.net/manual/ru/intltimezone.usedaylighttime.php
+ * @link https://www.php.net/manual/ru/intltimezone.usedaylighttime.php
* @param $obj
* @return bool
* @since 5.5
@@ -6240,62 +6240,62 @@ define ('INTL_IDNA_VARIANT_UTS46', 1);
*/
define ('IDNA_ERROR_EMPTY_LABEL', 1);
/**
- * @link https://secure.php.net/manual/en/migration54.global-constants.php
+ * @link https://www.php.net/manual/en/migration54.global-constants.php
* @since 5.4
*/
define ('IDNA_ERROR_LABEL_TOO_LONG', 2);
/**
- * @link https://secure.php.net/manual/en/migration54.global-constants.php
+ * @link https://www.php.net/manual/en/migration54.global-constants.php
* @since 5.4
*/
define ('IDNA_ERROR_DOMAIN_NAME_TOO_LONG', 4);
/**
- * @link https://secure.php.net/manual/en/migration54.global-constants.php
+ * @link https://www.php.net/manual/en/migration54.global-constants.php
* @since 5.4
*/
define ('IDNA_ERROR_LEADING_HYPHEN', 8);
/**
- * @link https://secure.php.net/manual/en/migration54.global-constants.php
+ * @link https://www.php.net/manual/en/migration54.global-constants.php
* @since 5.4
*/
define ('IDNA_ERROR_TRAILING_HYPHEN', 16);
/**
- * @link https://secure.php.net/manual/en/migration54.global-constants.php
+ * @link https://www.php.net/manual/en/migration54.global-constants.php
* @since 5.4
*/
define ('IDNA_ERROR_HYPHEN_3_4', 32);
/**
- * @link https://secure.php.net/manual/en/migration54.global-constants.php
+ * @link https://www.php.net/manual/en/migration54.global-constants.php
* @since 5.4
*/
define ('IDNA_ERROR_LEADING_COMBINING_MARK', 64);
/**
- * @link https://secure.php.net/manual/en/migration54.global-constants.php
+ * @link https://www.php.net/manual/en/migration54.global-constants.php
* @since 5.4
*/
define ('IDNA_ERROR_DISALLOWED', 128);
/**
- * @link https://secure.php.net/manual/en/migration54.global-constants.php
+ * @link https://www.php.net/manual/en/migration54.global-constants.php
* @since 5.4
*/
define ('IDNA_ERROR_PUNYCODE', 256);
/**
- * @link https://secure.php.net/manual/en/migration54.global-constants.php
+ * @link https://www.php.net/manual/en/migration54.global-constants.php
* @since 5.4
*/
define ('IDNA_ERROR_LABEL_HAS_DOT', 512);
/**
- * @link https://secure.php.net/manual/en/migration54.global-constants.php
+ * @link https://www.php.net/manual/en/migration54.global-constants.php
* @since 5.4
*/
define ('IDNA_ERROR_INVALID_ACE_LABEL', 1024);
/**
- * @link https://secure.php.net/manual/en/migration54.global-constants.php
+ * @link https://www.php.net/manual/en/migration54.global-constants.php
* @since 5.4
*/
define ('IDNA_ERROR_BIDI', 2048);
/**
- * @link https://secure.php.net/manual/en/migration54.global-constants.php
+ * @link https://www.php.net/manual/en/migration54.global-constants.php
* @since 5.4
*/
define ('IDNA_ERROR_CONTEXTJ', 4096);
@@ -6336,7 +6336,7 @@ class IntlBreakIterator implements IteratorAggregate
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Create break iterator for boundaries of combining character sequences
- * @link https://secure.php.net/manual/en/intlbreakiterator.createcharacterinstance.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.createcharacterinstance.php
* @param string $locale
* @return IntlBreakIterator
*/
@@ -6345,7 +6345,7 @@ class IntlBreakIterator implements IteratorAggregate
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Create break iterator for boundaries of code points
- * @link https://secure.php.net/manual/en/intlbreakiterator.createcodepointinstance.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.createcodepointinstance.php
* @return IntlBreakIterator
*/
public static function createCodePointInstance() { }
@@ -6353,7 +6353,7 @@ class IntlBreakIterator implements IteratorAggregate
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Create break iterator for logically possible line breaks
- * @link https://secure.php.net/manual/en/intlbreakiterator.createlineinstance.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.createlineinstance.php
* @param string $locale
* @return IntlBreakIterator
*/
@@ -6362,7 +6362,7 @@ class IntlBreakIterator implements IteratorAggregate
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Create break iterator for sentence breaks
- * @link https://secure.php.net/manual/en/intlbreakiterator.createsentenceinstance.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.createsentenceinstance.php
* @param string $locale
* @return IntlBreakIterator
*/
@@ -6371,7 +6371,7 @@ class IntlBreakIterator implements IteratorAggregate
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Create break iterator for title-casing breaks
- * @link https://secure.php.net/manual/en/intlbreakiterator.createtitleinstance.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.createtitleinstance.php
* @param string $locale
* @return IntlBreakIterator
*/
@@ -6380,7 +6380,7 @@ class IntlBreakIterator implements IteratorAggregate
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Create break iterator for word breaks
- * @link https://secure.php.net/manual/en/intlbreakiterator.createwordinstance.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.createwordinstance.php
* @param string $locale
* @return IntlBreakIterator
*/
@@ -6389,7 +6389,7 @@ class IntlBreakIterator implements IteratorAggregate
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Get index of current position
- * @link https://secure.php.net/manual/en/intlbreakiterator.current.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.current.php
* @return int
*/
public function current() { }
@@ -6397,14 +6397,14 @@ class IntlBreakIterator implements IteratorAggregate
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Set position to the first character in the text
- * @link https://secure.php.net/manual/en/intlbreakiterator.first.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.first.php
*/
public function first() { }
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Advance the iterator to the first boundary following specified offset
- * @link https://secure.php.net/manual/en/intlbreakiterator.following.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.following.php
* @param int $offset
*/
public function following($offset) { }
@@ -6412,7 +6412,7 @@ class IntlBreakIterator implements IteratorAggregate
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Get last error code on the object
- * @link https://secure.php.net/manual/en/intlbreakiterator.geterrorcode.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.geterrorcode.php
* @return int
*/
public function getErrorCode() { }
@@ -6420,7 +6420,7 @@ class IntlBreakIterator implements IteratorAggregate
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Get last error message on the object
- * @link https://secure.php.net/manual/en/intlbreakiterator.geterrormessage.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.geterrormessage.php
* @return string
*/
public function getErrorMessage() { }
@@ -6429,7 +6429,7 @@ class IntlBreakIterator implements IteratorAggregate
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Get the locale associated with the object
- * @link https://secure.php.net/manual/en/intlbreakiterator.getlocale.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.getlocale.php
* @param string $locale_type
*/
public function getLocale($locale_type) { }
@@ -6437,7 +6437,7 @@ class IntlBreakIterator implements IteratorAggregate
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Create iterator for navigating fragments between boundaries
- * @link https://secure.php.net/manual/en/intlbreakiterator.getpartsiterator.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.getpartsiterator.php
* @param string $key_type [optional]
*/
public function getPartsIterator($key_type = IntlPartsIterator::KEY_SEQUENTIAL) { }
@@ -6445,14 +6445,14 @@ class IntlBreakIterator implements IteratorAggregate
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Get the text being scanned
- * @link https://secure.php.net/manual/en/intlbreakiterator.gettext.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.gettext.php
*/
public function getText() { }
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Tell whether an offset is a boundary's offset
- * @link https://secure.php.net/manual/en/intlbreakiterator.isboundary.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.isboundary.php
* @param string $offset
*/
public function isBoundary($offset) { }
@@ -6460,14 +6460,14 @@ class IntlBreakIterator implements IteratorAggregate
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Set the iterator position to index beyond the last character
- * @link https://secure.php.net/manual/en/intlbreakiterator.last.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.last.php
* @return int
*/
public function last() { }
/**
* (PHP 5 &gt;=5.5.0)<br/>
- * @link https://secure.php.net/manual/en/intlbreakiterator.next.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.next.php
* @param string $offset [optional]
* @return int
*/
@@ -6475,7 +6475,7 @@ class IntlBreakIterator implements IteratorAggregate
/**
* (PHP 5 &gt;=5.5.0)<br/>
- * @link https://secure.php.net/manual/en/intlbreakiterator.preceding.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.preceding.php
* @param int $offset
*/
public function preceding($offset) { }
@@ -6483,7 +6483,7 @@ class IntlBreakIterator implements IteratorAggregate
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Set the iterator position to the boundary immediately before the current
- * @link https://secure.php.net/manual/en/intlbreakiterator.previous.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.previous.php
* @return int
*/
public function previous() { }
@@ -6491,7 +6491,7 @@ class IntlBreakIterator implements IteratorAggregate
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Set the text being scanned
- * @link https://secure.php.net/manual/en/intlbreakiterator.settext.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.settext.php
* @param string $text
*/
public function setText($text) { }
@@ -6504,7 +6504,7 @@ class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversabl
/* Methods */
/**
* (PHP 5 &gt;=5.5.0)<br/>
- * @link https://secure.php.net/manual/en/intlbreakiterator.construct.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.construct.php
* @param string $rules
* @param string $areCompiled [optional]
*/
@@ -6513,7 +6513,7 @@ class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversabl
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Create break iterator for boundaries of combining character sequences
- * @link https://secure.php.net/manual/en/intlbreakiterator.createcharacterinstance.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.createcharacterinstance.php
* @param string $locale
* @return IntlRuleBasedBreakIterator
*/
@@ -6522,7 +6522,7 @@ class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversabl
/*
* (PHP 5 &gt;=5.5.0)<br/>
* Create break iterator for boundaries of code points
- * @link https://secure.php.net/manual/en/intlbreakiterator.createcodepointinstance.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.createcodepointinstance.php
* @return IntlRuleBasedBreakIterator
*/
public static function createCodePointInstance() { }
@@ -6530,7 +6530,7 @@ class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversabl
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Create break iterator for logically possible line breaks
- * @link https://secure.php.net/manual/en/intlbreakiterator.createlineinstance.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.createlineinstance.php
* @param string $locale
* @return IntlRuleBasedBreakIterator
*/
@@ -6539,7 +6539,7 @@ class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversabl
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Create break iterator for sentence breaks
- * @link https://secure.php.net/manual/en/intlbreakiterator.createsentenceinstance.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.createsentenceinstance.php
* @param string $locale
* @return IntlRuleBasedBreakIterator
*/
@@ -6548,7 +6548,7 @@ class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversabl
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Create break iterator for title-casing breaks
- * @link https://secure.php.net/manual/en/intlbreakiterator.createtitleinstance.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.createtitleinstance.php
* @param string $locale
* @return IntlRuleBasedBreakIterator
*/
@@ -6557,7 +6557,7 @@ class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversabl
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Create break iterator for word breaks
- * @link https://secure.php.net/manual/en/intlbreakiterator.createwordinstance.php
+ * @link https://www.php.net/manual/en/intlbreakiterator.createwordinstance.php
* @param string $locale
* @return IntlRuleBasedBreakIterator
*/
@@ -6565,7 +6565,7 @@ class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversabl
/**
* (PHP 5 &gt;=5.5.0)<br/>
- * @link https://secure.php.net/manual/en/intlrulebasedbreakiterator.getbinaryrules.php
+ * @link https://www.php.net/manual/en/intlrulebasedbreakiterator.getbinaryrules.php
* Get the binary form of compiled rules
* @return string
*/
@@ -6573,7 +6573,7 @@ class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversabl
/**
* (PHP 5 &gt;=5.5.0)<br/>
- * @link https://secure.php.net/manual/en/intlrulebasedbreakiterator.getrules.php
+ * @link https://www.php.net/manual/en/intlrulebasedbreakiterator.getrules.php
* Get the rule set used to create this object
* @return string
*/
@@ -6581,7 +6581,7 @@ class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversabl
/**
* (PHP 5 &gt;=5.5.0)<br/>
- * @link https://secure.php.net/manual/en/intlrulebasedbreakiterator.getrulesstatus.php
+ * @link https://www.php.net/manual/en/intlrulebasedbreakiterator.getrulesstatus.php
* Get the largest status value from the break rules that determined the current break position
* @return int
*/
@@ -6589,7 +6589,7 @@ class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversabl
/**
* (PHP 5 &gt;=5.5.0)<br/>
- * @link https://secure.php.net/manual/en/intlrulebasedbreakiterator.getrulestatusvec.php
+ * @link https://www.php.net/manual/en/intlrulebasedbreakiterator.getrulestatusvec.php
* Get the status values from the break rules that determined the current break position
* @return array
*/
@@ -6618,7 +6618,7 @@ class IntlCodePointBreakIterator extends IntlBreakIterator implements Traversabl
/**
* (PHP 5 &gt;=5.5.0)<br/>
* Get last code point passed over after advancing or receding the iterator
- * @link https://secure.php.net/manual/en/intlcodepointbreakiterator.getlastcodepoint.php
+ * @link https://www.php.net/manual/en/intlcodepointbreakiterator.getlastcodepoint.php
* @return int
*/
public function getLastCodePoint() { }
diff --git a/build/stubs/memcached.php b/build/stubs/memcached.php
index 8f898c3c5c8..b87387aa1ef 100644
--- a/build/stubs/memcached.php
+++ b/build/stubs/memcached.php
@@ -1436,7 +1436,7 @@ class Memcached {
/**
* (PECL memcached &gt;= 2.0.0)<br/>
* Set the credentials to use for authentication
- * @link https://secure.php.net/manual/en/memcached.setsaslauthdata.php
+ * @link https://www.php.net/manual/en/memcached.setsaslauthdata.php
* @param string $username <p>
* The username to use for authentication.
* </p>