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
parentec07ca2abbc88f395b8eeedc4b2e5b679018a673 (diff)
Unify links to php.net
Update all links to https://www.php.net/ Signed-off-by: J0WI <J0WI@users.noreply.github.com>
-rw-r--r--apps/files/lib/Command/Scan.php2
-rw-r--r--apps/files/lib/Command/ScanAppData.php2
-rw-r--r--apps/files_external/3rdparty/icewind/smb/src/Native/NativeShare.php2
-rw-r--r--apps/files_sharing/lib/SharedStorage.php2
-rw-r--r--apps/settings/lib/Controller/CheckSetupController.php2
-rw-r--r--apps/settings/templates/settings/admin/server.php2
-rw-r--r--apps/user_ldap/lib/Access.php2
-rw-r--r--apps/user_ldap/lib/ILDAPWrapper.php2
-rw-r--r--apps/user_ldap/lib/LDAP.php2
-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
-rw-r--r--config/config.sample.php10
-rw-r--r--console.php4
-rw-r--r--cron.php2
-rw-r--r--lib/private/AppFramework/Http/Request.php2
-rw-r--r--lib/private/DB/QueryBuilder/QueryBuilder.php2
-rw-r--r--lib/private/Files/Storage/Wrapper/Encoding.php38
-rw-r--r--lib/private/Files/Storage/Wrapper/Encryption.php20
-rw-r--r--lib/private/Files/Storage/Wrapper/Jail.php38
-rw-r--r--lib/private/Files/Storage/Wrapper/Quota.php6
-rw-r--r--lib/private/Files/Storage/Wrapper/Wrapper.php38
-rw-r--r--lib/private/Preview/HEIC.php2
-rw-r--r--lib/private/Share/SearchResultSorter.php2
-rw-r--r--lib/private/legacy/OC_Helper.php6
-rw-r--r--lib/private/legacy/OC_Image.php2
-rw-r--r--lib/public/DB/QueryBuilder/IQueryBuilder.php2
-rw-r--r--lib/public/Files/Storage.php38
-rw-r--r--lib/public/Files/Storage/IStorage.php38
-rw-r--r--lib/public/Util.php2
31 files changed, 466 insertions, 466 deletions
diff --git a/apps/files/lib/Command/Scan.php b/apps/files/lib/Command/Scan.php
index 6ca6ba76945..94621a66cd3 100644
--- a/apps/files/lib/Command/Scan.php
+++ b/apps/files/lib/Command/Scan.php
@@ -236,7 +236,7 @@ class Scan extends Base {
/**
* Processes PHP errors as exceptions in order to be able to keep track of problems
*
- * @see https://secure.php.net/manual/en/function.set-error-handler.php
+ * @see https://www.php.net/manual/en/function.set-error-handler.php
*
* @param int $severity the level of the error raised
* @param string $message
diff --git a/apps/files/lib/Command/ScanAppData.php b/apps/files/lib/Command/ScanAppData.php
index 7b20fb011b0..cdd0df81c83 100644
--- a/apps/files/lib/Command/ScanAppData.php
+++ b/apps/files/lib/Command/ScanAppData.php
@@ -183,7 +183,7 @@ class ScanAppData extends Base {
/**
* Processes PHP errors as exceptions in order to be able to keep track of problems
*
- * @see https://secure.php.net/manual/en/function.set-error-handler.php
+ * @see https://www.php.net/manual/en/function.set-error-handler.php
*
* @param int $severity the level of the error raised
* @param string $message
diff --git a/apps/files_external/3rdparty/icewind/smb/src/Native/NativeShare.php b/apps/files_external/3rdparty/icewind/smb/src/Native/NativeShare.php
index 95ee3f489b9..5368538edca 100644
--- a/apps/files_external/3rdparty/icewind/smb/src/Native/NativeShare.php
+++ b/apps/files_external/3rdparty/icewind/smb/src/Native/NativeShare.php
@@ -119,7 +119,7 @@ class NativeShare extends AbstractShare {
* Multibyte unicode safe version of basename()
*
* @param string $path
- * @link http://php.net/manual/en/function.basename.php#121405
+ * @link https://www.php.net/manual/en/function.basename.php#121405
* @return string
*/
protected static function mb_basename($path) {
diff --git a/apps/files_sharing/lib/SharedStorage.php b/apps/files_sharing/lib/SharedStorage.php
index 901634c1e9f..7eeca69c029 100644
--- a/apps/files_sharing/lib/SharedStorage.php
+++ b/apps/files_sharing/lib/SharedStorage.php
@@ -297,7 +297,7 @@ class SharedStorage extends \OC\Files\Storage\Wrapper\Jail implements ISharedSto
}
/**
- * see http://php.net/manual/en/function.rename.php
+ * see https://www.php.net/manual/en/function.rename.php
*
* @param string $path1
* @param string $path2
diff --git a/apps/settings/lib/Controller/CheckSetupController.php b/apps/settings/lib/Controller/CheckSetupController.php
index 6d237e04c1c..4862954a23b 100644
--- a/apps/settings/lib/Controller/CheckSetupController.php
+++ b/apps/settings/lib/Controller/CheckSetupController.php
@@ -277,7 +277,7 @@ class CheckSetupController extends Controller {
/**
* Whether the php version is still supported (at time of release)
- * according to: https://secure.php.net/supported-versions.php
+ * according to: https://www.php.net/supported-versions.php
*
* @return array
*/
diff --git a/apps/settings/templates/settings/admin/server.php b/apps/settings/templates/settings/admin/server.php
index c848ef5c494..58e2ed2188f 100644
--- a/apps/settings/templates/settings/admin/server.php
+++ b/apps/settings/templates/settings/admin/server.php
@@ -103,7 +103,7 @@
} else {
print_unescaped(str_replace(
['{linkstart}', '{linkend}'],
- ['<a href="http://php.net/manual/en/book.posix.php">', ' ↗</a>'],
+ ['<a href="https://www.php.net/manual/en/book.posix.php">', ' ↗</a>'],
$l->t('To run this you need the PHP POSIX extension. See {linkstart}PHP documentation{linkend} for more details.')
));
} ?></em>
diff --git a/apps/user_ldap/lib/Access.php b/apps/user_ldap/lib/Access.php
index 01818079802..073144475ce 100644
--- a/apps/user_ldap/lib/Access.php
+++ b/apps/user_ldap/lib/Access.php
@@ -1785,7 +1785,7 @@ class Access extends LDAPUtility {
*
* @param string $oguid the ObjectGUID in it's binary form as retrieved from AD
* @return string
- * @link http://www.php.net/manual/en/function.ldap-get-values-len.php#73198
+ * @link https://www.php.net/manual/en/function.ldap-get-values-len.php#73198
*/
private function convertObjectGUID2Str($oguid) {
$hex_guid = bin2hex($oguid);
diff --git a/apps/user_ldap/lib/ILDAPWrapper.php b/apps/user_ldap/lib/ILDAPWrapper.php
index a96c2b52c4e..6b0b221da39 100644
--- a/apps/user_ldap/lib/ILDAPWrapper.php
+++ b/apps/user_ldap/lib/ILDAPWrapper.php
@@ -100,7 +100,7 @@ interface ILDAPWrapper {
* @param string $dn
* @param int @withAttrib
* @return array|false
- * @link http://www.php.net/manual/en/function.ldap-explode-dn.php
+ * @link https://www.php.net/manual/en/function.ldap-explode-dn.php
*/
public function explodeDN($dn, $withAttrib);
diff --git a/apps/user_ldap/lib/LDAP.php b/apps/user_ldap/lib/LDAP.php
index 63b2b9adcb9..b7101e2a686 100644
--- a/apps/user_ldap/lib/LDAP.php
+++ b/apps/user_ldap/lib/LDAP.php
@@ -148,7 +148,7 @@ class LDAP implements ILDAPWrapper {
* @param string $dn
* @param int @withAttrib
* @return array|false
- * @link http://www.php.net/manual/en/function.ldap-explode-dn.php
+ * @link https://www.php.net/manual/en/function.ldap-explode-dn.php
*/
public function explodeDN($dn, $withAttrib) {
return $this->invokeLDAPMethod('explode_dn', $dn, $withAttrib);
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>
diff --git a/config/config.sample.php b/config/config.sample.php
index 61d7130660d..b79388a3dc8 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -843,16 +843,16 @@ $CONFIG = [
],
/**
- * This uses PHP.date formatting; see http://php.net/manual/en/function.date.php
+ * This uses PHP.date formatting; see https://www.php.net/manual/en/function.date.php
*
* Defaults to ISO 8601 ``2005-08-15T15:52:01+00:00`` - see \DateTime::ATOM
- * (https://secure.php.net/manual/en/class.datetime.php#datetime.constants.atom)
+ * (https://www.php.net/manual/en/class.datetime.php#datetime.constants.atom)
*/
'logdateformat' => 'F d, Y H:i:s',
/**
* The timezone for logfiles. You may change this; see
- * http://php.net/manual/en/timezones.php
+ * https://www.php.net/manual/en/timezones.php
*
* Defaults to ``UTC``
*/
@@ -1224,8 +1224,8 @@ $CONFIG = [
*/
'memcached_servers' => [
// hostname, port and optional weight. Also see:
- // http://www.php.net/manual/en/memcached.addservers.php
- // http://www.php.net/manual/en/memcached.addserver.php
+ // https://www.php.net/manual/en/memcached.addservers.php
+ // https://www.php.net/manual/en/memcached.addserver.php
['localhost', 11211],
//array('other.host.local', 11211),
],
diff --git a/console.php b/console.php
index 565569ef28b..694714cd63e 100644
--- a/console.php
+++ b/console.php
@@ -61,7 +61,7 @@ try {
set_exception_handler('exceptionHandler');
if (!function_exists('posix_getuid')) {
- echo "The posix extensions are required - see http://php.net/manual/en/book.posix.php" . PHP_EOL;
+ echo "The posix extensions are required - see https://www.php.net/manual/en/book.posix.php" . PHP_EOL;
exit(1);
}
$user = posix_getpwuid(posix_getuid());
@@ -86,7 +86,7 @@ try {
}
if (!function_exists('pcntl_signal') && !in_array('--no-warnings', $argv)) {
- echo "The process control (PCNTL) extensions are required in case you want to interrupt long running commands - see http://php.net/manual/en/book.pcntl.php" . PHP_EOL;
+ echo "The process control (PCNTL) extensions are required in case you want to interrupt long running commands - see https://www.php.net/manual/en/book.pcntl.php" . PHP_EOL;
}
$application = new Application(
diff --git a/cron.php b/cron.php
index fd7d2040f1b..82abf4152b3 100644
--- a/cron.php
+++ b/cron.php
@@ -90,7 +90,7 @@ try {
// the cron job must be executed with the right user
if (!function_exists('posix_getuid')) {
- echo "The posix extensions are required - see http://php.net/manual/en/book.posix.php" . PHP_EOL;
+ echo "The posix extensions are required - see https://www.php.net/manual/en/book.posix.php" . PHP_EOL;
exit(1);
}
diff --git a/lib/private/AppFramework/Http/Request.php b/lib/private/AppFramework/Http/Request.php
index dcc3c8ec68d..537c8c08fa1 100644
--- a/lib/private/AppFramework/Http/Request.php
+++ b/lib/private/AppFramework/Http/Request.php
@@ -134,7 +134,7 @@ class Request implements \ArrayAccess, \Countable, IRequest {
* @param IConfig $config
* @param CsrfTokenManager|null $csrfTokenManager
* @param string $stream
- * @see http://www.php.net/manual/en/reserved.variables.php
+ * @see https://www.php.net/manual/en/reserved.variables.php
*/
public function __construct(array $vars= [],
ISecureRandom $secureRandom = null,
diff --git a/lib/private/DB/QueryBuilder/QueryBuilder.php b/lib/private/DB/QueryBuilder/QueryBuilder.php
index 4fde0fb4519..474353021d5 100644
--- a/lib/private/DB/QueryBuilder/QueryBuilder.php
+++ b/lib/private/DB/QueryBuilder/QueryBuilder.php
@@ -1054,7 +1054,7 @@ class QueryBuilder implements IQueryBuilder {
* placeholder for you. An automatic placeholder will be of the name
* ':dcValue1', ':dcValue2' etc.
*
- * For more information see {@link http://php.net/pdostatement-bindparam}
+ * For more information see {@link https://www.php.net/pdostatement-bindparam}
*
* Example:
* <code>
diff --git a/lib/private/Files/Storage/Wrapper/Encoding.php b/lib/private/Files/Storage/Wrapper/Encoding.php
index a2ef1780d6c..aa5c0e99c76 100644
--- a/lib/private/Files/Storage/Wrapper/Encoding.php
+++ b/lib/private/Files/Storage/Wrapper/Encoding.php
@@ -124,7 +124,7 @@ class Encoding extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.mkdir.php
+ * see https://www.php.net/manual/en/function.mkdir.php
*
* @param string $path
* @return bool
@@ -139,7 +139,7 @@ class Encoding extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.rmdir.php
+ * see https://www.php.net/manual/en/function.rmdir.php
*
* @param string $path
* @return bool
@@ -153,7 +153,7 @@ class Encoding extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.opendir.php
+ * see https://www.php.net/manual/en/function.opendir.php
*
* @param string $path
* @return resource
@@ -163,7 +163,7 @@ class Encoding extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.is_dir.php
+ * see https://www.php.net/manual/en/function.is_dir.php
*
* @param string $path
* @return bool
@@ -173,7 +173,7 @@ class Encoding extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.is_file.php
+ * see https://www.php.net/manual/en/function.is_file.php
*
* @param string $path
* @return bool
@@ -183,7 +183,7 @@ class Encoding extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.stat.php
+ * see https://www.php.net/manual/en/function.stat.php
* only the following keys are required in the result: size and mtime
*
* @param string $path
@@ -194,7 +194,7 @@ class Encoding extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.filetype.php
+ * see https://www.php.net/manual/en/function.filetype.php
*
* @param string $path
* @return bool
@@ -204,7 +204,7 @@ class Encoding extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.filesize.php
+ * see https://www.php.net/manual/en/function.filesize.php
* The result for filesize when called on a folder is required to be 0
*
* @param string $path
@@ -276,7 +276,7 @@ class Encoding extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.file_exists.php
+ * see https://www.php.net/manual/en/function.file_exists.php
*
* @param string $path
* @return bool
@@ -286,7 +286,7 @@ class Encoding extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.filemtime.php
+ * see https://www.php.net/manual/en/function.filemtime.php
*
* @param string $path
* @return int
@@ -296,7 +296,7 @@ class Encoding extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.file_get_contents.php
+ * see https://www.php.net/manual/en/function.file_get_contents.php
*
* @param string $path
* @return string
@@ -306,7 +306,7 @@ class Encoding extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.file_put_contents.php
+ * see https://www.php.net/manual/en/function.file_put_contents.php
*
* @param string $path
* @param string $data
@@ -317,7 +317,7 @@ class Encoding extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.unlink.php
+ * see https://www.php.net/manual/en/function.unlink.php
*
* @param string $path
* @return bool
@@ -331,7 +331,7 @@ class Encoding extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.rename.php
+ * see https://www.php.net/manual/en/function.rename.php
*
* @param string $path1
* @param string $path2
@@ -343,7 +343,7 @@ class Encoding extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.copy.php
+ * see https://www.php.net/manual/en/function.copy.php
*
* @param string $path1
* @param string $path2
@@ -354,7 +354,7 @@ class Encoding extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.fopen.php
+ * see https://www.php.net/manual/en/function.fopen.php
*
* @param string $path
* @param string $mode
@@ -380,7 +380,7 @@ class Encoding extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.hash.php
+ * see https://www.php.net/manual/en/function.hash.php
*
* @param string $type
* @param string $path
@@ -392,7 +392,7 @@ class Encoding extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.free_space.php
+ * see https://www.php.net/manual/en/function.free_space.php
*
* @param string $path
* @return int
@@ -412,7 +412,7 @@ class Encoding extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.touch.php
+ * see https://www.php.net/manual/en/function.touch.php
* If the backend does not support the operation, false should be returned
*
* @param string $path
diff --git a/lib/private/Files/Storage/Wrapper/Encryption.php b/lib/private/Files/Storage/Wrapper/Encryption.php
index 3a97764fbb8..04c278fb570 100644
--- a/lib/private/Files/Storage/Wrapper/Encryption.php
+++ b/lib/private/Files/Storage/Wrapper/Encryption.php
@@ -132,7 +132,7 @@ class Encryption extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.filesize.php
+ * see https://www.php.net/manual/en/function.filesize.php
* The result for filesize when called on a folder is required to be 0
*
* @param string $path
@@ -210,7 +210,7 @@ class Encryption extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.file_get_contents.php
+ * see https://www.php.net/manual/en/function.file_get_contents.php
*
* @param string $path
* @return string
@@ -231,7 +231,7 @@ class Encryption extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.file_put_contents.php
+ * see https://www.php.net/manual/en/function.file_put_contents.php
*
* @param string $path
* @param string $data
@@ -250,7 +250,7 @@ class Encryption extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.unlink.php
+ * see https://www.php.net/manual/en/function.unlink.php
*
* @param string $path
* @return bool
@@ -270,7 +270,7 @@ class Encryption extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.rename.php
+ * see https://www.php.net/manual/en/function.rename.php
*
* @param string $path1
* @param string $path2
@@ -302,7 +302,7 @@ class Encryption extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.rmdir.php
+ * see https://www.php.net/manual/en/function.rmdir.php
*
* @param string $path
* @return bool
@@ -344,7 +344,7 @@ class Encryption extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.copy.php
+ * see https://www.php.net/manual/en/function.copy.php
*
* @param string $path1
* @param string $path2
@@ -364,7 +364,7 @@ class Encryption extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.fopen.php
+ * see https://www.php.net/manual/en/function.fopen.php
*
* @param string $path
* @param string $mode
@@ -807,7 +807,7 @@ class Encryption extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.stat.php
+ * see https://www.php.net/manual/en/function.stat.php
* only the following keys are required in the result: size and mtime
*
* @param string $path
@@ -823,7 +823,7 @@ class Encryption extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.hash.php
+ * see https://www.php.net/manual/en/function.hash.php
*
* @param string $type
* @param string $path
diff --git a/lib/private/Files/Storage/Wrapper/Jail.php b/lib/private/Files/Storage/Wrapper/Jail.php
index 449a238096d..76121cbb6c8 100644
--- a/lib/private/Files/Storage/Wrapper/Jail.php
+++ b/lib/private/Files/Storage/Wrapper/Jail.php
@@ -83,7 +83,7 @@ class Jail extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.mkdir.php
+ * see https://www.php.net/manual/en/function.mkdir.php
*
* @param string $path
* @return bool
@@ -93,7 +93,7 @@ class Jail extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.rmdir.php
+ * see https://www.php.net/manual/en/function.rmdir.php
*
* @param string $path
* @return bool
@@ -103,7 +103,7 @@ class Jail extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.opendir.php
+ * see https://www.php.net/manual/en/function.opendir.php
*
* @param string $path
* @return resource
@@ -113,7 +113,7 @@ class Jail extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.is_dir.php
+ * see https://www.php.net/manual/en/function.is_dir.php
*
* @param string $path
* @return bool
@@ -123,7 +123,7 @@ class Jail extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.is_file.php
+ * see https://www.php.net/manual/en/function.is_file.php
*
* @param string $path
* @return bool
@@ -133,7 +133,7 @@ class Jail extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.stat.php
+ * see https://www.php.net/manual/en/function.stat.php
* only the following keys are required in the result: size and mtime
*
* @param string $path
@@ -144,7 +144,7 @@ class Jail extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.filetype.php
+ * see https://www.php.net/manual/en/function.filetype.php
*
* @param string $path
* @return bool
@@ -154,7 +154,7 @@ class Jail extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.filesize.php
+ * see https://www.php.net/manual/en/function.filesize.php
* The result for filesize when called on a folder is required to be 0
*
* @param string $path
@@ -226,7 +226,7 @@ class Jail extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.file_exists.php
+ * see https://www.php.net/manual/en/function.file_exists.php
*
* @param string $path
* @return bool
@@ -236,7 +236,7 @@ class Jail extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.filemtime.php
+ * see https://www.php.net/manual/en/function.filemtime.php
*
* @param string $path
* @return int
@@ -246,7 +246,7 @@ class Jail extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.file_get_contents.php
+ * see https://www.php.net/manual/en/function.file_get_contents.php
*
* @param string $path
* @return string
@@ -256,7 +256,7 @@ class Jail extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.file_put_contents.php
+ * see https://www.php.net/manual/en/function.file_put_contents.php
*
* @param string $path
* @param string $data
@@ -267,7 +267,7 @@ class Jail extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.unlink.php
+ * see https://www.php.net/manual/en/function.unlink.php
*
* @param string $path
* @return bool
@@ -277,7 +277,7 @@ class Jail extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.rename.php
+ * see https://www.php.net/manual/en/function.rename.php
*
* @param string $path1
* @param string $path2
@@ -288,7 +288,7 @@ class Jail extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.copy.php
+ * see https://www.php.net/manual/en/function.copy.php
*
* @param string $path1
* @param string $path2
@@ -299,7 +299,7 @@ class Jail extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.fopen.php
+ * see https://www.php.net/manual/en/function.fopen.php
*
* @param string $path
* @param string $mode
@@ -321,7 +321,7 @@ class Jail extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.hash.php
+ * see https://www.php.net/manual/en/function.hash.php
*
* @param string $type
* @param string $path
@@ -333,7 +333,7 @@ class Jail extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.free_space.php
+ * see https://www.php.net/manual/en/function.free_space.php
*
* @param string $path
* @return int
@@ -353,7 +353,7 @@ class Jail extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.touch.php
+ * see https://www.php.net/manual/en/function.touch.php
* If the backend does not support the operation, false should be returned
*
* @param string $path
diff --git a/lib/private/Files/Storage/Wrapper/Quota.php b/lib/private/Files/Storage/Wrapper/Quota.php
index 4b99af46b02..e1a72227501 100644
--- a/lib/private/Files/Storage/Wrapper/Quota.php
+++ b/lib/private/Files/Storage/Wrapper/Quota.php
@@ -115,7 +115,7 @@ class Quota extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.file_put_contents.php
+ * see https://www.php.net/manual/en/function.file_put_contents.php
*
* @param string $path
* @param string $data
@@ -131,7 +131,7 @@ class Quota extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.copy.php
+ * see https://www.php.net/manual/en/function.copy.php
*
* @param string $source
* @param string $target
@@ -147,7 +147,7 @@ class Quota extends Wrapper {
}
/**
- * see http://php.net/manual/en/function.fopen.php
+ * see https://www.php.net/manual/en/function.fopen.php
*
* @param string $path
* @param string $mode
diff --git a/lib/private/Files/Storage/Wrapper/Wrapper.php b/lib/private/Files/Storage/Wrapper/Wrapper.php
index 4584bebe076..e8d84012416 100644
--- a/lib/private/Files/Storage/Wrapper/Wrapper.php
+++ b/lib/private/Files/Storage/Wrapper/Wrapper.php
@@ -74,7 +74,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.mkdir.php
+ * see https://www.php.net/manual/en/function.mkdir.php
*
* @param string $path
* @return bool
@@ -84,7 +84,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.rmdir.php
+ * see https://www.php.net/manual/en/function.rmdir.php
*
* @param string $path
* @return bool
@@ -94,7 +94,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.opendir.php
+ * see https://www.php.net/manual/en/function.opendir.php
*
* @param string $path
* @return resource
@@ -104,7 +104,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.is_dir.php
+ * see https://www.php.net/manual/en/function.is_dir.php
*
* @param string $path
* @return bool
@@ -114,7 +114,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.is_file.php
+ * see https://www.php.net/manual/en/function.is_file.php
*
* @param string $path
* @return bool
@@ -124,7 +124,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.stat.php
+ * see https://www.php.net/manual/en/function.stat.php
* only the following keys are required in the result: size and mtime
*
* @param string $path
@@ -135,7 +135,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.filetype.php
+ * see https://www.php.net/manual/en/function.filetype.php
*
* @param string $path
* @return bool
@@ -145,7 +145,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.filesize.php
+ * see https://www.php.net/manual/en/function.filesize.php
* The result for filesize when called on a folder is required to be 0
*
* @param string $path
@@ -217,7 +217,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.file_exists.php
+ * see https://www.php.net/manual/en/function.file_exists.php
*
* @param string $path
* @return bool
@@ -227,7 +227,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.filemtime.php
+ * see https://www.php.net/manual/en/function.filemtime.php
*
* @param string $path
* @return int
@@ -237,7 +237,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.file_get_contents.php
+ * see https://www.php.net/manual/en/function.file_get_contents.php
*
* @param string $path
* @return string
@@ -247,7 +247,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.file_put_contents.php
+ * see https://www.php.net/manual/en/function.file_put_contents.php
*
* @param string $path
* @param string $data
@@ -258,7 +258,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.unlink.php
+ * see https://www.php.net/manual/en/function.unlink.php
*
* @param string $path
* @return bool
@@ -268,7 +268,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.rename.php
+ * see https://www.php.net/manual/en/function.rename.php
*
* @param string $path1
* @param string $path2
@@ -279,7 +279,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.copy.php
+ * see https://www.php.net/manual/en/function.copy.php
*
* @param string $path1
* @param string $path2
@@ -290,7 +290,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.fopen.php
+ * see https://www.php.net/manual/en/function.fopen.php
*
* @param string $path
* @param string $mode
@@ -312,7 +312,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.hash.php
+ * see https://www.php.net/manual/en/function.hash.php
*
* @param string $type
* @param string $path
@@ -324,7 +324,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.free_space.php
+ * see https://www.php.net/manual/en/function.free_space.php
*
* @param string $path
* @return int
@@ -344,7 +344,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.touch.php
+ * see https://www.php.net/manual/en/function.touch.php
* If the backend does not support the operation, false should be returned
*
* @param string $path
diff --git a/lib/private/Preview/HEIC.php b/lib/private/Preview/HEIC.php
index c2b9b541ad3..a21c6f48e2f 100644
--- a/lib/private/Preview/HEIC.php
+++ b/lib/private/Preview/HEIC.php
@@ -133,7 +133,7 @@ class HEIC extends ProviderV2 {
// A bigger image calls for some better resizing algorithm
// According to http://www.imagemagick.org/Usage/filter/#lanczos
// the catrom filter is almost identical to Lanczos2, but according
- // to http://php.net/manual/en/imagick.resizeimage.php it is
+ // to https://www.php.net/manual/en/imagick.resizeimage.php it is
// significantly faster
$bp->resizeImage($maxX, $maxY, \Imagick::FILTER_CATROM, 1, true);
}
diff --git a/lib/private/Share/SearchResultSorter.php b/lib/private/Share/SearchResultSorter.php
index 2151eb2acb6..3392a546d0f 100644
--- a/lib/private/Share/SearchResultSorter.php
+++ b/lib/private/Share/SearchResultSorter.php
@@ -51,7 +51,7 @@ class SearchResultSorter {
/**
* User and Group names matching the search term at the beginning shall appear
* on top of the share dialog. Following entries in alphabetical order.
- * Callback function for usort. http://php.net/usort
+ * Callback function for usort. https://www.php.net/usort
*/
public function sort($a, $b) {
if (!isset($a[$this->key]) || !isset($b[$this->key])) {
diff --git a/lib/private/legacy/OC_Helper.php b/lib/private/legacy/OC_Helper.php
index 77f0d922564..05a85386b4f 100644
--- a/lib/private/legacy/OC_Helper.php
+++ b/lib/private/legacy/OC_Helper.php
@@ -94,7 +94,7 @@ class OC_Helper {
*
* Makes 2kB to 2048.
*
- * Inspired by: http://www.php.net/manual/en/function.filesize.php#92418
+ * Inspired by: https://www.php.net/manual/en/function.filesize.php#92418
*/
public static function computerFileSize($str) {
$str = strtolower($str);
@@ -340,7 +340,7 @@ class OC_Helper {
* @return array
*
* Returns an array with all keys from input lowercased or uppercased. Numbered indices are left as is.
- * based on http://www.php.net/manual/en/function.array-change-key-case.php#107715
+ * based on https://www.php.net/manual/en/function.array-change-key-case.php#107715
*
*/
public static function mb_array_change_key_case($input, $case = MB_CASE_LOWER, $encoding = 'UTF-8') {
@@ -361,7 +361,7 @@ class OC_Helper {
*
* performs a search in a nested array
*
- * taken from http://www.php.net/manual/en/function.array-search.php#97645
+ * taken from https://www.php.net/manual/en/function.array-search.php#97645
*/
public static function recursiveArraySearch($haystack, $needle, $index = null) {
$aIt = new RecursiveArrayIterator($haystack);
diff --git a/lib/private/legacy/OC_Image.php b/lib/private/legacy/OC_Image.php
index 3e9812c99f2..5a516fb1da2 100644
--- a/lib/private/legacy/OC_Image.php
+++ b/lib/private/legacy/OC_Image.php
@@ -1275,7 +1275,7 @@ if (!function_exists('exif_imagetype')) {
/**
* Workaround if exif_imagetype does not exist
*
- * @link http://www.php.net/manual/en/function.exif-imagetype.php#80383
+ * @link https://www.php.net/manual/en/function.exif-imagetype.php#80383
* @param string $fileName
* @return string|boolean
*/
diff --git a/lib/public/DB/QueryBuilder/IQueryBuilder.php b/lib/public/DB/QueryBuilder/IQueryBuilder.php
index 3a9c8460439..a4a03e5a94b 100644
--- a/lib/public/DB/QueryBuilder/IQueryBuilder.php
+++ b/lib/public/DB/QueryBuilder/IQueryBuilder.php
@@ -785,7 +785,7 @@ interface IQueryBuilder {
* placeholder for you. An automatic placeholder will be of the name
* ':dcValue1', ':dcValue2' etc.
*
- * For more information see {@link http://php.net/pdostatement-bindparam}
+ * For more information see {@link https://www.php.net/pdostatement-bindparam}
*
* Example:
* <code>
diff --git a/lib/public/Files/Storage.php b/lib/public/Files/Storage.php
index d642512641d..fb56e7e3bfb 100644
--- a/lib/public/Files/Storage.php
+++ b/lib/public/Files/Storage.php
@@ -70,7 +70,7 @@ interface Storage extends IStorage {
public function getId();
/**
- * see http://php.net/manual/en/function.mkdir.php
+ * see https://www.php.net/manual/en/function.mkdir.php
* implementations need to implement a recursive mkdir
*
* @param string $path
@@ -80,7 +80,7 @@ interface Storage extends IStorage {
public function mkdir($path);
/**
- * see http://php.net/manual/en/function.rmdir.php
+ * see https://www.php.net/manual/en/function.rmdir.php
*
* @param string $path
* @return bool
@@ -89,7 +89,7 @@ interface Storage extends IStorage {
public function rmdir($path);
/**
- * see http://php.net/manual/en/function.opendir.php
+ * see https://www.php.net/manual/en/function.opendir.php
*
* @param string $path
* @return resource|false
@@ -98,7 +98,7 @@ interface Storage extends IStorage {
public function opendir($path);
/**
- * see http://php.net/manual/en/function.is-dir.php
+ * see https://www.php.net/manual/en/function.is-dir.php
*
* @param string $path
* @return bool
@@ -107,7 +107,7 @@ interface Storage extends IStorage {
public function is_dir($path);
/**
- * see http://php.net/manual/en/function.is-file.php
+ * see https://www.php.net/manual/en/function.is-file.php
*
* @param string $path
* @return bool
@@ -116,7 +116,7 @@ interface Storage extends IStorage {
public function is_file($path);
/**
- * see http://php.net/manual/en/function.stat.php
+ * see https://www.php.net/manual/en/function.stat.php
* only the following keys are required in the result: size and mtime
*
* @param string $path
@@ -126,7 +126,7 @@ interface Storage extends IStorage {
public function stat($path);
/**
- * see http://php.net/manual/en/function.filetype.php
+ * see https://www.php.net/manual/en/function.filetype.php
*
* @param string $path
* @return string|false
@@ -135,7 +135,7 @@ interface Storage extends IStorage {
public function filetype($path);
/**
- * see http://php.net/manual/en/function.filesize.php
+ * see https://www.php.net/manual/en/function.filesize.php
* The result for filesize when called on a folder is required to be 0
*
* @param string $path
@@ -200,7 +200,7 @@ interface Storage extends IStorage {
public function getPermissions($path);
/**
- * see http://php.net/manual/en/function.file_exists.php
+ * see https://www.php.net/manual/en/function.file_exists.php
*
* @param string $path
* @return bool
@@ -209,7 +209,7 @@ interface Storage extends IStorage {
public function file_exists($path);
/**
- * see http://php.net/manual/en/function.filemtime.php
+ * see https://www.php.net/manual/en/function.filemtime.php
*
* @param string $path
* @return int|false
@@ -218,7 +218,7 @@ interface Storage extends IStorage {
public function filemtime($path);
/**
- * see http://php.net/manual/en/function.file_get_contents.php
+ * see https://www.php.net/manual/en/function.file_get_contents.php
*
* @param string $path
* @return string|false
@@ -227,7 +227,7 @@ interface Storage extends IStorage {
public function file_get_contents($path);
/**
- * see http://php.net/manual/en/function.file_put_contents.php
+ * see https://www.php.net/manual/en/function.file_put_contents.php
*
* @param string $path
* @param string $data
@@ -237,7 +237,7 @@ interface Storage extends IStorage {
public function file_put_contents($path, $data);
/**
- * see http://php.net/manual/en/function.unlink.php
+ * see https://www.php.net/manual/en/function.unlink.php
*
* @param string $path
* @return bool
@@ -246,7 +246,7 @@ interface Storage extends IStorage {
public function unlink($path);
/**
- * see http://php.net/manual/en/function.rename.php
+ * see https://www.php.net/manual/en/function.rename.php
*
* @param string $path1
* @param string $path2
@@ -256,7 +256,7 @@ interface Storage extends IStorage {
public function rename($path1, $path2);
/**
- * see http://php.net/manual/en/function.copy.php
+ * see https://www.php.net/manual/en/function.copy.php
*
* @param string $path1
* @param string $path2
@@ -266,7 +266,7 @@ interface Storage extends IStorage {
public function copy($path1, $path2);
/**
- * see http://php.net/manual/en/function.fopen.php
+ * see https://www.php.net/manual/en/function.fopen.php
*
* @param string $path
* @param string $mode
@@ -286,7 +286,7 @@ interface Storage extends IStorage {
public function getMimeType($path);
/**
- * see http://php.net/manual/en/function.hash-file.php
+ * see https://www.php.net/manual/en/function.hash-file.php
*
* @param string $type
* @param string $path
@@ -297,7 +297,7 @@ interface Storage extends IStorage {
public function hash($type, $path, $raw = false);
/**
- * see http://php.net/manual/en/function.free_space.php
+ * see https://www.php.net/manual/en/function.free_space.php
*
* @param string $path
* @return int|false
@@ -315,7 +315,7 @@ interface Storage extends IStorage {
public function search($query);
/**
- * see http://php.net/manual/en/function.touch.php
+ * see https://www.php.net/manual/en/function.touch.php
* If the backend does not support the operation, false should be returned
*
* @param string $path
diff --git a/lib/public/Files/Storage/IStorage.php b/lib/public/Files/Storage/IStorage.php
index f5073d1ad73..f8877895747 100644
--- a/lib/public/Files/Storage/IStorage.php
+++ b/lib/public/Files/Storage/IStorage.php
@@ -66,7 +66,7 @@ interface IStorage {
public function getId();
/**
- * see http://php.net/manual/en/function.mkdir.php
+ * see https://www.php.net/manual/en/function.mkdir.php
* implementations need to implement a recursive mkdir
*
* @param string $path
@@ -76,7 +76,7 @@ interface IStorage {
public function mkdir($path);
/**
- * see http://php.net/manual/en/function.rmdir.php
+ * see https://www.php.net/manual/en/function.rmdir.php
*
* @param string $path
* @return bool
@@ -85,7 +85,7 @@ interface IStorage {
public function rmdir($path);
/**
- * see http://php.net/manual/en/function.opendir.php
+ * see https://www.php.net/manual/en/function.opendir.php
*
* @param string $path
* @return resource|false
@@ -94,7 +94,7 @@ interface IStorage {
public function opendir($path);
/**
- * see http://php.net/manual/en/function.is-dir.php
+ * see https://www.php.net/manual/en/function.is-dir.php
*
* @param string $path
* @return bool
@@ -103,7 +103,7 @@ interface IStorage {
public function is_dir($path);
/**
- * see http://php.net/manual/en/function.is-file.php
+ * see https://www.php.net/manual/en/function.is-file.php
*
* @param string $path
* @return bool
@@ -112,7 +112,7 @@ interface IStorage {
public function is_file($path);
/**
- * see http://php.net/manual/en/function.stat.php
+ * see https://www.php.net/manual/en/function.stat.php
* only the following keys are required in the result: size and mtime
*
* @param string $path
@@ -122,7 +122,7 @@ interface IStorage {
public function stat($path);
/**
- * see http://php.net/manual/en/function.filetype.php
+ * see https://www.php.net/manual/en/function.filetype.php
*
* @param string $path
* @return string|false
@@ -131,7 +131,7 @@ interface IStorage {
public function filetype($path);
/**
- * see http://php.net/manual/en/function.filesize.php
+ * see https://www.php.net/manual/en/function.filesize.php
* The result for filesize when called on a folder is required to be 0
*
* @param string $path
@@ -196,7 +196,7 @@ interface IStorage {
public function getPermissions($path);
/**
- * see http://php.net/manual/en/function.file_exists.php
+ * see https://www.php.net/manual/en/function.file_exists.php
*
* @param string $path
* @return bool
@@ -205,7 +205,7 @@ interface IStorage {
public function file_exists($path);
/**
- * see http://php.net/manual/en/function.filemtime.php
+ * see https://www.php.net/manual/en/function.filemtime.php
*
* @param string $path
* @return int|false
@@ -214,7 +214,7 @@ interface IStorage {
public function filemtime($path);
/**
- * see http://php.net/manual/en/function.file_get_contents.php
+ * see https://www.php.net/manual/en/function.file_get_contents.php
*
* @param string $path
* @return string|false
@@ -223,7 +223,7 @@ interface IStorage {
public function file_get_contents($path);
/**
- * see http://php.net/manual/en/function.file_put_contents.php
+ * see https://www.php.net/manual/en/function.file_put_contents.php
*
* @param string $path
* @param string $data
@@ -233,7 +233,7 @@ interface IStorage {
public function file_put_contents($path, $data);
/**
- * see http://php.net/manual/en/function.unlink.php
+ * see https://www.php.net/manual/en/function.unlink.php
*
* @param string $path
* @return bool
@@ -242,7 +242,7 @@ interface IStorage {
public function unlink($path);
/**
- * see http://php.net/manual/en/function.rename.php
+ * see https://www.php.net/manual/en/function.rename.php
*
* @param string $path1
* @param string $path2
@@ -252,7 +252,7 @@ interface IStorage {
public function rename($path1, $path2);
/**
- * see http://php.net/manual/en/function.copy.php
+ * see https://www.php.net/manual/en/function.copy.php
*
* @param string $path1
* @param string $path2
@@ -262,7 +262,7 @@ interface IStorage {
public function copy($path1, $path2);
/**
- * see http://php.net/manual/en/function.fopen.php
+ * see https://www.php.net/manual/en/function.fopen.php
*
* @param string $path
* @param string $mode
@@ -282,7 +282,7 @@ interface IStorage {
public function getMimeType($path);
/**
- * see http://php.net/manual/en/function.hash-file.php
+ * see https://www.php.net/manual/en/function.hash-file.php
*
* @param string $type
* @param string $path
@@ -293,7 +293,7 @@ interface IStorage {
public function hash($type, $path, $raw = false);
/**
- * see http://php.net/manual/en/function.free_space.php
+ * see https://www.php.net/manual/en/function.free_space.php
*
* @param string $path
* @return int|false
@@ -302,7 +302,7 @@ interface IStorage {
public function free_space($path);
/**
- * see http://php.net/manual/en/function.touch.php
+ * see https://www.php.net/manual/en/function.touch.php
* If the backend does not support the operation, false should be returned
*
* @param string $path
diff --git a/lib/public/Util.php b/lib/public/Util.php
index 72f061afb45..3e41cfedae8 100644
--- a/lib/public/Util.php
+++ b/lib/public/Util.php
@@ -315,7 +315,7 @@ class Util {
* @param string $str file size in a fancy format
* @return float a file size in bytes
*
- * Inspired by: http://www.php.net/manual/en/function.filesize.php#92418
+ * Inspired by: https://www.php.net/manual/en/function.filesize.php#92418
* @since 4.0.0
*/
public static function computerFileSize($str) {