From 890dcf4a42f7182cec81ae0928b86a8c168794d7 Mon Sep 17 00:00:00 2001 From: "Maxim.Kolmakov" Date: Tue, 16 Oct 2018 11:28:37 +0200 Subject: [PATCH] @link and @see tags should use https --- Core/Core.php | 4 +- Core/Core_c.php | 10 +- Reflection/Reflection.php | 2 +- SPL/SPL.php | 16 +- Zend OPcache/OPcache.php | 6 +- apache/apache.php | 2 +- cubrid/cubrid.php | 8 +- curl/curl.php | 50 +-- date/date.php | 2 +- date/date_c.php | 78 ++-- dom/dom_c.php | 8 +- event/event.php | 148 ++++---- igbinary/igbinary.php | 8 +- imagick/imagick.php | 10 +- inotify/inotify.php | 2 +- intl/intl.php | 618 ++++++++++++++++---------------- mbstring/mbstring.php | 2 +- mcrypt/mcrypt.php | 8 +- memcache/memcache.php | 6 +- memcached/memcached.php | 2 +- mongo/mongo.php | 272 +++++++------- mongodb/mongodb.php | 102 +++--- mysql_xdevapi/mysql_xdevapi.php | 42 +-- mysqli/mysqli.php | 32 +- openssl/openssl.php | 2 +- password/password.php | 24 +- pdflib/PDFlib.php | 12 +- pthreads/pthreads.php | 110 +++--- radius/radius.php | 20 +- redis/RedisCluster.php | 90 ++--- session/session.php | 2 +- snmp/snmp.php | 16 +- sockets/sockets.php | 4 +- sodium/sodium.php | 8 +- solr/Documents/SolrDocument.php | 2 +- solr/Queries/SolrQuery.php | 2 +- sqlsrv/sqlsrv.php | 72 ++-- standard/_types.php | 2 +- standard/standard_0.php | 40 +-- standard/standard_8.php | 8 +- standard/standard_9.php | 4 +- superglobals/_superglobals.php | 30 +- tests/StubParser.php | 15 +- tests/TestStubs.php | 24 +- uopz/uopz.php | 58 +-- wincache/wincache.php | 46 +-- xhprof/xhprof.php | 2 +- yaf/yaf.php | 490 ++++++++++++------------- yaf/yaf_namespace.php | 490 ++++++++++++------------- yar/yar.php | 26 +- zip/zip.php | 10 +- zmq/zmq.php | 80 ++--- 52 files changed, 1580 insertions(+), 1547 deletions(-) diff --git a/Core/Core.php b/Core/Core.php index 3afba757..af61ab8f 100644 --- a/Core/Core.php +++ b/Core/Core.php @@ -405,7 +405,7 @@ function property_exists ($class, $property) {} * @param string $traitname Name of the trait to check * @param bool $autoload [optional] Whether to autoload if not already loaded. * @return boolean Returns TRUE if trait exists, FALSE if not, NULL in case of an error. - * @link http://www.php.net/manual/en/function.trait-exists.php + * @link https://secure.php.net/manual/en/function.trait-exists.php * @since 5.4.0 */ function trait_exists($traitname, $autoload ) {} @@ -709,7 +709,7 @@ function get_declared_interfaces () {} /** * Returns an array of all declared traits * @return array with names of all declared traits in values. Returns NULL in case of a failure. - * @link http://www.php.net/manual/en/function.get-declared-traits.php + * @link https://secure.php.net/manual/en/function.get-declared-traits.php * @see class_uses() * @since 5.4.0 */ diff --git a/Core/Core_c.php b/Core/Core_c.php index ad13a81f..8f70d6ae 100644 --- a/Core/Core_c.php +++ b/Core/Core_c.php @@ -555,14 +555,14 @@ class ErrorException extends Exception { * Starting with PHP 5.4, this class has methods that allow further control of the anonymous function after it has been created. *

Besides the methods listed here, this class also has an __invoke method. * This is for consistency with other classes that implement calling magic, as this method is not used for calling the function. - * @link http://www.php.net/manual/en/class.closure.php + * @link https://secure.php.net/manual/en/class.closure.php */ final class Closure { /** * This method exists only to disallow instantiation of the Closure class. * Objects of this class are created in the fashion described on the anonymous functions page. - * @link http://www.php.net/manual/en/closure.construct.php + * @link https://secure.php.net/manual/en/closure.construct.php */ private function __construct() { } @@ -571,13 +571,13 @@ final class Closure { * as this method is not used for calling the function. * @param mixed $_ [optional] * @return mixed - * @link http://www.php.net/manual/en/class.closure.php + * @link https://secure.php.net/manual/en/class.closure.php */ public function __invoke(...$_) { } /** * Duplicates the closure with a new bound object and class scope - * @link http://www.php.net/manual/en/closure.bindto.php + * @link https://secure.php.net/manual/en/closure.bindto.php * @param object $newthis The object to which the given anonymous function should be bound, or NULL for the closure to be unbound. * @param mixed $newscope The class scope to which associate the closure is to be associated, or 'static' to keep the current one. * If an object is given, the type of the object will be used instead. @@ -590,7 +590,7 @@ final class Closure { * This method is a static version of Closure::bindTo(). * See the documentation of that method for more information. * @static - * @link http://www.php.net/manual/en/closure.bind.php + * @link https://secure.php.net/manual/en/closure.bind.php * @param Closure $closure The anonymous functions to bind. * @param object $newthis The object to which the given anonymous function should be bound, or NULL for the closure to be unbound. * @param mixed $newscope The class scope to which associate the closure is to be associated, or 'static' to keep the current one. diff --git a/Reflection/Reflection.php b/Reflection/Reflection.php index 8b108b75..4ead9131 100644 --- a/Reflection/Reflection.php +++ b/Reflection/Reflection.php @@ -1750,7 +1750,7 @@ class ReflectionExtension implements Reflector { } /** - * @link http://www.php.net/manual/en/class.reflectionzendextension.php + * @link https://secure.php.net/manual/en/class.reflectionzendextension.php * @since 5.4.0 */ class ReflectionZendExtension implements Reflector { diff --git a/SPL/SPL.php b/SPL/SPL.php index 361d1fed..3396cd2a 100644 --- a/SPL/SPL.php +++ b/SPL/SPL.php @@ -106,7 +106,7 @@ class UnexpectedValueException extends RuntimeException { /** * The EmptyIterator class for an empty iterator. - * @link https://www.php.net/manual/en/class.emptyiterator.php + * @link https://https://secure.php.net/manual/en/class.emptyiterator.php */ class EmptyIterator implements Iterator { @@ -154,7 +154,7 @@ class EmptyIterator implements Iterator { /** * Filtered iterator using the callback to determine which items are accepted or rejected. - * @link https://www.php.net/manual/en/class.callbackfilteriterator.php + * @link https://https://secure.php.net/manual/en/class.callbackfilteriterator.php * @since 5.4.0 */ class CallbackFilterIterator extends FilterIterator { @@ -166,14 +166,14 @@ class CallbackFilterIterator extends FilterIterator { * May be any valid callable value. * The callback should accept up to three arguments: the current item, the current key and the iterator, respectively. * function my_callback($current, $key, $iterator) - * @link https://www.php.net/manual/en/callbackfilteriterator.construct.php + * @link https://https://secure.php.net/manual/en/callbackfilteriterator.construct.php */ function __construct(Iterator $iterator , callable $callback) { } /** * This method calls the callback with the current value, current key and the inner iterator. * The callback is expected to return TRUE if the current item is to be accepted, or FALSE otherwise. - * @link https://www.php.net/manual/en/callbackfilteriterator.accept.php + * @link https://https://secure.php.net/manual/en/callbackfilteriterator.accept.php * @return bool true if the current element is acceptable, otherwise false. */ public function accept() { } @@ -182,7 +182,7 @@ class CallbackFilterIterator extends FilterIterator { /** * (PHP 5 >= 5.4.0)
* RecursiveCallbackFilterIterator from a RecursiveIterator - * @link https://www.php.net/manual/en/class.recursivecallbackfilteriterator.php + * @link https://https://secure.php.net/manual/en/class.recursivecallbackfilteriterator.php */ class RecursiveCallbackFilterIterator extends CallbackFilterIterator implements RecursiveIterator { @@ -191,7 +191,7 @@ class RecursiveCallbackFilterIterator extends CallbackFilterIterator implements * @param RecursiveIterator $iterator The recursive iterator to be filtered. * @param string $callback The callback, which should return TRUE to accept the current item or FALSE otherwise. See Examples. * May be any valid callable value. - * @link https://www.php.net/manual/en/recursivecallbackfilteriterator.getchildren.php + * @link https://https://secure.php.net/manual/en/recursivecallbackfilteriterator.getchildren.php */ function __construct( RecursiveIterator $iterator, $callback ) { } @@ -204,7 +204,7 @@ class RecursiveCallbackFilterIterator extends CallbackFilterIterator implements /** * Returns an iterator for the current entry. - * @link https://www.php.net/manual/en/recursivecallbackfilteriterator.haschildren.php + * @link https://https://secure.php.net/manual/en/recursivecallbackfilteriterator.haschildren.php * @return RecursiveCallbackFilterIterator containing the children. */ public function getChildren() { } @@ -1306,7 +1306,7 @@ class RegexIterator extends FilterIterator { /** * Returns current regular expression - * @link https://www.php.net/manual/en/regexiterator.getregex.php + * @link https://https://secure.php.net/manual/en/regexiterator.getregex.php * @return string * @since 5.4.0 */ diff --git a/Zend OPcache/OPcache.php b/Zend OPcache/OPcache.php index e6bf2d27..00326080 100644 --- a/Zend OPcache/OPcache.php +++ b/Zend OPcache/OPcache.php @@ -3,7 +3,7 @@ /** * (PHP 5 >= 5.5.5, PECL ZendOpcache >= 7.0.2 )
* Compiles and caches a PHP script without executing it - * @link http://www.php.net/manual/en/function.opcache-compile-file.php + * @link https://secure.php.net/manual/en/function.opcache-compile-file.php * @param string $file The path to the PHP script to be compiled. * @return boolean * Returns TRUE if the opcode cache for script was @@ -15,7 +15,7 @@ function opcache_compile_file($file) { } /** * (PHP 5 >= 5.5.0, PECL ZendOpcache >= 7.0.0 )
* Invalidates a cached script - * @link http://www.php.net/manual/en/function.opcache-invalidate.php + * @link https://secure.php.net/manual/en/function.opcache-invalidate.php * @param string $script

The path to the script being invalidated.

* @param bool $force [optional]

If set to TRUE, the script will be invalidated regardless of whether invalidation is necessary.

* @return boolean @@ -28,7 +28,7 @@ function opcache_invalidate($script, $force = FALSE) { } /** * (PHP 5 >= 5.5.0, PECL ZendOpcache >= 7.0.0 )
* Resets the contents of the opcode cache - * @link http://www.php.net/manual/en/function.opcache-reset.php + * @link https://secure.php.net/manual/en/function.opcache-reset.php * @return boolean Returns TRUE if the opcode cache was reset, or FALSE if the opcode cache is disabled. */ function opcache_reset() { } diff --git a/apache/apache.php b/apache/apache.php index 9c16e4c1..f019788a 100644 --- a/apache/apache.php +++ b/apache/apache.php @@ -138,7 +138,7 @@ function getallheaders () {} * virtual() is an Apache-specific function which is similar to in mod_include. It performs an Apache sub-request. It is useful for including CGI scripts or .shtml files, or anything else that you would parse through Apache. Note that for a CGI script, the script must generate valid CGI headers. At the minimum that means it must generate a Content-Type header. * To run the sub-request, all buffers are terminated and flushed to the browser, pending headers are sent too. * This function is supported when PHP is installed as an Apache module or by the NSAPI server module in Netscape/iPlanet/SunONE webservers. - * @link hhttp://php.net/manual/en/function.virtual.php + * @link https://secure.php.net/manual/en/function.virtual.php * @param string $filename

* The file that the virtual command will be performed on. *

diff --git a/cubrid/cubrid.php b/cubrid/cubrid.php index 19fc4550..56327832 100644 --- a/cubrid/cubrid.php +++ b/cubrid/cubrid.php @@ -102,7 +102,7 @@ function cubrid_pconnect ($host, $port, $dbname, $userid = 'PUBLIC', $passwd = ' /** * (PHP 5, CUBRID >= 8.3.1)
* Open a persistent connection to CUBRID server - * @link http://www.php.net/manual/en/function.cubrid-pconnect-with-url.php + * @link https://secure.php.net/manual/en/function.cubrid-pconnect-with-url.php * @param string $conn_url

* A character string that contains server connection information.
* Syntax: 'CUBRID:>host<:>port<:>dbname<:>username<:>password<:?>params<'.
@@ -968,7 +968,7 @@ function cubrid_get_server_info ($conn_identifier) {} /** * (PHP 5, CUBRID >= 8.3.0)
* Returns the CUBRID database parameters - * @link http://www.php.net/manual/en/function.cubrid-get-db-parameter.php + * @link https://secure.php.net/manual/en/function.cubrid-get-db-parameter.php * @param resource $conn_identifier

* Connection identifier. *

@@ -996,7 +996,7 @@ function cubrid_get_autocommit ($conn_identifier) {} /** * (PHP 5, CUBRID >= 8.3.0)
* Return the current CUBRID connection charset - * @link http://www.php.net/manual/en/function.cubrid-get-charset.php + * @link https://secure.php.net/manual/en/function.cubrid-get-charset.php * @param resource $conn_identifier

* Connection identifier. *

@@ -1342,7 +1342,7 @@ function cubrid_lob_size ($lob_identifier) {} * (PHP 5, CUBRID >= 8.4.1)
* Bind a lob object or a string as a lob object to a * prepared statement as parameters. - * @link http://www.php.net/manual/en/function.cubrid-lob2-bind.php + * @link https://secure.php.net/manual/en/function.cubrid-lob2-bind.php * @param resource $req_identifier

* Reqeust identifier. *

diff --git a/curl/curl.php b/curl/curl.php index 5ac3187f..a59846e6 100644 --- a/curl/curl.php +++ b/curl/curl.php @@ -7,7 +7,7 @@ class CURLFile { /** * Create a CURLFile object - * @link http://www.php.net/manual/en/curlfile.construct.php + * @link https://secure.php.net/manual/en/curlfile.construct.php * @param string $filename

Path to the file which will be uploaded.

* @param string $mimetype [optional]

Mimetype of the file.

* @param string $postname [optional]

Name of the file.

@@ -18,7 +18,7 @@ class CURLFile { /** * Get file name - * @link http://www.php.net/manual/en/curlfile.getfilename.php + * @link https://secure.php.net/manual/en/curlfile.getfilename.php * @return string Returns file name. * @since 5.5.0 */ @@ -27,7 +27,7 @@ class CURLFile { /** * Get MIME type - * @link http://www.php.net/manual/en/curlfile.getmimetype.php + * @link https://secure.php.net/manual/en/curlfile.getmimetype.php * @return string Returns MIME type. * @since 5.5.0 */ @@ -36,7 +36,7 @@ class CURLFile { /** * Get file name for POST - * @link http://www.php.net/manual/en/curlfile.getpostfilename.php + * @link https://secure.php.net/manual/en/curlfile.getpostfilename.php * @return string Returns file name for POST. * @since 5.5.0 */ @@ -45,7 +45,7 @@ class CURLFile { /** * Set MIME type - * @link http://www.php.net/manual/en/curlfile.setmimetype.php + * @link https://secure.php.net/manual/en/curlfile.setmimetype.php * @param string $mime * @since 5.5.0 */ @@ -54,7 +54,7 @@ class CURLFile { /** * Set file name for POST - * http://www.php.net/manual/en/curlfile.setpostfilename.php + * https://secure.php.net/manual/en/curlfile.setpostfilename.php * @param string $postname * @since 5.5.0 */ @@ -62,7 +62,7 @@ class CURLFile { } /** - * @link http://www.php.net/manual/en/curlfile.wakeup.php + * @link https://secure.php.net/manual/en/curlfile.wakeup.php * Unserialization handler * @since 5.5.0 */ @@ -2132,9 +2132,9 @@ function curl_setopt_array ($ch, array $options) {} /** * (PHP 5 >=5.5.0)
* Close a cURL share handle - * @link http://www.php.net/manual/en/function.curl-share-close.php + * @link https://secure.php.net/manual/en/function.curl-share-close.php * @param resource $sh

- * A cURL share handle returned by {@link http://www.php.net/manual/en/function.curl-share-init.php curl_share_init()} + * A cURL share handle returned by {@link https://secure.php.net/manual/en/function.curl-share-init.php curl_share_init()} *

* @return void * @since 5.5.0 @@ -2144,7 +2144,7 @@ function curl_share_close ($sh) {} /** * (PHP 5 >=5.5.0)
* Initialize a cURL share handle - * @link http://www.php.net/manual/en/function.curl-share-init.php + * @link https://secure.php.net/manual/en/function.curl-share-init.php * @return resource Returns resource of type "cURL Share Handle". * @since 5.5.0 */ @@ -2153,9 +2153,9 @@ function curl_share_init () {} /** * (PHP 5 >=5.5.0)
* Set an option for a cURL share handle. - * @link http://www.php.net/manual/en/function.curl-share-setopt.php + * @link https://secure.php.net/manual/en/function.curl-share-setopt.php * @param resource $sh

- * A cURL share handle returned by {@link http://www.php.net/manual/en/function.curl-share-init.php curl_share_init()}. + * A cURL share handle returned by {@link https://secure.php.net/manual/en/function.curl-share-init.php curl_share_init()}. *

* @param int $option * @@ -2234,7 +2234,7 @@ function curl_share_setopt ($sh, $option, $value ) {} /** * (PHP 5 >=5.5.0)
* Return string describing the given error code - * @link http://www.php.net/manual/en/function.curl-strerror.php + * @link https://secure.php.net/manual/en/function.curl-strerror.php * @param int $errornum

* One of the {@link http://curl.haxx.se/libcurl/c/libcurl-errors.html  cURL error codes} constants. *

@@ -2246,9 +2246,9 @@ function curl_strerror ($errornum ) {} /** * (PHP 5 >=5.5.0)
* Decodes the given URL encoded string - * @link http://www.php.net/manual/en/function.curl-unescape.php + * @link https://secure.php.net/manual/en/function.curl-unescape.php * @param resource $ch

A cURL handle returned by - * {@link http://www.php.net/manual/en/function.curl-init.php curl_init()}.

+ * {@link https://secure.php.net/manual/en/function.curl-init.php curl_init()}.

* @param string $str

* The URL encoded string to be decoded. *

@@ -2326,10 +2326,10 @@ function curl_errno ($ch) {} /** * URL encodes the given string - * @link http://www.php.net/manual/en/function.curl-escape.php + * @link https://secure.php.net/manual/en/function.curl-escape.php * @param resource $ch

* A cURL handle returned by - * {@link http://www.php.net/manual/en/function.curl-init.php curl_init()}.

+ * {@link https://secure.php.net/manual/en/function.curl-init.php curl_init()}.

* @param string $str

* The string to be encoded.

* @return string|boolean Returns escaped string or FALSE on failure. @@ -2340,12 +2340,12 @@ function curl_escape($ch, $str) {} /** * (PHP 5 >= 5.5.0)
* Create a CURLFile object - * @link http://www.php.net/manual/en/curlfile.construct.php + * @link https://secure.php.net/manual/en/curlfile.construct.php * @param string $filename

Path to the file which will be uploaded.

* @param string $mimetype [optional]

Mimetype of the file.

* @param string $postname [optional]

Name of the file.

* @return CURLFile - * Returns a {@link http://www.php.net/manual/en/class.curlfile.php CURLFile} object. + * Returns a {@link https://secure.php.net/manual/en/class.curlfile.php CURLFile} object. * @since 5.5.0 */ function curl_file_create($filename, $mimetype, $postname) {} @@ -2405,7 +2405,7 @@ function curl_multi_select ($mh, $timeout = null) {} /** * (PHP 5 >=5.5.0)
* Set an option for the cURL multi handle - * @link www.php.net/manual/en/function.curl-multi-setopt.php + * @link https://secure.php.net/manual/en/function.curl-multi-setopt.php * @param resource $mh * @param int $option

* One of the CURLMOPT_* constants. @@ -2458,7 +2458,7 @@ function curl_multi_setopt ($mh, $option, $value) {} /** * (PHP 5 >=5.5.0)
* Return string describing error code - * @link http://www.php.net/manual/en/function.curl-multi-strerror.php + * @link https://secure.php.net/manual/en/function.curl-multi-strerror.php * @param int $errornum

* One of the {@link http://curl.haxx.se/libcurl/c/libcurl-errors.html CURLM error codes} constants. *

@@ -2470,9 +2470,9 @@ function curl_multi_strerror ($errornum) {} /** * (PHP 5 >=5.5.0)
* Pause and unpause a connection - * @link http://www.php.net/manual/en/function.curl-pause.php + * @link https://secure.php.net/manual/en/function.curl-pause.php * @param resource $ch - *

A cURL handle returned by {@link http://www.php.net/manual/en/function.curl-init.php curl_init()}.

+ *

A cURL handle returned by {@link https://secure.php.net/manual/en/function.curl-init.php curl_init()}.

* @param int $bitmask

One of CURLPAUSE_* constants.

* @return int Returns an error code (CURLE_OK for no error). * @since 5.5.0 @@ -2482,9 +2482,9 @@ function curl_pause ($ch, $bitmask ) {} /** * (PHP 5 >=5.5.0)
* Reset all options of a libcurl session handle - * @link www.php.net/manual/en/function.curl-reset.php + * @link https://secure.php.net/manual/en/function.curl-reset.php * @param resource $ch

A cURL handle returned by - * {@link www.php.net/manual/en/function.curl-init.php curl_init()}.

+ * {@link https://secure.php.net/manual/en/function.curl-init.php curl_init()}.

* @return void * @since 5.5.0 */ diff --git a/date/date.php b/date/date.php index a623dd98..18370977 100644 --- a/date/date.php +++ b/date/date.php @@ -1009,7 +1009,7 @@ function date_format ($object, $format) {} * {@see DateTime::modify} * @link https://php.net/manual/en/function.date-modify.php * @param DateTime $object A DateTime object returned by date_create(). The function modifies this object. - * @param string $modify A date/time string. Valid formats are explained in {@link http://www.php.net/manual/en/datetime.formats.php Date and Time Formats}. + * @param string $modify A date/time string. Valid formats are explained in {@link https://secure.php.net/manual/en/datetime.formats.php Date and Time Formats}. * @return DateTime|false Returns the DateTime object for method chaining or FALSE on failure. * @since 5.2.0 */ diff --git a/date/date_c.php b/date/date_c.php index df538424..3c604e98 100644 --- a/date/date_c.php +++ b/date/date_c.php @@ -19,11 +19,11 @@ interface DateTimeInterface { /** * (PHP 5 >=5.5.0)
* Returns the difference between two DateTime objects - * @link http://www.php.net/manual/en/datetime.diff.php + * @link https://secure.php.net/manual/en/datetime.diff.php * @param DateTimeInterface $datetime2

The date to compare to.

* @param bool $absolute

Should the interval be forced to be positive?

* @return DateInterval - * The http://www.php.net/manual/en/class.dateinterval.php DateInterval} object representing the + * The https://secure.php.net/manual/en/class.dateinterval.php DateInterval} object representing the * difference between the two dates or FALSE on failure. * */ @@ -32,9 +32,9 @@ interface DateTimeInterface { /** * (PHP 5 >=5.5.0)
* Returns date formatted according to given format - * @link http://www.php.net/manual/en/datetime.format.php + * @link https://secure.php.net/manual/en/datetime.format.php * @param string $format

- * Format accepted by {@link http://www.php.net/manual/en/function.date.php date()}. + * Format accepted by {@link https://secure.php.net/manual/en/function.date.php date()}. *

* @return string * Returns the formatted date string on success or FALSE on failure. @@ -63,9 +63,9 @@ interface DateTimeInterface { /** * (PHP 5 >=5.5.0)
* Return time zone relative to given DateTime - * @link http://www.php.net/manual/en/datetime.gettimezone.php + * @link https://secure.php.net/manual/en/datetime.gettimezone.php * @return DateTimeZone - * Returns a {@link http://www.php.net/manual/en/class.datetimezone.php DateTimeZone} object on success + * Returns a {@link https://secure.php.net/manual/en/class.datetimezone.php DateTimeZone} object on success * or FALSE on failure. */ public function getTimezone(); @@ -73,7 +73,7 @@ interface DateTimeInterface { /** * (PHP 5 >=5.5.0)
* The __wakeup handler - * @link http://www.php.net/manual/en/datetime.wakeup.php + * @link https://secure.php.net/manual/en/datetime.wakeup.php * @return void Initializes a DateTime object. */ public function __wakeup(); @@ -83,15 +83,15 @@ class DateTimeImmutable implements DateTimeInterface { /* Methods */ /** * (PHP 5 >=5.5.0)
- * @link http://www.php.net/manual/en/datetimeimmutable.construct.php + * @link https://secure.php.net/manual/en/datetimeimmutable.construct.php * @param string $time [optional] - *

A date/time string. Valid formats are explained in {@link www.php.net/manual/en/datetime.formats.php Date and Time Formats}.

+ *

A date/time string. Valid formats are explained in {@link https://secure.php.net/manual/en/datetime.formats.php Date and Time Formats}.

*

* Enter NULL here to obtain the current time when using * the $timezone parameter. *

* @param DateTimeZone $timezone [optional]

- * A {@link http://www.php.net/manual/en/class.datetimezone.php DateTimeZone} object representing the + * A {@link https://secure.php.net/manual/en/class.datetimezone.php DateTimeZone} object representing the * timezone of $time. *

*

@@ -122,7 +122,7 @@ class DateTimeImmutable implements DateTimeInterface { /** * (PHP 5 >=5.5.0)
* Returns new DateTimeImmutable object formatted according to the specified format - * @link http://www.php.net/manual/en/datetimeimmutable.createfromformat.php + * @link https://secure.php.net/manual/en/datetimeimmutable.createfromformat.php * @param string $format * @param string $time * @param DateTimeZone $timezone [optional] @@ -133,7 +133,7 @@ class DateTimeImmutable implements DateTimeInterface { /** * (PHP 5 >=5.6.0)
* Returns new DateTimeImmutable object encapsulating the given DateTime object - * @link http://www.php.net/manual/en/datetimeimmutable.createfrommutable.php + * @link https://secure.php.net/manual/en/datetimeimmutable.createfrommutable.php * @param DateTime $dateTime The mutable DateTime object that you want to convert to an immutable version. This object is not modified, but instead a new DateTimeImmutable object is created containing the same date time and timezone information. * @return DateTimeImmutable returns a new DateTimeImmutable instance. */ @@ -142,7 +142,7 @@ class DateTimeImmutable implements DateTimeInterface { /** * (PHP 5 >=5.5.0)
* Returns the warnings and errors - * @link http://www.php.net/manual/en/datetimeimmutable.getlasterrors.php + * @link https://secure.php.net/manual/en/datetimeimmutable.getlasterrors.php * @return array Returns array containing info about warnings and errors. */ public static function getLastErrors() { } @@ -150,11 +150,11 @@ class DateTimeImmutable implements DateTimeInterface { /** * (PHP 5 >=5.5.0)
* Alters the timestamp - * @link http://www.php.net/manual/en/datetimeimmutable.modify.php + * @link https://secure.php.net/manual/en/datetimeimmutable.modify.php * @param string $modify

A date/time string. Valid formats are explained in - * {@link http://www.php.net/manual/en/datetime.formats.php Date and Time Formats}.

+ * {@link https://secure.php.net/manual/en/datetime.formats.php Date and Time Formats}.

* @return static - * Returns the {@link http://www.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. + * Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. */ public function modify($modify) { } @@ -162,22 +162,22 @@ class DateTimeImmutable implements DateTimeInterface { /** * (PHP 5 >=5.5.0)
* The __set_state handler - * @link http://www.php.net/manual/en/datetimeimmutable.set-state.php + * @link https://secure.php.net/manual/en/datetimeimmutable.set-state.php * @param array $array

Initialization array.

* @return DateTimeImmutable - * Returns a new instance of a {@link http://www.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object. + * Returns a new instance of a {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object. */ public static function __set_state(array $array) { } /** * (PHP 5 >=5.5.0)
* Sets the date - * @link http://www.php.net/manual/en/datetimeimmutable.setdate.php + * @link https://secure.php.net/manual/en/datetimeimmutable.setdate.php * @param int $year

Year of the date.

* @param int $month

Month of the date.

* @param int $day

Day of the date.

* @return static|bool - * Returns the {@link http://www.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. + * Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. * */ public function setDate($year, $month, $day) { } @@ -190,67 +190,67 @@ class DateTimeImmutable implements DateTimeInterface { * @param int $week

Week of the date.

* @param int $day [optional]

Offset from the first day of the week.

* @return static|bool - * Returns the {@link http://www.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. + * Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. */ public function setISODate($year, $week, $day = 1) { } /** * (PHP 5 >=5.5.0)
* Sets the time - * @link http://www.php.net/manual/en/datetimeimmutable.settime.php + * @link https://secure.php.net/manual/en/datetimeimmutable.settime.php * @param int $hour

Hour of the time.

* @param int $minute

Minute of the time.

* @param int $second [optional]

Second of the time.

* @param int $microseconds [optional]

Microseconds of the time.

* @return static|false * @since 7.1.0 $microseconds parameter added. - * Returns the {@link http://www.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. + * Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. */ public function setTime($hour, $minute, $second = 0, $microseconds = 0) { } /** * (PHP 5 >=5.5.0)
* Sets the date and time based on an Unix timestamp - * @link http://www.php.net/manual/en/datetimeimmutable.settimestamp.php + * @link https://secure.php.net/manual/en/datetimeimmutable.settimestamp.php * @param int $unixtimestamp

Unix timestamp representing the date.

* @return static|bool - * Returns the {@link http://www.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. + * Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. */ public function setTimestamp($unixtimestamp) { } /** * (PHP 5 >=5.5.0)
* Sets the time zone - * @link http://www.php.net/manual/en/datetimeimmutable.settimezone.php + * @link https://secure.php.net/manual/en/datetimeimmutable.settimezone.php * @param DateTimeZone $timezone

- * A {@link http://www.php.net/manual/en/class.datetimezone.php DateTimeZone} object representing the + * A {@link https://secure.php.net/manual/en/class.datetimezone.php DateTimeZone} object representing the * desired time zone. *

* @return static|bool - * Returns the {@link http://www.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. + * Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. */ public function setTimezone(DateTimeZone $timezone) { } /** * (PHP 5 >=5.5.0)
* Subtracts an amount of days, months, years, hours, minutes and seconds - * @link http://www.php.net/manual/en/datetimeimmutable.sub.php + * @link https://secure.php.net/manual/en/datetimeimmutable.sub.php * @param DateInterval $interval

- * A {@link http://www.php.net/manual/en/class.dateinterval.php DateInterval} object + * A {@link https://secure.php.net/manual/en/class.dateinterval.php DateInterval} object *

* @return static|bool - * Returns the {@link http://www.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. + * Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or FALSE on failure. */ public function sub(DateInterval $interval) { } /** * (PHP 5 >=5.5.0)
* Returns the difference between two DateTime objects - * @link http://www.php.net/manual/en/datetime.diff.php + * @link https://secure.php.net/manual/en/datetime.diff.php * @param DateTimeInterface $datetime2

The date to compare to.

* @param bool $absolute [optional]

Should the interval be forced to be positive?

* @return DateInterval - * The {@link http://www.php.net/manual/en/class.dateinterval.php DateInterval} object representing the + * The {@link https://secure.php.net/manual/en/class.dateinterval.php DateInterval} object representing the * difference between the two dates or FALSE on failure. */ public function diff($datetime2, $absolute = false) { } @@ -258,9 +258,9 @@ class DateTimeImmutable implements DateTimeInterface { /** * (PHP 5 >=5.5.0)
* Returns date formatted according to given format - * @link http://www.php.net/manual/en/datetime.format.php + * @link https://secure.php.net/manual/en/datetime.format.php * @param string $format

- * Format accepted by {@link http://www.php.net/manual/en/function.date.php date()}. + * Format accepted by {@link https://secure.php.net/manual/en/function.date.php date()}. *

* @return string * Returns the formatted date string on success or FALSE on failure. @@ -289,9 +289,9 @@ class DateTimeImmutable implements DateTimeInterface { /** * (PHP 5 >=5.5.0)
* Return time zone relative to given DateTime - * @link http://www.php.net/manual/en/datetime.gettimezone.php + * @link https://secure.php.net/manual/en/datetime.gettimezone.php * @return DateTimeZone - * Returns a {@link http://www.php.net/manual/en/class.datetimezone.php DateTimeZone} object on success + * Returns a {@link https://secure.php.net/manual/en/class.datetimezone.php DateTimeZone} object on success * or FALSE on failure. */ public function getTimezone() { } @@ -299,7 +299,7 @@ class DateTimeImmutable implements DateTimeInterface { /** * (PHP 5 >=5.5.0)
* The __wakeup handler - * @link http://www.php.net/manual/en/datetime.wakeup.php + * @link https://secure.php.net/manual/en/datetime.wakeup.php * @return void Initializes a DateTime object. */ public function __wakeup() { } @@ -336,7 +336,7 @@ class DateTime implements DateTimeInterface { /** * Alter the timestamp of a DateTime object by incrementing or decrementing * in a format accepted by strtotime(). - * @param string $modify A date/time string. Valid formats are explained in Date and Time Formats. + * @param string $modify A date/time string. Valid formats are explained in Date and Time Formats. * @return static Returns the DateTime object for method chaining or FALSE on failure. * @link https://php.net/manual/en/datetime.modify.php */ diff --git a/dom/dom_c.php b/dom/dom_c.php index ac06a350..99c519a9 100644 --- a/dom/dom_c.php +++ b/dom/dom_c.php @@ -28,7 +28,7 @@ class DOMNode { * @var int * @since 5.0 * Gets the type of the node. One of the predefined - * XML_xxx_NODE constants + * XML_xxx_NODE constants * @link https://php.net/manual/en/class.domnode.php#domnode.props.nodetype */ public $nodeType; @@ -321,7 +321,7 @@ class DOMNode { /** * Gets an XPath location path for the node * @return string the XPath, or NULL in case of an error. - * @link https://www.php.net/manual/en/domnode.getnodepath.php + * @link https://https://secure.php.net/manual/en/domnode.getnodepath.php * @since 5.3.0 */ public function getNodePath () {} @@ -1877,14 +1877,14 @@ class DOMConfiguration { /** * The DOMCdataSection inherits from DOMText for textural representation of CData constructs. - * @link https://www.php.net/manual/en/class.domcdatasection.php + * @link https://https://secure.php.net/manual/en/class.domcdatasection.php */ class DOMCdataSection extends DOMText { /** * The value of the CDATA node. If not supplied, an empty CDATA node is created. * @param string $value The value of the CDATA node. If not supplied, an empty CDATA node is created. - * @link https://www.php.net/manual/en/domcdatasection.construct.php + * @link https://https://secure.php.net/manual/en/domcdatasection.construct.php * @since 5.0 */ public function __construct ($value) {} diff --git a/event/event.php b/event/event.php index d7dff463..d4e75600 100644 --- a/event/event.php +++ b/event/event.php @@ -1035,7 +1035,7 @@ final class EventBufferEvent * * @return string * - * @see http://php.net/manual/en/eventbufferevent.sslerror.php + * @see https://secure.php.net/manual/en/eventbufferevent.sslerror.php */ public function sslError(): string { @@ -1053,7 +1053,7 @@ final class EventBufferEvent * * @return EventBufferEvent * - * @see http://php.net/manual/en/eventbufferevent.sslfilter.php + * @see https://secure.php.net/manual/en/eventbufferevent.sslfilter.php */ public static function sslFilter(EventBase $base, EventBufferEvent $underlying, EventSslContext $ctx, int $state, int $options = 0): EventBufferEvent { @@ -1065,7 +1065,7 @@ final class EventBufferEvent * * @return string * - * @see http://php.net/manual/en/eventbufferevent.sslgetcipherinfo.php + * @see https://secure.php.net/manual/en/eventbufferevent.sslgetcipherinfo.php */ public function sslGetCipherInfo(): string { @@ -1077,7 +1077,7 @@ final class EventBufferEvent * * @return string * - * @see http://php.net/manual/en/eventbufferevent.sslgetciphername.php + * @see https://secure.php.net/manual/en/eventbufferevent.sslgetciphername.php */ public function sslGetCipherName(): string { @@ -1089,7 +1089,7 @@ final class EventBufferEvent * * @return string * - * @see http://php.net/manual/en/eventbufferevent.sslgetcipherversion.php + * @see https://secure.php.net/manual/en/eventbufferevent.sslgetcipherversion.php */ public function sslGetCipherVersion(): string { @@ -1101,7 +1101,7 @@ final class EventBufferEvent * * @return string * - * @see http://php.net/manual/en/eventbufferevent.sslgetprotocol.php + * @see https://secure.php.net/manual/en/eventbufferevent.sslgetprotocol.php */ public function sslGetProtocol(): string { @@ -1111,7 +1111,7 @@ final class EventBufferEvent * sslRenegotiate. * Tells a bufferevent to begin SSL renegotiation. * - * @see http://php.net/manual/en/eventbufferevent.sslrenegotiate.php + * @see https://secure.php.net/manual/en/eventbufferevent.sslrenegotiate.php */ public function sslRenegotiate(): void { @@ -1129,7 +1129,7 @@ final class EventBufferEvent * * @return EventBufferEvent * - * @see http://php.net/manual/en/eventbufferevent.sslsocket.php + * @see https://secure.php.net/manual/en/eventbufferevent.sslsocket.php */ public static function sslSocket(EventBase $base, mixed $socket, EventSslContext $ctx, int $state, int $options): EventBufferEvent { @@ -1143,7 +1143,7 @@ final class EventBufferEvent * * @return bool * - * @see http://php.net/manual/en/eventbufferevent.write.php + * @see https://secure.php.net/manual/en/eventbufferevent.write.php */ public function write(string $data): bool { @@ -1157,7 +1157,7 @@ final class EventBufferEvent * * @return bool * - * @see http://php.net/manual/en/eventbufferevent.writebuffer.php + * @see https://secure.php.net/manual/en/eventbufferevent.writebuffer.php */ public function writeBuffer(EventBuffer $buf): bool { @@ -1170,9 +1170,9 @@ final class EventBufferEvent * Represents configuration structure which could be used in construction of the EventBase . * * @author Kazuaki MABUCHI - * @copyright Copyright (http://php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](http://creativecommons.org/licenses/by/3.0/). + * @copyright Copyright (https://secure.php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](http://creativecommons.org/licenses/by/3.0/). * - * @see http://php.net/manual/en/class.eventconfig.php + * @see https://secure.php.net/manual/en/class.eventconfig.php */ final class EventConfig { @@ -1184,7 +1184,7 @@ final class EventConfig * __construct. * Constructs EventConfig object. * - * @see http://php.net/manual/en/eventconfig.construct.php + * @see https://secure.php.net/manual/en/eventconfig.construct.php */ public function __construct() { @@ -1198,7 +1198,7 @@ final class EventConfig * * @return bool * - * @see http://php.net/manual/en/eventconfig.avoidmethod.php + * @see https://secure.php.net/manual/en/eventconfig.avoidmethod.php */ public function avoidMethod(string $method): bool { @@ -1212,7 +1212,7 @@ final class EventConfig * * @return bool * - * @see http://php.net/manual/en/eventconfig.requirefeatures.php + * @see https://secure.php.net/manual/en/eventconfig.requirefeatures.php */ public function requireFeatures(int $feature): bool { @@ -1226,7 +1226,7 @@ final class EventConfig * @param int $max_callbacks * @param int $min_priority * - * @see http://php.net/manual/en/eventconfig.setmaxdispatchinterval.php + * @see https://secure.php.net/manual/en/eventconfig.setmaxdispatchinterval.php */ public function setMaxDispatchInterval(int $max_interval, int $max_callbacks, int $min_priority): void { @@ -1239,9 +1239,9 @@ final class EventConfig * Represents Libevent's DNS base structure. Used to resolve DNS asyncronously, parse configuration files like resolv.conf etc. * * @author Kazuaki MABUCHI - * @copyright Copyright (http://php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](http://creativecommons.org/licenses/by/3.0/). + * @copyright Copyright (https://secure.php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](http://creativecommons.org/licenses/by/3.0/). * - * @see http://php.net/manual/en/class.eventdnsbase.php + * @see https://secure.php.net/manual/en/class.eventdnsbase.php */ final class EventDnsBase { @@ -1258,7 +1258,7 @@ final class EventDnsBase * @param EventBase $base * @param bool $initialize * - * @see http://php.net/manual/en/eventdnsbase.construct.php + * @see https://secure.php.net/manual/en/eventdnsbase.construct.php */ public function __construct(EventBase $base, bool $initialize) { @@ -1272,7 +1272,7 @@ final class EventDnsBase * * @return bool * - * @see http://php.net/manual/en/eventdnsbase.addnameserverip.php + * @see https://secure.php.net/manual/en/eventdnsbase.addnameserverip.php */ public function addNameserverIp(string $ip): bool { @@ -1284,7 +1284,7 @@ final class EventDnsBase * * @param string $domain * - * @see http://php.net/manual/en/eventdnsbase.addsearch.php + * @see https://secure.php.net/manual/en/eventdnsbase.addsearch.php */ public function addSearch(string $domain): void { @@ -1294,7 +1294,7 @@ final class EventDnsBase * clearSearch. * Removes all current search suffixes. * - * @see http://php.net/manual/en/eventdnsbase.clearsearch.php + * @see https://secure.php.net/manual/en/eventdnsbase.clearsearch.php */ public function clearSearch(): void { @@ -1306,7 +1306,7 @@ final class EventDnsBase * * @return int * - * @see http://php.net/manual/en/eventdnsbase.countnameservers.php + * @see https://secure.php.net/manual/en/eventdnsbase.countnameservers.php */ public function countNameservers(): int { @@ -1320,7 +1320,7 @@ final class EventDnsBase * * @return bool * - * @see http://php.net/manual/en/eventdnsbase.loadhosts.php + * @see https://secure.php.net/manual/en/eventdnsbase.loadhosts.php */ public function loadHosts(string $hosts): bool { @@ -1335,7 +1335,7 @@ final class EventDnsBase * * @return bool * - * @see http://php.net/manual/en/eventdnsbase.parseresolvconf.php + * @see https://secure.php.net/manual/en/eventdnsbase.parseresolvconf.php */ public function parseResolvConf(int $flags, string $filename): bool { @@ -1350,7 +1350,7 @@ final class EventDnsBase * * @return bool * - * @see http://php.net/manual/en/eventdnsbase.setoption.php + * @see https://secure.php.net/manual/en/eventdnsbase.setoption.php */ public function setOption(string $option, string $value): bool { @@ -1364,7 +1364,7 @@ final class EventDnsBase * * @return bool * - * @see http://php.net/manual/en/eventdnsbase.setsearchndots.php + * @see https://secure.php.net/manual/en/eventdnsbase.setsearchndots.php */ public function setSearchNdots(int $ndots): bool { @@ -1377,9 +1377,9 @@ final class EventDnsBase * Represents HTTP server. * * @author Kazuaki MABUCHI - * @copyright Copyright (http://php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](http://creativecommons.org/licenses/by/3.0/). + * @copyright Copyright (https://secure.php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](http://creativecommons.org/licenses/by/3.0/). * - * @see http://php.net/manual/en/class.eventhttp.php + * @see https://secure.php.net/manual/en/class.eventhttp.php */ final class EventHttp { @@ -1390,7 +1390,7 @@ final class EventHttp * @param EventBase $base * @param EventSslContext $ctx = null * - * @see http://php.net/manual/en/eventhttp.construct.php + * @see https://secure.php.net/manual/en/eventhttp.construct.php */ public function __construct(EventBase $base, EventSslContext $ctx = null) { @@ -1404,7 +1404,7 @@ final class EventHttp * * @return bool * - * @see http://php.net/manual/en/eventhttp.accept.php + * @see https://secure.php.net/manual/en/eventhttp.accept.php */ public function accept(mixed $socket): bool { @@ -1418,7 +1418,7 @@ final class EventHttp * * @return bool * - * @see http://php.net/manual/en/eventhttp.addserveralias.php + * @see https://secure.php.net/manual/en/eventhttp.addserveralias.php */ public function addServerAlias(string $alias): bool { @@ -1431,7 +1431,7 @@ final class EventHttp * @param string $address * @param int $port * - * @see http://php.net/manual/en/eventhttp.bind.php + * @see https://secure.php.net/manual/en/eventhttp.bind.php */ public function bind(string $address, int $port): void { @@ -1445,7 +1445,7 @@ final class EventHttp * * @return bool * - * @see http://php.net/manual/en/eventhttp.removeserveralias.php + * @see https://secure.php.net/manual/en/eventhttp.removeserveralias.php */ public function removeServerAlias(string $alias): bool { @@ -1457,7 +1457,7 @@ final class EventHttp * * @param int $methods * - * @see http://php.net/manual/en/eventhttp.setallowedmethods.php + * @see https://secure.php.net/manual/en/eventhttp.setallowedmethods.php */ public function setAllowedMethods(int $methods): void { @@ -1471,7 +1471,7 @@ final class EventHttp * @param string $cb * @param string $arg (optional) * - * @see http://php.net/manual/en/eventhttp.setcallback.php + * @see https://secure.php.net/manual/en/eventhttp.setcallback.php */ public function setCallback(string $path, string $cb, string $arg): void { @@ -1484,7 +1484,7 @@ final class EventHttp * @param string $cb * @param string $arg (optional) * - * @see http://php.net/manual/en/eventhttp.setdefaultcallback.php + * @see https://secure.php.net/manual/en/eventhttp.setdefaultcallback.php */ public function setDefaultCallback(string $cb, string $arg): void { @@ -1496,7 +1496,7 @@ final class EventHttp * * @param int $value * - * @see http://php.net/manual/en/eventhttp.setmaxbodysize.php + * @see https://secure.php.net/manual/en/eventhttp.setmaxbodysize.php */ public function setMaxBodySize(int $value): void { @@ -1508,7 +1508,7 @@ final class EventHttp * * @param int $value * - * @see http://php.net/manual/en/eventhttp.setmaxheaderssize.php + * @see https://secure.php.net/manual/en/eventhttp.setmaxheaderssize.php */ public function setMaxHeadersSize(int $value): void { @@ -1520,7 +1520,7 @@ final class EventHttp * * @param int $value * - * @see http://php.net/manual/en/eventhttp.settimeout.php + * @see https://secure.php.net/manual/en/eventhttp.settimeout.php */ public function setTimeout(int $value): void { @@ -1533,9 +1533,9 @@ final class EventHttp * Represents an HTTP connection. * * @author Kazuaki MABUCHI - * @copyright Copyright (http://php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](http://creativecommons.org/licenses/by/3.0/). + * @copyright Copyright (https://secure.php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](http://creativecommons.org/licenses/by/3.0/). * - * @see http://php.net/manual/en/class.eventhttpconnection.php + * @see https://secure.php.net/manual/en/class.eventhttpconnection.php */ class EventHttpConnection { @@ -1549,7 +1549,7 @@ class EventHttpConnection * @param int $port * @param EventSslContext $ctx = null * - * @see http://php.net/manual/en/eventhttpconnection.construct.php + * @see https://secure.php.net/manual/en/eventhttpconnection.construct.php */ public function __construct(EventBase $base, EventDnsBase $dns_base, string $address, int $port, EventSslContext $ctx = null) { @@ -1561,7 +1561,7 @@ class EventHttpConnection * * @return EventBase * - * @see http://php.net/manual/en/eventhttpconnection.getbase.php + * @see https://secure.php.net/manual/en/eventhttpconnection.getbase.php */ public function getBase(): EventBase { @@ -1574,7 +1574,7 @@ class EventHttpConnection * @param string &$address * @param int &$port * - * @see http://php.net/manual/en/eventhttpconnection.getpeer.php + * @see https://secure.php.net/manual/en/eventhttpconnection.getpeer.php */ public function getPeer(string &$address, int &$port): void { @@ -1590,7 +1590,7 @@ class EventHttpConnection * * @return bool * - * @see http://php.net/manual/en/eventhttpconnection.makerequest.php + * @see https://secure.php.net/manual/en/eventhttpconnection.makerequest.php */ public function makeRequest(EventHttpRequest $req, int $type, string $uri): bool { @@ -1603,7 +1603,7 @@ class EventHttpConnection * @param callable $callback * @param mixed $data (optional) * - * @see http://php.net/manual/en/eventhttpconnection.setclosecallback.php + * @see https://secure.php.net/manual/en/eventhttpconnection.setclosecallback.php */ public function setCloseCallback(callable $callback, mixed $data): void { @@ -1615,7 +1615,7 @@ class EventHttpConnection * * @param string $address * - * @see http://php.net/manual/en/eventhttpconnection.setlocaladdress.php + * @see https://secure.php.net/manual/en/eventhttpconnection.setlocaladdress.php */ public function setLocalAddress(string $address): void { @@ -1627,7 +1627,7 @@ class EventHttpConnection * * @param int $port * - * @see http://php.net/manual/en/eventhttpconnection.setlocalport.php + * @see https://secure.php.net/manual/en/eventhttpconnection.setlocalport.php */ public function setLocalPort(int $port): void { @@ -1639,7 +1639,7 @@ class EventHttpConnection * * @param string $max_size * - * @see http://php.net/manual/en/eventhttpconnection.setmaxbodysize.php + * @see https://secure.php.net/manual/en/eventhttpconnection.setmaxbodysize.php */ public function setMaxBodySize(string $max_size): void { @@ -1651,7 +1651,7 @@ class EventHttpConnection * * @param string $max_size * - * @see http://php.net/manual/en/eventhttpconnection.setmaxheaderssize.php + * @see https://secure.php.net/manual/en/eventhttpconnection.setmaxheaderssize.php */ public function setMaxHeadersSize(string $max_size): void { @@ -1663,7 +1663,7 @@ class EventHttpConnection * * @param int $retries * - * @see http://php.net/manual/en/eventhttpconnection.setretries.php + * @see https://secure.php.net/manual/en/eventhttpconnection.setretries.php */ public function setRetries(int $retries): void { @@ -1675,7 +1675,7 @@ class EventHttpConnection * * @param int $timeout * - * @see http://php.net/manual/en/eventhttpconnection.settimeout.php + * @see https://secure.php.net/manual/en/eventhttpconnection.settimeout.php */ public function setTimeout(int $timeout): void { @@ -1795,9 +1795,9 @@ class EventHttpRequest * @property int $fd * * @author Kazuaki MABUCHI - * @copyright Copyright (http://php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](http://creativecommons.org/licenses/by/3.0/). + * @copyright Copyright (https://secure.php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](http://creativecommons.org/licenses/by/3.0/). * - * @see http://php.net/manual/en/class.eventlistener.php + * @see https://secure.php.net/manual/en/class.eventlistener.php */ final class EventListener { @@ -1820,7 +1820,7 @@ final class EventListener * @param int $backlog * @param mixed $target * - * @see http://php.net/manual/en/eventlistener.construct.php + * @see https://secure.php.net/manual/en/eventlistener.construct.php */ public function __construct(EventBase $base, callable $cb, mixed $data, int $flags, int $backlog, mixed $target) { @@ -1832,7 +1832,7 @@ final class EventListener * * @return bool * - * @see http://php.net/manual/en/eventlistener.disable.php + * @see https://secure.php.net/manual/en/eventlistener.disable.php */ public function disable(): bool { @@ -1844,7 +1844,7 @@ final class EventListener * * @return bool * - * @see http://php.net/manual/en/eventlistener.enable.php + * @see https://secure.php.net/manual/en/eventlistener.enable.php */ public function enable(): bool { @@ -1854,7 +1854,7 @@ final class EventListener * getBase. * Returns event base associated with the event listener. * - * @see http://php.net/manual/en/eventlistener.getbase.php + * @see https://secure.php.net/manual/en/eventlistener.getbase.php */ public function getBase(): void { @@ -1869,7 +1869,7 @@ final class EventListener * * @return bool * - * @see http://php.net/manual/en/eventlistener.getsocketname.php + * @see https://secure.php.net/manual/en/eventlistener.getsocketname.php */ public static function getSocketName(string &$address, mixed &$port): bool { @@ -1882,7 +1882,7 @@ final class EventListener * @param callable $cb * @param mixed $arg = null * - * @see http://php.net/manual/en/eventlistener.setcallback.php + * @see https://secure.php.net/manual/en/eventlistener.setcallback.php */ public function setCallback(callable $cb, mixed $arg = null): void { @@ -1894,7 +1894,7 @@ final class EventListener * * @param string $cb * - * @see http://php.net/manual/en/eventlistener.seterrorcallback.php + * @see https://secure.php.net/manual/en/eventlistener.seterrorcallback.php */ public function setErrorCallback(string $cb): void { @@ -1910,9 +1910,9 @@ final class EventListener * @property string $local_pk * * @author Kazuaki MABUCHI - * @copyright Copyright (http://php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](http://creativecommons.org/licenses/by/3.0/). + * @copyright Copyright (https://secure.php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](http://creativecommons.org/licenses/by/3.0/). * - * @see http://php.net/manual/en/class.eventsslcontext.php + * @see https://secure.php.net/manual/en/class.eventsslcontext.php */ final class EventSslContext { @@ -1944,7 +1944,7 @@ final class EventSslContext * @param string $method * @param string $options * - * @see http://php.net/manual/en/eventsslcontext.construct.php + * @see https://secure.php.net/manual/en/eventsslcontext.construct.php */ public function __construct(string $method, string $options) { @@ -1957,9 +1957,9 @@ final class EventSslContext * EventUtil is a singleton with supplimentary methods and constants. * * @author Kazuaki MABUCHI - * @copyright Copyright (http://php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](http://creativecommons.org/licenses/by/3.0/). + * @copyright Copyright (https://secure.php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](http://creativecommons.org/licenses/by/3.0/). * - * @see http://php.net/manual/en/class.eventutil.php + * @see https://secure.php.net/manual/en/class.eventutil.php */ final class EventUtil { @@ -1992,7 +1992,7 @@ final class EventUtil * __construct. * The abstract constructor. * - * @see http://php.net/manual/en/eventutil.construct.php + * @see https://secure.php.net/manual/en/eventutil.construct.php */ abstract public function __construct(); @@ -2004,7 +2004,7 @@ final class EventUtil * * @return int * - * @see http://php.net/manual/en/eventutil.getlastsocketerrno.php + * @see https://secure.php.net/manual/en/eventutil.getlastsocketerrno.php */ public static function getLastSocketErrno(mixed $socket = null): int { @@ -2018,7 +2018,7 @@ final class EventUtil * * @return string * - * @see http://php.net/manual/en/eventutil.getlastsocketerror.php + * @see https://secure.php.net/manual/en/eventutil.getlastsocketerror.php */ public static function getLastSocketError(mixed $socket): string { @@ -2032,7 +2032,7 @@ final class EventUtil * * @return int * - * @see http://php.net/manual/en/eventutil.getsocketfd.php + * @see https://secure.php.net/manual/en/eventutil.getsocketfd.php */ public static function getSocketFd(mixed $socket): int { @@ -2048,7 +2048,7 @@ final class EventUtil * * @return bool * - * @see http://php.net/manual/en/eventutil.getsocketname.php + * @see https://secure.php.net/manual/en/eventutil.getsocketname.php */ public static function getSocketName(mixed $socket, string &$address, mixed &$port): bool { @@ -2065,7 +2065,7 @@ final class EventUtil * * @return bool * - * @see http://php.net/manual/en/eventutil.setsocketoption.php + * @see https://secure.php.net/manual/en/eventutil.setsocketoption.php */ public static function setSocketOption(mixed $socket, int $level, int $optname, mixed $optval): bool { @@ -2075,7 +2075,7 @@ final class EventUtil * sslRandPoll. * Generates entropy by means of OpenSSL's RAND_poll(). * - * @see http://php.net/manual/en/eventutil.sslrandpoll.php + * @see https://secure.php.net/manual/en/eventutil.sslrandpoll.php */ public static function sslRandPoll(): void { diff --git a/igbinary/igbinary.php b/igbinary/igbinary.php index 05a48c01..9aeb12d2 100644 --- a/igbinary/igbinary.php +++ b/igbinary/igbinary.php @@ -10,7 +10,7 @@ * You can even serialize() arrays that contain references to itself. * Circular references inside the array/object you are serialize()ing will also be stored. * - * If object implements {@link https://www.php.net/~helly/php/ext/spl/interfaceSerializable.html Serializable} -interface, + * If object implements {@link https://https://secure.php.net/~helly/php/ext/spl/interfaceSerializable.html Serializable} -interface, * PHP will call the member function serialize to get serialized representation of object. * * When serializing objects, PHP will attempt to call the member function __sleep prior to serialization. @@ -19,7 +19,7 @@ * * @param mixed $value The value to be serialized. * @return string Returns a string containing a byte-stream representation of value that can be stored anywhere. - * @link https://www.php.net/serialize PHP default serialize + * @link https://https://secure.php.net/serialize PHP default serialize */ function igbinary_serialize($value) {} @@ -32,8 +32,8 @@ function igbinary_serialize($value) {} * * @param string $str The serialized string. * @return mixed The converted value is returned, and can be a boolean, integer, float, string, array or object. - * @link https://www.php.net/manual/en/function.unserialize.php PHP default unserialize - * @link https://www.php.net/~helly/php/ext/spl/interfaceSerializable.html Serializable + * @link https://https://secure.php.net/manual/en/function.unserialize.php PHP default unserialize + * @link https://https://secure.php.net/~helly/php/ext/spl/interfaceSerializable.html Serializable */ function igbinary_unserialize($str) {} diff --git a/imagick/imagick.php b/imagick/imagick.php index 04fbf049..d570cea8 100644 --- a/imagick/imagick.php +++ b/imagick/imagick.php @@ -1944,7 +1944,7 @@ class Imagick implements Iterator, Countable { public function getImageFormat () {} /** - * @link http://lv.php.net/manual/en/imagick.getimagemimetype.php + * @link https://secure.php.net/manual/en/imagick.getimagemimetype.php * @return string Returns the image mime-type. */ public function getImageMimeType () {} @@ -4580,7 +4580,7 @@ class Imagick implements Iterator, Countable { /** * Replaces any embedded formatting characters with the appropriate image property and returns the interpreted text. See http://www.imagemagick.org/script/escape.php for escape sequences. * @link https://php.net/manual/en/imagick.identifyformat.php - * @see http://www.imagemagick.org/script/escape.php + * @see https://www.imagemagick.org/script/escape.php * @param string $embedText A string containing formatting sequences e.g. "Trim box: %@ number of unique colors: %k". * @return bool * @since 3.3.0 @@ -4742,7 +4742,7 @@ class Imagick implements Iterator, Countable { * Merge multiple images of the same size together with the selected operator. http://www.imagemagick.org/Usage/layers/#evaluate-sequence * @param int $EVALUATE_CONSTANT * @return bool - * @see http://www.imagemagick.org/Usage/layers/#evaluate-sequence + * @see https://www.imagemagick.org/Usage/layers/#evaluate-sequence * @since 3.4.0 */ public function evaluateImages ($EVALUATE_CONSTANT) { } @@ -6707,7 +6707,7 @@ class ImagickKernel { * Create a kernel from a builtin in kernel. See http://www.imagemagick.org/Usage/morphology/#kernel for examples.
* Currently the 'rotation' symbols are not supported. Example: $diamondKernel = ImagickKernel::fromBuiltIn(\Imagick::KERNEL_DIAMOND, "2"); * @link https://php.net/manual/en/imagickkernel.frombuiltin.php - * @see http://www.imagemagick.org/Usage/morphology/#kernel + * @see https://www.imagemagick.org/Usage/morphology/#kernel * @param array $matrix A matrix (i.e. 2d array) of values that define the kernel. Each element should be either a float value, or FALSE if that element shouldn't be used by the kernel. * @param array $origin [optional] Which element of the kernel should be used as the origin pixel. e.g. For a 3x3 matrix specifying the origin as [2, 2] would specify that the bottom right element should be the origin pixel. * @return ImagickKernel @@ -6728,7 +6728,7 @@ class ImagickKernel { * The exact behaviour of this function depends on the normalization type being used please see http://www.imagemagick.org/api/morphology.php#ScaleKernelInfo for details.
* Flag should be one of Imagick::NORMALIZE_KERNEL_VALUE, Imagick::NORMALIZE_KERNEL_CORRELATE, Imagick::NORMALIZE_KERNEL_PERCENT or not set. * @link https://php.net/manual/en/imagickkernel.scale.php - * @see http://www.imagemagick.org/api/morphology.php#ScaleKernelInfo + * @see https://www.imagemagick.org/api/morphology.php#ScaleKernelInfo * @return void * @since 3.3.0 */ diff --git a/inotify/inotify.php b/inotify/inotify.php index ac762bfd..6bc9b234 100644 --- a/inotify/inotify.php +++ b/inotify/inotify.php @@ -72,7 +72,7 @@ function inotify_read( $inotify_instance ) * (PHP >= 5.2.0, PECL inotify >= 0.1.2)
* Removes the watch $watch_descriptor from the inotify instance $inotify_instance. * - * @link http://php.net/manual/en/function.inotify-rm-watch.php + * @link https://secure.php.net/manual/en/function.inotify-rm-watch.php * * @param resource $inotify_instance

resource returned by {@link https://php.net/manual/en/function.inotify-init.php inotify_init()}

* @param int $watch_descriptor

watch to remove from the instance

diff --git a/intl/intl.php b/intl/intl.php index 559900dd..9cab48e9 100644 --- a/intl/intl.php +++ b/intl/intl.php @@ -1106,26 +1106,26 @@ class Normalizer { /** * Default normalization options - * @link https://www.php.net/manual/en/class.normalizer.php + * @link https://https://secure.php.net/manual/en/class.normalizer.php */ const OPTION_DEFAULT = ""; /** * No decomposition/composition - * @link https://www.php.net/manual/en/class.normalizer.php + * @link https://https://secure.php.net/manual/en/class.normalizer.php */ const NONE = "1"; /** * Normalization Form D (NFD) - Canonical Decomposition - * @link http://www.php.net/manual/en/class.normalizer.php + * @link https://secure.php.net/manual/en/class.normalizer.php */ const FORM_D = "2"; const NFD = 2; /** * Normalization Form KD (NFKD) - Compatibility Decomposition - * @link http://www.php.net/manual/en/class.normalizer.php + * @link https://secure.php.net/manual/en/class.normalizer.php */ const FORM_KD = "3"; const NFKD = 3; @@ -1133,7 +1133,7 @@ class Normalizer { /** * Normalization Form C (NFC) - Canonical Decomposition followed by * Canonical Composition - * @link http://www.php.net/manual/en/class.normalizer.php + * @link https://secure.php.net/manual/en/class.normalizer.php */ const FORM_C = "4"; const NFC = 4; @@ -1141,7 +1141,7 @@ class Normalizer { /** * Normalization Form KC (NFKC) - Compatibility Decomposition, followed by * Canonical Composition - * @link http://www.php.net/manual/en/class.normalizer.php + * @link https://secure.php.net/manual/en/class.normalizer.php */ const FORM_KC = "5"; const NFKC = 5; @@ -1765,7 +1765,7 @@ class IntlDateFormatter { /** * (PHP 5 >= 5.5.0, PECL intl >= 3.0.0)
* Get copy of formatter's calendar object - * @link http://www.php.net/manual/en/intldateformatter.getcalendarobject.php + * @link https://secure.php.net/manual/en/intldateformatter.getcalendarobject.php * @return IntlCalendar A copy of the internal calendar object used by this formatter. */ public function getCalendarObject() { } @@ -1773,7 +1773,7 @@ class IntlDateFormatter { /** * (PHP 5 >= 5.5.0, PECL intl >= 3.0.0)
* Get formatter's timezone - * @link http://www.php.net/manual/en/intldateformatter.gettimezone.php + * @link https://secure.php.net/manual/en/intldateformatter.gettimezone.php * @return IntlTimeZone|bool The associated IntlTimeZone object or FALSE on failure. */ public function getTimeZone() { } @@ -1787,7 +1787,7 @@ class IntlDateFormatter { * If NULL or the empty string, the default time zone for the runtime is used. *

* @return bool TRUE on success or FALSE on failure. - * @deprecated 5.5 http://www.php.net/manual/en/migration55.deprecated.php + * @deprecated 5.5 https://secure.php.net/manual/en/migration55.deprecated.php */ public function setTimeZoneId($zone) { } @@ -1802,26 +1802,26 @@ class IntlDateFormatter { *
  • *

    * NULL, in which case the default timezone will be used, as specified in - * the ini setting {@link "http://php.net/manual/en/datetime.configuration.php#ini.date.timezone" date.timezone} or - * through the function {@link "http://php.net/manual/en/function.date-default-timezone-set.php" date_default_timezone_set()} and as - * returned by {@link "http://php.net/manual/en/function.date-default-timezone-get.php" date_default_timezone_get()}. + * 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()}. *

    *
  • *
  • *

    - * An {@link "http://php.net/manual/en/class.intltimezone.php" IntlTimeZone}, which will be used directly. + * An {@link "https://secure.php.net/manual/en/class.intltimezone.php" IntlTimeZone}, which will be used directly. *

    *
  • *
  • *

    - * A {@link "http://php.net/manual/en/class.datetimezone.php" DateTimeZone}. Its identifier will be extracted + * A {@link "https://secure.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. *

    *
  • *
  • *

    - * A {@link "http://php.net/manual/en/language.types.string.php" string}, which should be a valid ICU timezone identifier. + * A {@link "https://secure.php.net/manual/en/language.types.string.php" string}, which should be a valid ICU timezone identifier. * See IntlTimeZone::createTimeZoneIDEnumeration(). Raw offsets such as "GMT+08:30" are also accepted. *

    *
  • @@ -1897,12 +1897,12 @@ class IntlDateFormatter { /** * (PHP 5 >= 5.5.0, PECL intl >= 3.0.0)
    * Formats an object - * @link http://www.php.net/manual/en/intldateformatter.formatobject.php + * @link https://secure.php.net/manual/en/intldateformatter.formatobject.php * @param object $object

    - * An object of type {@link "http://www.php.net/manual/en/class.intlcalendar.php" IntlCalendar} or {@link "http://www.php.net/manual/en/class.datetime.php" DateTime}. The timezone information in the object will be used. + * 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. *

    * @param mixed $format [optional]

    - * How to format the date/time. This can either be an {@link "http://www.php.net/manual/en/language.types.array.php" array} with + * How to format the date/time. This can either be an {@link "https://secure.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 IntlDateFormatter::NONE, * IntlDateFormatter::SHORT, @@ -1910,12 +1910,12 @@ class IntlDateFormatter { * IntlDateFormatter::LONG, * IntlDateFormatter::FULL), 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 "http://www.php.net/manual/en/language.types.string.php" string} with the format + * for the time and the date) or a {@link "https://secure.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
    NULL
    , the default style will be used. *

    * @param string $locale [optional]

    - * The locale to use, or NULL to use the {@link "http://www.php.net/manual/en/intl.configuration.php#ini.intl.default-locale"default one}.

    + * The locale to use, or NULL to use the {@link "https://secure.php.net/manual/en/intl.configuration.php#ini.intl.default-locale"default one}.

    * @return string A string with result or FALSE on failure. */ public static function formatObject($object, $format = NULL, $locale = NULL) { } @@ -2297,9 +2297,9 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Add a (signed) amount of time to a field - * @link http://www.php.net/manual/en/intlcalendar.add.php + * @link https://secure.php.net/manual/en/intlcalendar.add.php * @param int $field

    - * One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. + * 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 values between 0 and * IntlCalendar::FIELD_COUNT. *

    @@ -2312,26 +2312,26 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Whether this object's time is after that of the passed object - * http://www.php.net/manual/en/intlcalendar.after.php + * https://secure.php.net/manual/en/intlcalendar.after.php * @param IntlCalendar $calendar

    The calendar whose time will be checked against this object's time.

    * @return bool * Returns TRUE if this object's current time is after that of the * calendar argument's time. Returns FALSE otherwise. - * Also returns FALSE on failure. You can use {@link http://www.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or - * {@link http://www.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to detect error conditions. + * Also returns FALSE 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. */ public function after(IntlCalendar $calendar) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Whether this object's time is before that of the passed object - * @link http://www.php.net/manual/en/intlcalendar.before.php + * @link https://secure.php.net/manual/en/intlcalendar.before.php * @param IntlCalendar $calendar

    The calendar whose time will be checked against this object's time.

    * @return bool * Returns TRUE if this object's current time is before that of the * calendar argument's time. Returns FALSE otherwise. - * Also returns FALSE on failure. You can use {@link http://www.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or - * {@link http://www.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to detect error conditions. + * Also returns FALSE 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. *

    */ public function before(IntlCalendar $calendar) { } @@ -2339,9 +2339,9 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Clear a field or all fields - * @link http://www.php.net/manual/en/intlcalendar.clear.php + * @link https://secure.php.net/manual/en/intlcalendar.clear.php * @param int $field [optional]

    - * One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer + * 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 * values between 0 and * IntlCalendar::FIELD_COUNT. *

    @@ -2352,7 +2352,7 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Private constructor for disallowing instantiation - * @link http://www.php.net/manual/en/intlcalendar.construct.php + * @link https://secure.php.net/manual/en/intlcalendar.construct.php * */ private function __construct() { } @@ -2361,7 +2361,7 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Create a new IntlCalendar - * @link http://www.php.net/manual/en/intlcalendar.createinstance.php + * @link https://secure.php.net/manual/en/intlcalendar.createinstance.php * @param mixed $timeZone [optional]

    * The timezone to use. *

    @@ -2370,26 +2370,26 @@ class IntlCalendar { *
  • *

    * NULL, in which case the default timezone will be used, as specified in - * the ini setting {@link http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone date.timezone} or - * through the function {@link http://www.php.net/manual/en/function.date-default-timezone-set.php date_default_timezone_set()} and as - * returned by {@link http://www.php.net/manual/en/function.date-default-timezone-get.php date_default_timezone_get()}. + * 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()}. *

    *
  • *
  • *

    - * An {@link http://www.php.net/manual/en/class.intltimezone.php IntlTimeZone}, which will be used directly. + * An {@link https://secure.php.net/manual/en/class.intltimezone.php IntlTimeZone}, which will be used directly. *

    *
  • *
  • *

    - * A {@link http://www.php.net/manual/en/class.datetimezone.php DateTimeZone}. Its identifier will be extracted + * A {@link https://secure.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. *

    *
  • *
  • *

    - * A {@link http://www.php.net/manual/en/language.types.string.php string}, which should be a valid ICU timezone identifier. + * A {@link https://secure.php.net/manual/en/language.types.string.php string}, which should be a valid ICU timezone identifier. * See IntlTimeZone::createTimeZoneIDEnumeration(). Raw * offsets such as "GMT+08:30" are also accepted. *

    @@ -2397,10 +2397,10 @@ class IntlCalendar { * *

    * @param string $locale [optional]

    - * A locale to use or NULL to use {@link http://www.php.net/manual/en/intl.configuration.php#ini.intl.default-locale the default locale}. + * A locale to use or NULL to use {@link https://secure.php.net/manual/en/intl.configuration.php#ini.intl.default-locale the default locale}. *

    * @return IntlCalendar - * The created {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} instance or NULL on + * The created {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} instance or NULL on * failure. */ public static function createInstance($timeZone = NULL, $locale = NULL) { } @@ -2408,14 +2408,14 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Compare time of two IntlCalendar objects for equality - * @link http://www.php.net/manual/en/intlcalendar.equals.php + * @link https://secure.php.net/manual/en/intlcalendar.equals.php * @param IntlCalendar $calendar * @return bool

    * Returns TRUE if the current time of both this and the passed in - * {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} object are the same, or FALSE + * {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} object are the same, or FALSE * otherwise. The value FALSE 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 http://www.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()}. + * distinguished by calling {@link https://secure.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()}. *

    */ public function equals($calendar) { } @@ -2423,7 +2423,7 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Calculate difference between given time and this object's time - * @link http://www.php.net/manual/en/intlcalendar.fielddifference.php + * @link https://secure.php.net/manual/en/intlcalendar.fielddifference.php * @param float $when

    * The time against which to compare the quantity represented by the * field. For the result to be positive, the time @@ -2435,7 +2435,7 @@ class IntlCalendar { *

    * *

    - * One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer + * 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 * values between 0 and * IntlCalendar::FIELD_COUNT. *

    @@ -2448,24 +2448,24 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a2)
    * Create an IntlCalendar from a DateTime object or string - * @link http://www.php.net/manual/en/intlcalendar.fromdatetime.php + * @link https://secure.php.net/manual/en/intlcalendar.fromdatetime.php * @param mixed $dateTime

    - * A {@link http://www.php.net/manual/en/class.datetime.php DateTime} object or a {@link http://www.php.net/manual/en/language.types.string.php string} that - * can be passed to {@link http://www.php.net/manual/en/datetime.construct.php DateTime::__construct()}. + * 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()}. *

    * @return IntlCalendar - * The created {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} object or NULL in case of - * failure. If a {@link http://www.php.net/manual/en/language.types.string.php string} is passed, any exception that occurs - * inside the {@link http://www.php.net/manual/en/class.datetime.php DateTime} constructor is propagated. + * The created {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} object or NULL 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. */ public static function fromDateTime($dateTime) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the value for a field - * @link http://www.php.net/manual/en/intlcalendar.get.php + * @link https://secure.php.net/manual/en/intlcalendar.get.php * @param int $field

    - * One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer + * 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 * values between 0 and * IntlCalendar::FIELD_COUNT. *

    @@ -2476,14 +2476,14 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * The maximum value for a field, considering the object's current time - * @link http://www.php.net/manual/en/intlcalendar.getactualmaximum.php + * @link https://secure.php.net/manual/en/intlcalendar.getactualmaximum.php * @param int $field

    - * One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer + * 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 * values between 0 and * IntlCalendar::FIELD_COUNT. *

    * @return int - * An {@link http://www.php.net/manual/en/language.types.integer.php int} representing the maximum value in the units associated + * An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing the maximum value in the units associated * with the given field or FALSE on failure. */ public function getActualMaximum($field) { } @@ -2491,14 +2491,14 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * The minimum value for a field, considering the object's current time - * @link http://www.php.net/manual/en/intlcalendar.getactualminimum.php + * @link https://secure.php.net/manual/en/intlcalendar.getactualminimum.php * @param int $field

    - * One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. + * 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 values between 0 and * IntlCalendar::FIELD_COUNT. *

    * @return int - * An {@link http://www.php.net/manual/en/language.types.integer.php int} representing the minimum value in the field's + * An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing the minimum value in the field's * unit or FALSE on failure. */ public function getActualMinimum($field) { } @@ -2506,7 +2506,7 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get array of locales for which there is data - * @link http://www.php.net/manual/en/intlcalendar.getavailablelocales.php + * @link https://secure.php.net/manual/en/intlcalendar.getavailablelocales.php * @return array An array of strings, one for which locale. */ @@ -2533,7 +2533,7 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get last error code on the object - * @link http://www.php.net/manual/en/intlcalendar.geterrorcode.php + * @link https://secure.php.net/manual/en/intlcalendar.geterrorcode.php * @return int An ICU error code indicating either success, failure or a warning. * */ @@ -2542,7 +2542,7 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get last error message on the object - * @link http://www.php.net/manual/en/intlcalendar.geterrormessage.php + * @link https://secure.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() { } @@ -2550,7 +2550,7 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the first day of the week for the calendar's locale - * @link http://www.php.net/manual/en/intlcalendar.getfirstdayofweek.php + * @link https://secure.php.net/manual/en/intlcalendar.getfirstdayofweek.php * @return int * One of the constants IntlCalendar::DOW_SUNDAY, * IntlCalendar::DOW_MONDAY, ..., @@ -2562,13 +2562,13 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the largest local minimum value for a field - * @link http://www.php.net/manual/en/intlcalendar.getgreatestminimum.php + * @link https://secure.php.net/manual/en/intlcalendar.getgreatestminimum.php * @param int $field

    - * One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer + * 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 * values between 0 and * IntlCalendar::FIELD_COUNT. * @return int - * An {@link http://www.php.net/manual/en/language.types.integer.php int} representing a field value, in the field's + * An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing a field value, in the field's * unit, or FALSE on failure. */ public function getGreatestMinimum($field) { } @@ -2594,14 +2594,14 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the smallest local maximum for a field - * @link http://www.php.net/manual/en/intlcalendar.getleastmaximum.php + * @link https://secure.php.net/manual/en/intlcalendar.getleastmaximum.php * @param int $field

    - * One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer + * 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 * values between 0 and * IntlCalendar::FIELD_COUNT. *

    * @return int - * An {@link http://www.php.net/manual/en/language.types.integer.ph int} representing a field value in the field's + * An {@link https://secure.php.net/manual/en/language.types.integer.ph int} representing a field value in the field's * unit or FALSE on failure. *

    */ @@ -2610,7 +2610,7 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the locale associated with the object - * @link http://www.php.net/manual/en/intlcalendar.getlocale.php + * @link https://secure.php.net/manual/en/intlcalendar.getlocale.php * @param int $localeType

    * Whether to fetch the actual locale (the locale from which the calendar * data originates, with Locale::ACTUAL_LOCALE) or the @@ -2628,9 +2628,9 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the global maximum value for a field - * @link http://www.php.net/manual/en/intlcalendar.getmaximum.php + * @link https://secure.php.net/manual/en/intlcalendar.getmaximum.php * @param int $field

    - * One of the {@link www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer + * 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 * values between 0 and * IntlCalendar::FIELD_COUNT. *

    @@ -2642,18 +2642,18 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get minimal number of days the first week in a year or month can have - * @link http://www.php.net/manual/en/intlcalendar.getminimaldaysinfirstweek.php + * @link https://secure.php.net/manual/en/intlcalendar.getminimaldaysinfirstweek.php * @return int - * An {@link http://www.php.net/manual/en/language.types.integer.php int} representing a number of days or FALSE on failure. + * An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing a number of days or FALSE on failure. */ public function getMinimalDaysInFirstWeek() { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the global minimum value for a field - * @link http://www.php.net/manual/en/intlcalendar.getminimum.php + * @link https://secure.php.net/manual/en/intlcalendar.getminimum.php * @param int $field

    - * One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field}. These are integer + * 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 * values between 0 and * IntlCalendar::FIELD_COUNT. *

    @@ -2672,7 +2672,7 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get behavior for handling repeating wall time - * @link http://www.php.net/manual/en/intlcalendar.getrepeatedwalltimeoption.php + * @link https://secure.php.net/manual/en/intlcalendar.getrepeatedwalltimeoption.php * @return int * One of the constants IntlCalendar::WALLTIME_FIRST or * IntlCalendar::WALLTIME_LAST. @@ -2683,7 +2683,7 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get behavior for handling skipped wall time - * @link http://www.php.net/manual/en/intlcalendar.getskippedwalltimeoption.php + * @link https://secure.php.net/manual/en/intlcalendar.getskippedwalltimeoption.php * @return int * One of the constants IntlCalendar::WALLTIME_FIRST, * IntlCalendar::WALLTIME_LAST or @@ -2695,7 +2695,7 @@ class IntlCalendar { * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get time currently represented by the object * @return float - * A {@link http://www.php.net/manual/en/language.types.float.php float} representing the number of milliseconds elapsed since the + * A {@link https://secure.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() { } @@ -2703,9 +2703,9 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the object's timezone - * @link http://www.php.net/manual/en/intlcalendar.gettimezone.php + * @link https://secure.php.net/manual/en/intlcalendar.gettimezone.php * @return IntlTimeZone - * An {@link http://www.php.net/manual/en/class.intltimezone.php IntlTimeZone} object corresponding to the one used + * An {@link https://secure.php.net/manual/en/class.intltimezone.php IntlTimeZone} object corresponding to the one used * internally in this object. */ public function getTimeZone() { } @@ -2713,9 +2713,9 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the calendar type - * @link http://www.php.net/manual/en/intlcalendar.gettype.php + * @link https://secure.php.net/manual/en/intlcalendar.gettype.php * @return string - * A {@link http://www.php.net/manual/en/language.types.string.php string} representing the calendar type, such as + * A {@link https://secure.php.net/manual/en/language.types.string.php string} representing the calendar type, such as * 'gregorian', 'islamic', etc. */ public function getType() { } @@ -2723,7 +2723,7 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get time of the day at which weekend begins or ends - * @link http://www.php.net/manual/en/intlcalendar.getweekendtransition.php + * @link https://secure.php.net/manual/en/intlcalendar.getweekendtransition.php * @param string $dayOfWeek

    * One of the constants IntlCalendar::DOW_SUNDAY, * IntlCalendar::DOW_MONDAY, ..., @@ -2738,19 +2738,19 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Whether the object's time is in Daylight Savings Time - * @link http://www.php.net/manual/en/intlcalendar.indaylighttime.php + * @link https://secure.php.net/manual/en/intlcalendar.indaylighttime.php * @return bool * Returns TRUE if the date is in Daylight Savings Time, FALSE otherwise. * The value FALSE may also be returned on failure, for instance after - * specifying invalid field values on non-lenient mode; use {@link http://www.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or query - * {@link http://www.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://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. */ public function inDaylightTime() { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Whether another calendar is equal but for a different time - * @link http://www.php.net/manual/en/intlcalendar.isequivalentto.php + * @link https://secure.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 TRUE iif the calendars are equivalent except possibly for their set time. @@ -2760,39 +2760,39 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Whether date/time interpretation is in lenient mode - * @link http://www.php.net/manual/en/intlcalendar.islenient.php + * @link https://secure.php.net/manual/en/intlcalendar.islenient.php * @return bool - * A {@link http://www.php.net/manual/en/language.types.boolean.php bool} representing whether the calendar is set to lenient mode. + * A {@link https://secure.php.net/manual/en/language.types.boolean.php bool} representing whether the calendar is set to lenient mode. */ public function isLenient() { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Whether a certain date/time is in the weekend - * @link http://www.php.net/manual/en/intlcalendar.isweekend.php + * @link https://secure.php.net/manual/en/intlcalendar.isweekend.php * @param float $date [optional]

    * An optional timestamp representing the number of milliseconds since the * epoch, excluding leap seconds. If NULL, this object's current time is * used instead. *

    * @return bool - *

    A {@link http://www.php.net/manual/en/language.types.boolean.php bool} indicating whether the given or this object's time occurs + *

    A {@link https://secure.php.net/manual/en/language.types.boolean.php bool} indicating whether the given or this object's time occurs * in a weekend. *

    *

    * The value FALSE may also be returned on failure, for instance after giving - * a date out of bounds on non-lenient mode; use {@link http://www.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or query - * {@link http://www.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to disambiguate.

    + * 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.

    */ public function isWeekend($date = NULL) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Add value to field without carrying into more significant fields - * @link http://www.php.net/manual/en/intlcalendar.roll.php + * @link https://secure.php.net/manual/en/intlcalendar.roll.php * @param int $field - *

    One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time - * {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer + *

    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 * values between 0 and * IntlCalendar::FIELD_COUNT. *

    @@ -2809,10 +2809,10 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Whether a field is set - * @link http://www.php.net/manual/en/intlcalendar.isset.php + * @link https://secure.php.net/manual/en/intlcalendar.isset.php * @param int $field

    - * One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time - * {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. + * 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 values between 0 and * IntlCalendar::FIELD_COUNT. *

    @@ -2823,9 +2823,9 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Set a time field or several common fields at once - * @link http://www.php.net/manual/en/intlcalendar.set.php + * @link https://secure.php.net/manual/en/intlcalendar.set.php * @param int $year

    - * One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer + * 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 * values between 0 and * IntlCalendar::FIELD_COUNT. *

    @@ -2856,7 +2856,7 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Set a time field or several common fields at once - * @link http://www.php.net/manual/en/intlcalendar.set.php + * @link https://secure.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 TRUE on success and FALSE on failure. @@ -2866,7 +2866,7 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Set the day on which the week is deemed to start - * @link http://www.php.net/manual/en/intlcalendar.setfirstdayofweek.php + * @link https://secure.php.net/manual/en/intlcalendar.setfirstdayofweek.php * @param int $dayOfWeek

    * One of the constants IntlCalendar::DOW_SUNDAY, * IntlCalendar::DOW_MONDAY, ..., @@ -2879,7 +2879,7 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Set whether date/time interpretation is to be lenient - * @link http://www.php.net/manual/en/intlcalendar.setlenient.php + * @link https://secure.php.net/manual/en/intlcalendar.setlenient.php * @param string $isLenient

    * Use TRUE to activate the lenient mode; FALSE otherwise. *

    @@ -2890,7 +2890,7 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Set behavior for handling repeating wall times at negative timezone offset transitions - * @link http://www.php.net/manual/en/intlcalendar.setrepeatedwalltimeoption.php + * @link https://secure.php.net/manual/en/intlcalendar.setrepeatedwalltimeoption.php * @param int $wallTimeOption

    * One of the constants IntlCalendar::WALLTIME_FIRST or * IntlCalendar::WALLTIME_LAST. @@ -2904,7 +2904,7 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Set behavior for handling skipped wall times at positive timezone offset transitions - * @link http://www.php.net/manual/en/intlcalendar.setskippedwalltimeoption.php + * @link https://secure.php.net/manual/en/intlcalendar.setskippedwalltimeoption.php * @param int $wallTimeOption

    * One of the constants IntlCalendar::WALLTIME_FIRST, * IntlCalendar::WALLTIME_LAST or @@ -2920,7 +2920,7 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Set the calendar time in milliseconds since the epoch - * @link http://www.php.net/manual/en/intlcalendar.settime.php + * @link https://secure.php.net/manual/en/intlcalendar.settime.php * @param float $date

    * An instant represented by the number of number of milliseconds between * such instant and the epoch, ignoring leap seconds. @@ -2933,7 +2933,7 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Set the timezone used by this calendar - * @link http://www.php.net/manual/en/intlcalendar.settimezone.php + * @link https://secure.php.net/manual/en/intlcalendar.settimezone.php * @param mixed $timeZone

    * The new timezone to be used by this calendar. It can be specified in the * following ways: @@ -2942,26 +2942,26 @@ class IntlCalendar { *

  • *

    * NULL, in which case the default timezone will be used, as specified in - * the ini setting {@link http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone date.timezone} or - * through the function {@link http://www.php.net/manual/en/function.date-default-timezone-set.php date_default_timezone_set()} and as - * returned by {@link http://www.php.net/manual/en/function.date-default-timezone-get.php date_default_timezone_get()}. + * 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()}. *

    *
  • *
  • *

    - * An {@link http://www.php.net/manual/en/class.intltimezone.php IntlTimeZone}, which will be used directly. + * An {@link https://secure.php.net/manual/en/class.intltimezone.php IntlTimeZone}, which will be used directly. *

    *
  • *
  • *

    - * A {@link http://www.php.net/manual/en/class.datetimezone.php DateTimeZone}. Its identifier will be extracted + * A {@link https://secure.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. *

    *
  • *
  • *

    - * A {@link http://www.php.net/manual/en/language.types.string.php string}, which should be a valid ICU timezone identifier. + * A {@link https://secure.php.net/manual/en/language.types.string.php string}, which should be a valid ICU timezone identifier. * See b>IntlTimeZone::createTimeZoneIDEnumeration(). Raw * offsets such as "GMT+08:30" are also accepted. *

    @@ -2974,9 +2974,9 @@ class IntlCalendar { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a2)
    * Convert an IntlCalendar into a DateTime object - * @link http://www.php.net/manual/en/intlcalendar.todatetime.php + * @link https://secure.php.net/manual/en/intlcalendar.todatetime.php * @return DateTime|bool - * A {@link http://www.php.net/manual/en/class.datetime.php DateTime} object with the same timezone as this + * A {@link https://secure.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 FALSE on failure. @@ -3012,7 +3012,7 @@ class IntlTimeZone { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the number of IDs in the equivalency group that includes the given ID - * @link http://www.php.net/manual/en/intltimezone.countequivalentids.php + * @link https://secure.php.net/manual/en/intltimezone.countequivalentids.php * @param string $zoneId * @return int */ @@ -3021,14 +3021,14 @@ class IntlTimeZone { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Create a new copy of the default timezone for this host - * @link http://www.php.net/manual/en/intltimezone.createdefault.php + * @link https://secure.php.net/manual/en/intltimezone.createdefault.php * @return IntlTimeZone */ public static function createDefault() { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    - * @link http://www.php.net/manual/en/intltimezone.createenumeration.php + * @link https://secure.php.net/manual/en/intltimezone.createenumeration.php * @param mixed $countryOrRawOffset [optional] * @return IntlIterator */ @@ -3036,7 +3036,7 @@ class IntlTimeZone { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    - * @link http://www.php.net/manual/en/intltimezone.createtimezone.php + * @link https://secure.php.net/manual/en/intltimezone.createtimezone.php * @param string $zoneId * @return IntlTimeZone */ @@ -3044,7 +3044,7 @@ class IntlTimeZone { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    - * @link http://www.php.net/manual/en/intltimezone.fromdatetimezone.php + * @link https://secure.php.net/manual/en/intltimezone.fromdatetimezone.php * @param DateTimeZone $zoneId * @return IntlTimeZone */ @@ -3053,7 +3053,7 @@ class IntlTimeZone { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the canonical system timezone ID or the normalized custom time zone ID for the given time zone ID - * @link www.php.net/manual/en/intltimezone.getcanonicalid.php + * @link https://secure.php.net/manual/en/intltimezone.getcanonicalid.php * @param string $zoneId * @param bool $isSystemID [optional] * @return string @@ -3073,7 +3073,7 @@ class IntlTimeZone { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the amount of time to be added to local standard time to get local wall clock time - * @link http://www.php.net/manual/en/intltimezone.getequivalentid.php + * @link https://secure.php.net/manual/en/intltimezone.getequivalentid.php * @return int */ public function getDSTSavings() { } @@ -3081,7 +3081,7 @@ class IntlTimeZone { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get an ID in the equivalency group that includes the given ID - * @link http://www.php.net/manual/en/intltimezone.getequivalentid.php + * @link https://secure.php.net/manual/en/intltimezone.getequivalentid.php * @param string $zoneId * @param int $index * @return string @@ -3091,7 +3091,7 @@ class IntlTimeZone { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get last error code on the object - * @link http://www.php.net/manual/en/intltimezone.geterrorcode.php + * @link https://secure.php.net/manual/en/intltimezone.geterrorcode.php * @return int */ public function getErrorCode() { } @@ -3099,7 +3099,7 @@ class IntlTimeZone { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get last error message on the object - * @link http://www.php.net/manual/en/intltimezone.geterrormessage.php + * @link https://secure.php.net/manual/en/intltimezone.geterrormessage.php * @return string */ public function getErrorMessage() { } @@ -3107,7 +3107,7 @@ class IntlTimeZone { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Create GMT (UTC) timezone - * @link http://www.php.net/manual/en/intltimezone.getgmt.php + * @link https://secure.php.net/manual/en/intltimezone.getgmt.php * @return IntlTimeZone */ public static function getGMT() { } @@ -3122,7 +3122,7 @@ class IntlTimeZone { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the time zone raw and GMT offset for the given moment in time - * @link http://www.php.net/manual/en/intltimezone.getoffset.php + * @link https://secure.php.net/manual/en/intltimezone.getoffset.php * @param float $date * @param bool $local * @param int $rawOffset @@ -3133,7 +3133,7 @@ class IntlTimeZone { /** * Get the raw GMT offset (before taking daylight savings time into account - * @link http://www.php.net/manual/en/intltimezone.getrawoffset.php + * @link https://secure.php.net/manual/en/intltimezone.getrawoffset.php * @return int */ public function getRawOffset() { } @@ -3141,7 +3141,7 @@ class IntlTimeZone { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the timezone data version currently used by ICU - * @link http://www.php.net/manual/en/intltimezone.gettzdataversion.php + * @link https://secure.php.net/manual/en/intltimezone.gettzdataversion.php * @return string */ public static function getTZDataVersion() { } @@ -3149,7 +3149,7 @@ class IntlTimeZone { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Check if this zone has the same rules and offset as another zone - * @link http://www.php.net/manual/en/intltimezone.hassamerules.php + * @link https://secure.php.net/manual/en/intltimezone.hassamerules.php * @param IntlTimeZone $otherTimeZone * @return bool */ @@ -3158,7 +3158,7 @@ class IntlTimeZone { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Convert to DateTimeZone object - * @link http://www.php.net/manual/ru/intltimezone.todatetimezone.php + * @link https://secure.php.net/manual/ru/intltimezone.todatetimezone.php * @return DateTimeZone */ public function toDateTimeZone() { } @@ -3166,7 +3166,7 @@ class IntlTimeZone { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Check if this time zone uses daylight savings time - * @link http://www.php.net/manual/ru/intltimezone.usedaylighttime.php + * @link https://secure.php.net/manual/ru/intltimezone.usedaylighttime.php * @return bool */ public function useDaylightTime() { } @@ -4096,7 +4096,7 @@ function datefmt_get_timezone_id(MessageFormatter $mf) { } /** * (PHP 5 >= 5.3.0, PECL intl >= 3.0.0)
    * Get copy of formatter's calendar object - * @link http://www.php.net/manual/en/intldateformatter.getcalendarobject.php + * @link https://secure.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() { } @@ -4104,7 +4104,7 @@ function datefmt_get_calendar_object() { } /** * (PHP 5 >= 5.5.0, PECL intl >= 3.0.0)
    * Get formatter's timezone - * @link http://www.php.net/manual/en/intldateformatter.gettimezone.php + * @link https://secure.php.net/manual/en/intldateformatter.gettimezone.php * @return IntlTimeZone|bool The associated IntlTimeZone object or FALSE on failure. */ function datefmt_get_timezone() { } @@ -4119,7 +4119,7 @@ function datefmt_get_timezone() { } * If NULL or the empty string, the default time zone for the runtime is used. *

    * @return bool TRUE on success or FALSE on failure. - * @deprecated 5.5 http://www.php.net/manual/en/migration55.deprecated.php + * @deprecated 5.5 https://secure.php.net/manual/en/migration55.deprecated.php */ function datefmt_set_timezone_id(MessageFormatter $mf, $zone) { } @@ -4135,26 +4135,26 @@ function datefmt_set_timezone_id(MessageFormatter $mf, $zone) { } *
  • *

    * NULL, in which case the default timezone will be used, as specified in - * the ini setting {@link "http://php.net/manual/en/datetime.configuration.php#ini.date.timezone" date.timezone} or - * through the function {@link "http://php.net/manual/en/function.date-default-timezone-set.php" date_default_timezone_set()} and as - * returned by {@link "http://php.net/manual/en/function.date-default-timezone-get.php" date_default_timezone_get()}. + * 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()}. *

    *
  • *
  • *

    - * An {@link "http://php.net/manual/en/class.intltimezone.php" IntlTimeZone}, which will be used directly. + * An {@link "https://secure.php.net/manual/en/class.intltimezone.php" IntlTimeZone}, which will be used directly. *

    *
  • *
  • *

    - * A {@link "http://php.net/manual/en/class.datetimezone.php" DateTimeZone}. Its identifier will be extracted + * A {@link "https://secure.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. *

    *
  • *
  • *

    - * A {@link "http://php.net/manual/en/language.types.string.php" string}, which should be a valid ICU timezone identifier. + * A {@link "https://secure.php.net/manual/en/language.types.string.php" string}, which should be a valid ICU timezone identifier. * See IntlTimeZone::createTimeZoneIDEnumeration(). Raw offsets such as "GMT+08:30" are also accepted. *

    *
  • @@ -4226,12 +4226,12 @@ function datefmt_format(MessageFormatter $mf, $value) { } /** * (PHP 5 >= 5.5.0, PECL intl >= 3.0.0)
    * Formats an object - * @link http://www.php.net/manual/en/intldateformatter.formatobject.php + * @link https://secure.php.net/manual/en/intldateformatter.formatobject.php * @param object $object

    * An object of type IntlCalendar or DateTime. The timezone information in the object will be used. *

    * @param mixed $format [optional]

    - * How to format the date/time. This can either be an {http://www.php.net/manual/en/language.types.array.php array} with + * How to format the date/time. This can either be an {https://secure.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 IntlDateFormatter::NONE, * IntlDateFormatter::SHORT, @@ -4239,7 +4239,7 @@ function datefmt_format(MessageFormatter $mf, $value) { } * IntlDateFormatter::LONG, * IntlDateFormatter::FULL), 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 http://www.php.net/manual/en/language.types.string.php} with the format + * for the time and the date) or a {@link https://secure.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 NULL, the default style will be used. *

    @@ -4556,7 +4556,7 @@ function idn_to_utf8($domain, $options = 0, $variant = INTL_IDNA_VARIANT_2003, a /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Create a new IntlCalendar - * @link http://www.php.net/manual/en/intlcalendar.createinstance.php + * @link https://secure.php.net/manual/en/intlcalendar.createinstance.php * @param mixed $timeZone [optional]

    * The timezone to use. *

    @@ -4565,26 +4565,26 @@ function idn_to_utf8($domain, $options = 0, $variant = INTL_IDNA_VARIANT_2003, a *
  • *

    * NULL, in which case the default timezone will be used, as specified in - * the ini setting {@link http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone date.timezone} or - * through the function {@link http://www.php.net/manual/en/function.date-default-timezone-set.php date_default_timezone_set()} and as - * returned by {@link http://www.php.net/manual/en/function.date-default-timezone-get.php date_default_timezone_get()}. + * 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()}. *

    *
  • *
  • *

    - * An {@link http://www.php.net/manual/en/class.intltimezone.php IntlTimeZone}, which will be used directly. + * An {@link https://secure.php.net/manual/en/class.intltimezone.php IntlTimeZone}, which will be used directly. *

    *
  • *
  • *

    - * A {@link http://www.php.net/manual/en/class.datetimezone.php DateTimeZone}. Its identifier will be extracted + * A {@link https://secure.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. *

    *
  • *
  • *

    - * A {@link http://www.php.net/manual/en/language.types.string.php string}, which should be a valid ICU timezone identifier. + * A {@link https://secure.php.net/manual/en/language.types.string.php string}, which should be a valid ICU timezone identifier. * See IntlTimeZone::createTimeZoneIDEnumeration(). Raw * offsets such as "GMT+08:30" are also accepted. *

    @@ -4592,10 +4592,10 @@ function idn_to_utf8($domain, $options = 0, $variant = INTL_IDNA_VARIANT_2003, a * *

    * @param string $locale [optional]

    - * A locale to use or NULL to use {@link http://www.php.net/manual/en/intl.configuration.php#ini.intl.default-locale the default locale}. + * A locale to use or NULL to use {@link https://secure.php.net/manual/en/intl.configuration.php#ini.intl.default-locale the default locale}. *

    * @return IntlCalendar - * The created {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} instance or NULL on + * The created {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} instance or NULL on * failure. */ function intlcal_create_instance($timeZone = NULL, $locale = NULL) { } @@ -4621,7 +4621,7 @@ function intlcal_get_keyword_values_for_locale($key, $locale, $commonlyUsed) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get number representing the current time - * @link http://www.php.net/manual/en/intlcalendar.getnow.php + * @link https://secure.php.net/manual/en/intlcalendar.getnow.php * @return float A float representing a number of milliseconds since the epoch, not counting leap seconds. */ function intlcal_get_now() { } @@ -4629,7 +4629,7 @@ function intlcal_get_now() { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get array of locales for which there is data - * @link http://www.php.net/manual/en/intlcalendar.getavailablelocales.php + * @link https://secure.php.net/manual/en/intlcalendar.getavailablelocales.php * @return array An array of strings, one for which locale. */ @@ -4638,12 +4638,12 @@ function intlcal_get_available_locales() { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the value for a field - * @link http://www.php.net/manual/en/intlcalendar.get.php + * @link https://secure.php.net/manual/en/intlcalendar.get.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    * @param int $field

    - * One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer + * 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 * values between 0 and * IntlCalendar::FIELD_COUNT. *

    @@ -4656,7 +4656,7 @@ function intl_get($calendar, $field) { } * Get time currently represented by the object * @param IntlCalendar $calendar

    The calendar whose time will be checked against this object's time.

    * @return float - * A {@link http://www.php.net/manual/en/language.types.float.php float} representing the number of milliseconds elapsed since the + * A {@link https://secure.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). */ function intlcal_get_time($calendar) { } @@ -4664,7 +4664,7 @@ function intlcal_get_time($calendar) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Set the calendar time in milliseconds since the epoch - * @link http://www.php.net/manual/en/intlcalendar.settime.php + * @link https://secure.php.net/manual/en/intlcalendar.settime.php * @param float $date

    * An instant represented by the number of number of milliseconds between * such instant and the epoch, ignoring leap seconds. @@ -4677,12 +4677,12 @@ function intlcal_set_time($date) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Add a (signed) amount of time to a field - * @link http://www.php.net/manual/en/intlcalendar.add.php + * @link https://secure.php.net/manual/en/intlcalendar.add.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    * @param int $field

    - * One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. + * 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 values between 0 and * IntlCalendar::FIELD_COUNT. *

    @@ -4695,7 +4695,7 @@ function intlcal_add($calendar, $field, $amount) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Set the timezone used by this calendar - * @link http://www.php.net/manual/en/intlcalendar.settimezone.php + * @link https://secure.php.net/manual/en/intlcalendar.settimezone.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    @@ -4707,26 +4707,26 @@ function intlcal_add($calendar, $field, $amount) { } *
  • *

    * NULL, in which case the default timezone will be used, as specified in - * the ini setting {@link http://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone date.timezone} or - * through the function {@link http://www.php.net/manual/en/function.date-default-timezone-set.php date_default_timezone_set()} and as - * returned by {@link http://www.php.net/manual/en/function.date-default-timezone-get.php date_default_timezone_get()}. + * 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()}. *

    *
  • *
  • *

    - * An {@link http://www.php.net/manual/en/class.intltimezone.php IntlTimeZone}, which will be used directly. + * An {@link https://secure.php.net/manual/en/class.intltimezone.php IntlTimeZone}, which will be used directly. *

    *
  • *
  • *

    - * A {@link http://www.php.net/manual/en/class.datetimezone.php DateTimeZone}. Its identifier will be extracted + * A {@link https://secure.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. *

    *
  • *
  • *

    - * A {@link http://www.php.net/manual/en/language.types.string.php string}, which should be a valid ICU timezone identifier. + * A {@link https://secure.php.net/manual/en/language.types.string.php string}, which should be a valid ICU timezone identifier. * See IntlTimeZone::createTimeZoneIDEnumeration(). Raw * offsets such as "GMT+08:30" are also accepted. *

    @@ -4739,7 +4739,7 @@ function intlcal_set_time_zone($calendar, $timeZone) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Whether this object's time is after that of the passed object - * http://www.php.net/manual/en/intlcalendar.after.php + * https://secure.php.net/manual/en/intlcalendar.after.php * @param IntlCalendar $calendarObject

    * The calendar object, on the procedural style interface. *

    @@ -4747,15 +4747,15 @@ function intlcal_set_time_zone($calendar, $timeZone) { } * @return bool * Returns TRUE if this object's current time is after that of the * calendar argument's time. Returns FALSE otherwise. - * Also returns FALSE on failure. You can use {@link http://www.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or - * {@link http://www.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to detect error conditions. + * Also returns FALSE 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. */ function intlcal_after(IntlCalendar $calendarObject, IntlCalendar $calendar) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Whether this object's time is before that of the passed object - * @link http://www.php.net/manual/en/intlcalendar.before.php + * @link https://secure.php.net/manual/en/intlcalendar.before.php * @param IntlCalendar $calendarObject

    * The calendar object, on the procedural style interface. *

    @@ -4763,8 +4763,8 @@ function intlcal_after(IntlCalendar $calendarObject, IntlCalendar $calendar) { } * @return bool * Returns TRUE if this object's current time is before that of the * calendar argument's time. Returns FALSE otherwise. - * Also returns FALSE on failure. You can use {@link http://www.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or - * {@link http://www.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to detect error conditions. + * Also returns FALSE 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. *

    */ function intlcal_before(IntlCalendar $calendarObject, IntlCalendar $calendar) { } @@ -4773,12 +4773,12 @@ function intlcal_before(IntlCalendar $calendarObject, IntlCalendar $calendar) { /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Set a time field or several common fields at once - * @link http://www.php.net/manual/en/intlcalendar.set.php + * @link https://secure.php.net/manual/en/intlcalendar.set.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    * @param int $year

    - * One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer + * 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 * values between 0 and * IntlCalendar::FIELD_COUNT. *

    @@ -4809,13 +4809,13 @@ function intlcal_set($calendar, $year, $month, $dayOfMonth = NULL, $hour = NULL, /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Add value to field without carrying into more significant fields - * @link http://www.php.net/manual/en/intlcalendar.roll.php + * @link https://secure.php.net/manual/en/intlcalendar.roll.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    * @param int $field

    One of the - * {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time - * {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. + * {@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 values between 0 and * IntlCalendar::FIELD_COUNT. *

    @@ -4831,12 +4831,12 @@ function intlcal_roll($calendar, $field, $amountOrUpOrDown) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Clear a field or all fields - * @link http://www.php.net/manual/en/intlcalendar.clear.php + * @link https://secure.php.net/manual/en/intlcalendar.clear.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    * @param int $field [optional]

    - * One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer + * 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 * values between 0 and * IntlCalendar::FIELD_COUNT. *

    @@ -4847,7 +4847,7 @@ function intlcal_clear($calendar, $field = NULL) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Calculate difference between given time and this object's time - * @link http://www.php.net/manual/en/intlcalendar.fielddifference.php + * @link https://secure.php.net/manual/en/intlcalendar.fielddifference.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    @@ -4862,7 +4862,7 @@ function intlcal_clear($calendar, $field = NULL) { } *

    * *

    - * One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer + * 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 * values between 0 and * IntlCalendar::FIELD_COUNT. *

    @@ -4876,17 +4876,17 @@ function intlcal_field_difference($calendar, $when, $field) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * The maximum value for a field, considering the object's current time - * @link http://www.php.net/manual/en/intlcalendar.getactualmaximum.php + * @link https://secure.php.net/manual/en/intlcalendar.getactualmaximum.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    * @param int $field

    - * One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer + * 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 * values between 0 and * IntlCalendar::FIELD_COUNT. *

    * @return int - * An {@link http://www.php.net/manual/en/language.types.integer.php int} representing the maximum value in the units associated + * An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing the maximum value in the units associated * with the given field or FALSE on failure. */ function intlcal_get_actual_maximum($calendar, $field) { } @@ -4894,24 +4894,24 @@ function intlcal_get_actual_maximum($calendar, $field) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * The minimum value for a field, considering the object's current time - * @link http://www.php.net/manual/en/intlcalendar.getactualminimum.php + * @link https://secure.php.net/manual/en/intlcalendar.getactualminimum.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    * @param int $field

    - * One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. + * 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 values between 0 and * IntlCalendar::FIELD_COUNT. *

    * @return int - * An {@link http://www.php.net/manual/en/language.types.integer.php int} representing the minimum value in the field's + * An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing the minimum value in the field's * unit or FALSE on failure. */ function intlcal_get_actual_minimum($calendar, $field) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    - * @link http://www.php.net/manual/en/intlcalendar.getdayofweektype.php + * @link https://secure.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

    * The calendar object, on the procedural style interface. @@ -4934,7 +4934,7 @@ function intlcal_get_day_of_week_type($calendar, $dayOfWeek) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the first day of the week for the calendar's locale - * @link http://www.php.net/manual/en/intlcalendar.getfirstdayofweek.php + * @link https://secure.php.net/manual/en/intlcalendar.getfirstdayofweek.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    @@ -4949,16 +4949,16 @@ function intlcal_get_first_day_of_week($calendar) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the largest local minimum value for a field - * @link http://www.php.net/manual/en/intlcalendar.getgreatestminimum.php + * @link https://secure.php.net/manual/en/intlcalendar.getgreatestminimum.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    * @param int $field

    - * One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer + * 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 * values between 0 and * IntlCalendar::FIELD_COUNT. * @return int - * An {@link http://www.php.net/manual/en/language.types.integer.php int} representing a field value, in the field's + * An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing a field value, in the field's * unit, or FALSE on failure. */ function intlcal_greates_minimum($calendar, $field) { } @@ -4982,17 +4982,17 @@ function intlcal_get($calendar, $index) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the smallest local maximum for a field - * @link http://www.php.net/manual/en/intlcalendar.getleastmaximum.php + * @link https://secure.php.net/manual/en/intlcalendar.getleastmaximum.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    * @param int $field

    - * One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer + * 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 * values between 0 and * IntlCalendar::FIELD_COUNT. *

    * @return int - * An {@link http://www.php.net/manual/en/language.types.integer.ph int} representing a field value in the field's + * An {@link https://secure.php.net/manual/en/language.types.integer.ph int} representing a field value in the field's * unit or FALSE on failure. *

    */ @@ -5001,16 +5001,16 @@ function intlcal_get_least_maximum($calendar, $field) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the largest local minimum value for a field - * @link http://www.php.net/manual/en/intlcalendar.getgreatestminimum.php + * @link https://secure.php.net/manual/en/intlcalendar.getgreatestminimum.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    * @param int $field

    - * One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer + * 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 * values between 0 and * IntlCalendar::FIELD_COUNT. * @return int - * An {@link http://www.php.net/manual/en/language.types.integer.php int} representing a field value, in the field's + * An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing a field value, in the field's * unit, or FALSE on failure. */ function intlcal_get_greatest_minimum($calendar, $field) { } @@ -5018,7 +5018,7 @@ function intlcal_get_greatest_minimum($calendar, $field) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the locale associated with the object - * @link http://www.php.net/manual/en/intlcalendar.getlocale.php + * @link https://secure.php.net/manual/en/intlcalendar.getlocale.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    @@ -5039,12 +5039,12 @@ function intlcal_get_locale($calendar, $localeType) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the global maximum value for a field - * @link http://www.php.net/manual/en/intlcalendar.getmaximum.php + * @link https://secure.php.net/manual/en/intlcalendar.getmaximum.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    * @param int $field

    - * One of the {@link www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer + * 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 * values between 0 and * IntlCalendar::FIELD_COUNT. *

    @@ -5056,25 +5056,25 @@ function intcal_get_maximum($calendar, $field) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    - * @link http://www.php.net/manual/en/intlcalendar.getminimaldaysinfirstweek.php + * @link https://secure.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

    * The calendar object, on the procedural style interface. *

    * @return int - * An {@link http://www.php.net/manual/en/language.types.integer.php int} representing a number of days or FALSE on failure. + * An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing a number of days or FALSE on failure. */ function intlcal_get_minimal_days_in_first_week($calendar) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the global minimum value for a field - * @link http://www.php.net/manual/en/intlcalendar.getminimum.php + * @link https://secure.php.net/manual/en/intlcalendar.getminimum.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    * @param int $field

    - * One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field}. These are integer + * 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 * values between 0 and * IntlCalendar::FIELD_COUNT. *

    @@ -5086,12 +5086,12 @@ function intlcal_get_minimum($calendar, $field) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the object's timezone - * @link http://www.php.net/manual/en/intlcalendar.gettimezone.php + * @link https://secure.php.net/manual/en/intlcalendar.gettimezone.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    * @return IntlTimeZone - * An {@link http://www.php.net/manual/en/class.intltimezone.php IntlTimeZone} object corresponding to the one used + * An {@link https://secure.php.net/manual/en/class.intltimezone.php IntlTimeZone} object corresponding to the one used * internally in this object. */ function intlcal_get_time_zone($calendar) { } @@ -5099,12 +5099,12 @@ function intlcal_get_time_zone($calendar) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the calendar type - * @link http://www.php.net/manual/en/intlcalendar.gettype.php + * @link https://secure.php.net/manual/en/intlcalendar.gettype.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    * @return string - * A {@link http://www.php.net/manual/en/language.types.string.php string} representing the calendar type, such as + * A {@link https://secure.php.net/manual/en/language.types.string.php string} representing the calendar type, such as * 'gregorian', 'islamic', etc. */ function intlcal_get_type($calendar) { } @@ -5112,7 +5112,7 @@ function intlcal_get_type($calendar) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get time of the day at which weekend begins or ends - * @link http://www.php.net/manual/en/intlcalendar.getweekendtransition.php + * @link https://secure.php.net/manual/en/intlcalendar.getweekendtransition.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    @@ -5130,39 +5130,39 @@ function intlcal_get_weekend_transition($calendar, $dayOfWeek) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Whether the object's time is in Daylight Savings Time - * @link http://www.php.net/manual/en/intlcalendar.indaylighttime.php + * @link https://secure.php.net/manual/en/intlcalendar.indaylighttime.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    * @return bool * Returns TRUE if the date is in Daylight Savings Time, FALSE otherwise. * The value FALSE may also be returned on failure, for instance after - * specifying invalid field values on non-lenient mode; use {@link http://www.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or query - * {@link http://www.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://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. */ function intlcal_in_daylight_time($calendar) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Whether date/time interpretation is in lenient mode - * @link http://www.php.net/manual/en/intlcalendar.islenient.php + * @link https://secure.php.net/manual/en/intlcalendar.islenient.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    * @return bool - * A {@link http://www.php.net/manual/en/language.types.boolean.php bool} representing whether the calendar is set to lenient mode. + * A {@link https://secure.php.net/manual/en/language.types.boolean.php bool} representing whether the calendar is set to lenient mode. */ function intlcal_is_lenient($calendar) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Whether a field is set - * @link http://www.php.net/manual/en/intlcalendar.isset.php + * @link https://secure.php.net/manual/en/intlcalendar.isset.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    * @param int $field

    - * One of the {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer + * 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 * values between 0 and * IntlCalendar::FIELD_COUNT. *

    @@ -5173,12 +5173,12 @@ function intlcal_is_set($calendar, $field) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the global maximum value for a field - * @link http://www.php.net/manual/en/intlcalendar.getmaximum.php + * @link https://secure.php.net/manual/en/intlcalendar.getmaximum.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    * @param int $field

    - * One of the {@link www.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link http://www.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer + * 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 * values between 0 and * IntlCalendar::FIELD_COUNT. *

    @@ -5190,7 +5190,7 @@ function intlcal_get_maximum($calendar, $field) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Whether another calendar is equal but for a different time - * @link http://www.php.net/manual/en/intlcalendar.isequivalentto.php + * @link https://secure.php.net/manual/en/intlcalendar.isequivalentto.php * @param IntlCalendar $calendarObject

    * The calendar object, on the procedural style interface. *

    @@ -5203,7 +5203,7 @@ function intlcal_is_equivalent_to(IntlCalendar $calendarObject, IntlCalendar $ca /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Whether a certain date/time is in the weekend - * @link http://www.php.net/manual/en/intlcalendar.isweekend.php + * @link https://secure.php.net/manual/en/intlcalendar.isweekend.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    @@ -5213,13 +5213,13 @@ function intlcal_is_equivalent_to(IntlCalendar $calendarObject, IntlCalendar $ca * used instead. *

    * @return bool - *

    A {@link http://www.php.net/manual/en/language.types.boolean.php bool} indicating whether the given or this object's time occurs + *

    A {@link https://secure.php.net/manual/en/language.types.boolean.php bool} indicating whether the given or this object's time occurs * in a weekend. *

    *

    * The value FALSE may also be returned on failure, for instance after giving - * a date out of bounds on non-lenient mode; use {@link http://www.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or query - * {@link http://www.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to disambiguate.

    + * 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.

    */ function intlcal_is_weekend($calendar, $date = NULL) { } @@ -5227,7 +5227,7 @@ function intlcal_is_weekend($calendar, $date = NULL) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Set the day on which the week is deemed to start - * @link http://www.php.net/manual/en/intlcalendar.setfirstdayofweek.php + * @link https://secure.php.net/manual/en/intlcalendar.setfirstdayofweek.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    @@ -5243,7 +5243,7 @@ function intlcal_set_first_day_of_week($calendar, $dayOfWeek) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Set whether date/time interpretation is to be lenient - * @link http://www.php.net/manual/en/intlcalendar.setlenient.php + * @link https://secure.php.net/manual/en/intlcalendar.setlenient.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    @@ -5258,7 +5258,7 @@ function intlcal_set_lenient($calendar, $isLenient) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get behavior for handling repeating wall time - * @link http://www.php.net/manual/en/intlcalendar.getrepeatedwalltimeoption.php + * @link https://secure.php.net/manual/en/intlcalendar.getrepeatedwalltimeoption.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    @@ -5272,17 +5272,17 @@ function intlcal_get_repeated_wall_time_option($calendar) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Compare time of two IntlCalendar objects for equality - * @link http://www.php.net/manual/en/intlcalendar.equals.php + * @link https://secure.php.net/manual/en/intlcalendar.equals.php * @param IntlCalendar $calendarObject

    * The calendar object, on the procedural style interface. *

    * @param IntlCalendar $calendar * @return bool

    * Returns TRUE if the current time of both this and the passed in - * {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} object are the same, or FALSE + * {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} object are the same, or FALSE * otherwise. The value FALSE 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 http://www.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()}. + * distinguished by calling {@link https://secure.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()}. *

    */ function intlcal_equals($calendarObject, $calendar) { } @@ -5290,7 +5290,7 @@ function intlcal_equals($calendarObject, $calendar) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get behavior for handling skipped wall time - * @link http://www.php.net/manual/en/intlcalendar.getskippedwalltimeoption.php + * @link https://secure.php.net/manual/en/intlcalendar.getskippedwalltimeoption.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    @@ -5304,7 +5304,7 @@ function intlcal_get_skipped_wall_time_option($calendar) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Set behavior for handling repeating wall times at negative timezone offset transitions - * @link http://www.php.net/manual/en/intlcalendar.setrepeatedwalltimeoption.php + * @link https://secure.php.net/manual/en/intlcalendar.setrepeatedwalltimeoption.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    @@ -5321,7 +5321,7 @@ function intlcal_set_repeated_wall_time_option($calendar, $wallTimeOption) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Set behavior for handling skipped wall times at positive timezone offset transitions - * @link http://www.php.net/manual/en/intlcalendar.setskippedwalltimeoption.php + * @link https://secure.php.net/manual/en/intlcalendar.setskippedwalltimeoption.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    @@ -5340,15 +5340,15 @@ function intlcal_set_skipped_wall_time_option($calendar, $wallTimeOption) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a2)
    * Create an IntlCalendar from a DateTime object or string - * @link http://www.php.net/manual/en/intlcalendar.fromdatetime.php + * @link https://secure.php.net/manual/en/intlcalendar.fromdatetime.php * @param mixed $dateTime

    - * A {@link http://www.php.net/manual/en/class.datetime.php DateTime} object or a {@link http://www.php.net/manual/en/language.types.string.php string} that - * can be passed to {@link http://www.php.net/manual/en/datetime.construct.php DateTime::__construct()}. + * 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()}. *

    * @return IntlCalendar - * The created {@link http://www.php.net/manual/en/class.intlcalendar.php IntlCalendar} object or NULL in case of - * failure. If a {@link http://www.php.net/manual/en/language.types.string.php string} is passed, any exception that occurs - * inside the {@link http://www.php.net/manual/en/class.datetime.php DateTime} constructor is propagated. + * The created {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} object or NULL 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. */ function intlcal_from_date_time($dateTime) { } @@ -5356,12 +5356,12 @@ function intlcal_from_date_time($dateTime) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a2)
    * Convert an IntlCalendar into a DateTime object - * @link http://www.php.net/manual/en/intlcalendar.todatetime.php + * @link https://secure.php.net/manual/en/intlcalendar.todatetime.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    * @return DateTime|bool - * A {@link http://www.php.net/manual/en/class.datetime.php DateTime} object with the same timezone as this + * A {@link https://secure.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 FALSE on failure. @@ -5372,7 +5372,7 @@ function intlcal_to_date_time($calendar) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get last error code on the object - * @link http://www.php.net/manual/en/intlcalendar.geterrorcode.php + * @link https://secure.php.net/manual/en/intlcalendar.geterrorcode.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    @@ -5384,7 +5384,7 @@ function intlcal_get_error_code($calendar) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get last error message on the object - * @link http://www.php.net/manual/en/intlcalendar.geterrormessage.php + * @link https://secure.php.net/manual/en/intlcalendar.geterrormessage.php * @param IntlCalendar $calendar

    * The calendar object, on the procedural style interface. *

    @@ -5396,7 +5396,7 @@ function intlcal_get_error_message($calendar) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the number of IDs in the equivalency group that includes the given ID - * @link http://www.php.net/manual/en/intltimezone.countequivalentids.php + * @link https://secure.php.net/manual/en/intltimezone.countequivalentids.php * @param string $zoneId * @return int */ @@ -5405,14 +5405,14 @@ function intltz_count_equivalent_ids($zoneId) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Create a new copy of the default timezone for this host - * @link http://www.php.net/manual/en/intltimezone.createdefault.php + * @link https://secure.php.net/manual/en/intltimezone.createdefault.php * @return IntlTimeZone */ function intlz_create_default() { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    - * @link http://www.php.net/manual/en/intltimezone.createenumeration.php + * @link https://secure.php.net/manual/en/intltimezone.createenumeration.php * @param mixed $countryOrRawOffset [optional] * @return IntlIterator */ @@ -5420,7 +5420,7 @@ function intltz_create_enumeration($countryOrRawOffset) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    - * @link http://www.php.net/manual/en/intltimezone.createtimezone.php + * @link https://secure.php.net/manual/en/intltimezone.createtimezone.php * @param string $zoneId * @return IntlTimeZone */ @@ -5428,7 +5428,7 @@ function intltz_create_time_zone($zoneId) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    - * @link http://www.php.net/manual/en/intltimezone.fromdatetimezone.php + * @link https://secure.php.net/manual/en/intltimezone.fromdatetimezone.php * @param DateTimeZone $zoneId * @return IntlTimeZone */ @@ -5437,7 +5437,7 @@ function intltz_from_date_time_zone($zoneId) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the canonical system timezone ID or the normalized custom time zone ID for the given time zone ID - * @link www.php.net/manual/en/intltimezone.getcanonicalid.php + * @link https://secure.php.net/manual/en/intltimezone.getcanonicalid.php * @param string $zoneId * @param bool $isSystemID [optional] * @return string @@ -5463,7 +5463,7 @@ function intltz_get_display_name($obj, $isDaylight, $style, $locale) { } * @param IntlTimeZone $obj -

    * The time zone object, on the procedural style interface. *

    - * @link http://www.php.net/manual/en/intltimezone.getequivalentid.php + * @link https://secure.php.net/manual/en/intltimezone.getequivalentid.php * @return int */ function intltz_get_dst_savings($obj) { } @@ -5471,7 +5471,7 @@ function intltz_get_dst_savings($obj) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get an ID in the equivalency group that includes the given ID - * @link http://www.php.net/manual/en/intltimezone.getequivalentid.php + * @link https://secure.php.net/manual/en/intltimezone.getequivalentid.php * @param string $zoneId * @param int $index * @return string @@ -5481,7 +5481,7 @@ function intltz_get_equivalent_id($zoneId, $index) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get last error code on the object - * @link http://www.php.net/manual/en/intltimezone.geterrorcode.php + * @link https://secure.php.net/manual/en/intltimezone.geterrorcode.php * @param IntlTimeZone $obj -

    * The time zone object, on the procedural style interface. *

    @@ -5492,7 +5492,7 @@ function intltz_get_error_code($obj) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get last error message on the object - * @link http://www.php.net/manual/en/intltimezone.geterrormessage.php + * @link https://secure.php.net/manual/en/intltimezone.geterrormessage.php * @param IntlTimeZone $obj -

    * The time zone object, on the procedural style interface. *

    @@ -5503,7 +5503,7 @@ function intltz_get_error_message($obj) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Create GMT (UTC) timezone - * @link http://www.php.net/manual/en/intltimezone.getgmt.php + * @link https://secure.php.net/manual/en/intltimezone.getgmt.php * @return IntlTimeZone */ function intltz_getGMT() { } @@ -5511,7 +5511,7 @@ function intltz_getGMT() { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get timezone ID - * @link http://www.php.net/manual/en/intltimezone.getid.php + * @link https://secure.php.net/manual/en/intltimezone.getid.php * @param IntlTimeZone $obj * @return string */ @@ -5520,7 +5520,7 @@ function intltz_get_id($obj) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the time zone raw and GMT offset for the given moment in time - * @link http://www.php.net/manual/en/intltimezone.getoffset.php + * @link https://secure.php.net/manual/en/intltimezone.getoffset.php * @param IntlTimeZone $obj * @param float $date * @param bool $local @@ -5532,7 +5532,7 @@ function intltz_get_offset($obj, $date, $local, &$rawOffset, &$dstOffset) { } /** * Get the raw GMT offset (before taking daylight savings time into account - * @link http://www.php.net/manual/en/intltimezone.getrawoffset.php + * @link https://secure.php.net/manual/en/intltimezone.getrawoffset.php * @param IntlTimeZone $obj * @return int */ @@ -5541,7 +5541,7 @@ function intltz_get_raw_offset($obj) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Get the timezone data version currently used by ICU - * @link http://www.php.net/manual/en/intltimezone.gettzdataversion.php + * @link https://secure.php.net/manual/en/intltimezone.gettzdataversion.php * @param IntlTimeZone $obj * @return string */ @@ -5550,7 +5550,7 @@ function intltz_get_tz_data_version($obj) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Check if this zone has the same rules and offset as another zone - * @link http://www.php.net/manual/en/intltimezone.hassamerules.php + * @link https://secure.php.net/manual/en/intltimezone.hassamerules.php * @param IntlTimeZone $obj * @param IntlTimeZone $otherTimeZone * @return bool @@ -5560,7 +5560,7 @@ function intltz_has_same_rules($obj, $otherTimeZone) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Convert to DateTimeZone object - * @link http://www.php.net/manual/ru/intltimezone.todatetimezone.php + * @link https://secure.php.net/manual/ru/intltimezone.todatetimezone.php * @param $obj * @return DateTimeZone */ @@ -5569,7 +5569,7 @@ function intltz_to_date_time_zone($obj) { } /** * (PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)
    * Check if this time zone uses daylight savings time - * @link http://www.php.net/manual/ru/intltimezone.usedaylighttime.php + * @link https://secure.php.net/manual/ru/intltimezone.usedaylighttime.php * @param $obj * @return bool */ @@ -6042,62 +6042,62 @@ define ('INTL_IDNA_VARIANT_UTS46', 1); */ define ('IDNA_ERROR_EMPTY_LABEL', 1); /** - * @link http://www.php.net/manual/en/migration54.global-constants.php + * @link https://secure.php.net/manual/en/migration54.global-constants.php * @since 5.4 */ define ('IDNA_ERROR_LABEL_TOO_LONG', 2); /** - * @link http://www.php.net/manual/en/migration54.global-constants.php + * @link https://secure.php.net/manual/en/migration54.global-constants.php * @since 5.4 */ define ('IDNA_ERROR_DOMAIN_NAME_TOO_LONG', 4); /** - * @link http://www.php.net/manual/en/migration54.global-constants.php + * @link https://secure.php.net/manual/en/migration54.global-constants.php * @since 5.4 */ define ('IDNA_ERROR_LEADING_HYPHEN', 8); /** - * @link http://www.php.net/manual/en/migration54.global-constants.php + * @link https://secure.php.net/manual/en/migration54.global-constants.php * @since 5.4 */ define ('IDNA_ERROR_TRAILING_HYPHEN', 16); /** - * @link http://www.php.net/manual/en/migration54.global-constants.php + * @link https://secure.php.net/manual/en/migration54.global-constants.php * @since 5.4 */ define ('IDNA_ERROR_HYPHEN_3_4', 32); /** - * @link http://www.php.net/manual/en/migration54.global-constants.php + * @link https://secure.php.net/manual/en/migration54.global-constants.php * @since 5.4 */ define ('IDNA_ERROR_LEADING_COMBINING_MARK', 64); /** - * @link http://www.php.net/manual/en/migration54.global-constants.php + * @link https://secure.php.net/manual/en/migration54.global-constants.php * @since 5.4 */ define ('IDNA_ERROR_DISALLOWED', 128); /** - * @link http://www.php.net/manual/en/migration54.global-constants.php + * @link https://secure.php.net/manual/en/migration54.global-constants.php * @since 5.4 */ define ('IDNA_ERROR_PUNYCODE', 256); /** - * @link http://www.php.net/manual/en/migration54.global-constants.php + * @link https://secure.php.net/manual/en/migration54.global-constants.php * @since 5.4 */ define ('IDNA_ERROR_LABEL_HAS_DOT', 512); /** - * @link http://www.php.net/manual/en/migration54.global-constants.php + * @link https://secure.php.net/manual/en/migration54.global-constants.php * @since 5.4 */ define ('IDNA_ERROR_INVALID_ACE_LABEL', 1024); /** - * @link http://www.php.net/manual/en/migration54.global-constants.php + * @link https://secure.php.net/manual/en/migration54.global-constants.php * @since 5.4 */ define ('IDNA_ERROR_BIDI', 2048); /** - * @link http://www.php.net/manual/en/migration54.global-constants.php + * @link https://secure.php.net/manual/en/migration54.global-constants.php * @since 5.4 */ define ('IDNA_ERROR_CONTEXTJ', 4096); @@ -6135,7 +6135,7 @@ class IntlBreakIterator implements Traversable { /** * (PHP 5 >=5.5.0)
    * Create break iterator for boundaries of combining character sequences - * @link http://www.php.net/manual/en/intlbreakiterator.createcharacterinstance.php + * @link https://secure.php.net/manual/en/intlbreakiterator.createcharacterinstance.php * @param string $locale * @return IntlBreakIterator */ @@ -6144,7 +6144,7 @@ class IntlBreakIterator implements Traversable { /** * (PHP 5 >=5.5.0)
    * Create break iterator for boundaries of code points - * @link http://www.php.net/manual/en/intlbreakiterator.createcodepointinstance.php + * @link https://secure.php.net/manual/en/intlbreakiterator.createcodepointinstance.php * @return IntlBreakIterator */ public static function createCodePointInstance() { } @@ -6152,7 +6152,7 @@ class IntlBreakIterator implements Traversable { /** * (PHP 5 >=5.5.0)
    * Create break iterator for logically possible line breaks - * @link http://www.php.net/manual/en/intlbreakiterator.createlineinstance.php + * @link https://secure.php.net/manual/en/intlbreakiterator.createlineinstance.php * @param string $locale * @return IntlBreakIterator */ @@ -6161,7 +6161,7 @@ class IntlBreakIterator implements Traversable { /** * (PHP 5 >=5.5.0)
    * Create break iterator for sentence breaks - * @link http://www.php.net/manual/en/intlbreakiterator.createsentenceinstance.php + * @link https://secure.php.net/manual/en/intlbreakiterator.createsentenceinstance.php * @param string $locale * @return IntlBreakIterator */ @@ -6170,7 +6170,7 @@ class IntlBreakIterator implements Traversable { /** * (PHP 5 >=5.5.0)
    * Create break iterator for title-casing breaks - * @link http://www.php.net/manual/en/intlbreakiterator.createtitleinstance.php + * @link https://secure.php.net/manual/en/intlbreakiterator.createtitleinstance.php * @param string $locale * @return IntlBreakIterator */ @@ -6179,7 +6179,7 @@ class IntlBreakIterator implements Traversable { /** * (PHP 5 >=5.5.0)
    * Create break iterator for word breaks - * @link http://www.php.net/manual/en/intlbreakiterator.createwordinstance.php + * @link https://secure.php.net/manual/en/intlbreakiterator.createwordinstance.php * @param string $locale * @return IntlBreakIterator */ @@ -6188,7 +6188,7 @@ class IntlBreakIterator implements Traversable { /** * (PHP 5 >=5.5.0)
    * Get index of current position - * @link http://www.php.net/manual/en/intlbreakiterator.current.php + * @link https://secure.php.net/manual/en/intlbreakiterator.current.php * @return int */ public function current() { } @@ -6196,14 +6196,14 @@ class IntlBreakIterator implements Traversable { /** * (PHP 5 >=5.5.0)
    * Set position to the first character in the text - * @link http://www.php.net/manual/en/intlbreakiterator.first.php + * @link https://secure.php.net/manual/en/intlbreakiterator.first.php */ public function first() { } /** * (PHP 5 >=5.5.0)
    * Advance the iterator to the first boundary following specified offset - * @link http://www.php.net/manual/en/intlbreakiterator.following.php + * @link https://secure.php.net/manual/en/intlbreakiterator.following.php * @param int $offset */ public function following($offset) { } @@ -6211,7 +6211,7 @@ class IntlBreakIterator implements Traversable { /** * (PHP 5 >=5.5.0)
    * Get last error code on the object - * @link http://www.php.net/manual/en/intlbreakiterator.geterrorcode.php + * @link https://secure.php.net/manual/en/intlbreakiterator.geterrorcode.php * @return int */ public function getErrorCode() { } @@ -6219,7 +6219,7 @@ class IntlBreakIterator implements Traversable { /** * (PHP 5 >=5.5.0)
    * Get last error message on the object - * @link http://www.php.net/manual/en/intlbreakiterator.geterrormessage.php + * @link https://secure.php.net/manual/en/intlbreakiterator.geterrormessage.php * @return string */ public function getErrorMessage() { } @@ -6228,7 +6228,7 @@ class IntlBreakIterator implements Traversable { /** * (PHP 5 >=5.5.0)
    * Get the locale associated with the object - * @link http://www.php.net/manual/en/intlbreakiterator.getlocale.php + * @link https://secure.php.net/manual/en/intlbreakiterator.getlocale.php * @param string $locale_type */ public function getLocale($locale_type) { } @@ -6236,7 +6236,7 @@ class IntlBreakIterator implements Traversable { /** * (PHP 5 >=5.5.0)
    * Create iterator for navigating fragments between boundaries - * @link http://www.php.net/manual/en/intlbreakiterator.getpartsiterator.php + * @link https://secure.php.net/manual/en/intlbreakiterator.getpartsiterator.php * @param string $key_type [optional] */ public function getPartsIterator($key_type) { } @@ -6244,14 +6244,14 @@ class IntlBreakIterator implements Traversable { /** * (PHP 5 >=5.5.0)
    * Get the text being scanned - * @link http://www.php.net/manual/en/intlbreakiterator.gettext.php + * @link https://secure.php.net/manual/en/intlbreakiterator.gettext.php */ public function getText() { } /** * (PHP 5 >=5.5.0)
    * Tell whether an offset is a boundary's offset - * @link http://www.php.net/manual/en/intlbreakiterator.isboundary.php + * @link https://secure.php.net/manual/en/intlbreakiterator.isboundary.php * @param string $offset */ public function isBoundary($offset) { } @@ -6259,14 +6259,14 @@ class IntlBreakIterator implements Traversable { /** * (PHP 5 >=5.5.0)
    * Set the iterator position to index beyond the last character - * @link http://www.php.net/manual/en/intlbreakiterator.last.php + * @link https://secure.php.net/manual/en/intlbreakiterator.last.php * @return int */ public function last() { } /** * (PHP 5 >=5.5.0)
    - * @link http://www.php.net/manual/en/intlbreakiterator.next.php + * @link https://secure.php.net/manual/en/intlbreakiterator.next.php * @param string $offset [optional] * @return int */ @@ -6274,7 +6274,7 @@ class IntlBreakIterator implements Traversable { /** * (PHP 5 >=5.5.0)
    - * @link http://www.php.net/manual/en/intlbreakiterator.preceding.php + * @link https://secure.php.net/manual/en/intlbreakiterator.preceding.php * @param int $offset */ public function preceding($offset) { } @@ -6282,7 +6282,7 @@ class IntlBreakIterator implements Traversable { /** * (PHP 5 >=5.5.0)
    * Set the iterator position to the boundary immediately before the current - * @link http://www.php.net/manual/en/intlbreakiterator.previous.php + * @link https://secure.php.net/manual/en/intlbreakiterator.previous.php * @return int */ public function previous() { } @@ -6290,7 +6290,7 @@ class IntlBreakIterator implements Traversable { /** * (PHP 5 >=5.5.0)
    * Set the text being scanned - * @link http://www.php.net/manual/en/intlbreakiterator.settext.php + * @link https://secure.php.net/manual/en/intlbreakiterator.settext.php * @param string $text */ public function setText($text) { } @@ -6301,7 +6301,7 @@ class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversabl /* Methods */ /** * (PHP 5 >=5.5.0)
    - * @link http://www.php.net/manual/en/intlbreakiterator.construct.php + * @link https://secure.php.net/manual/en/intlbreakiterator.construct.php * @param string $rules * @param string $areCompiled [optional] */ @@ -6310,7 +6310,7 @@ class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversabl /** * (PHP 5 >=5.5.0)
    * Create break iterator for boundaries of combining character sequences - * @link http://www.php.net/manual/en/intlbreakiterator.createcharacterinstance.php + * @link https://secure.php.net/manual/en/intlbreakiterator.createcharacterinstance.php * @param string $locale * @return IntlRuleBasedBreakIterator */ @@ -6319,7 +6319,7 @@ class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversabl /* * (PHP 5 >=5.5.0)
    * Create break iterator for boundaries of code points - * @link http://www.php.net/manual/en/intlbreakiterator.createcodepointinstance.php + * @link https://secure.php.net/manual/en/intlbreakiterator.createcodepointinstance.php * @return IntlRuleBasedBreakIterator */ public static function createCodePointInstance() { } @@ -6327,7 +6327,7 @@ class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversabl /** * (PHP 5 >=5.5.0)
    * Create break iterator for logically possible line breaks - * @link http://www.php.net/manual/en/intlbreakiterator.createlineinstance.php + * @link https://secure.php.net/manual/en/intlbreakiterator.createlineinstance.php * @param string $locale * @return IntlRuleBasedBreakIterator */ @@ -6336,7 +6336,7 @@ class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversabl /** * (PHP 5 >=5.5.0)
    * Create break iterator for sentence breaks - * @link http://www.php.net/manual/en/intlbreakiterator.createsentenceinstance.php + * @link https://secure.php.net/manual/en/intlbreakiterator.createsentenceinstance.php * @param string $locale * @return IntlRuleBasedBreakIterator */ @@ -6345,7 +6345,7 @@ class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversabl /** * (PHP 5 >=5.5.0)
    * Create break iterator for title-casing breaks - * @link http://www.php.net/manual/en/intlbreakiterator.createtitleinstance.php + * @link https://secure.php.net/manual/en/intlbreakiterator.createtitleinstance.php * @param string $locale * @return IntlRuleBasedBreakIterator */ @@ -6354,7 +6354,7 @@ class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversabl /** * (PHP 5 >=5.5.0)
    * Create break iterator for word breaks - * @link http://www.php.net/manual/en/intlbreakiterator.createwordinstance.php + * @link https://secure.php.net/manual/en/intlbreakiterator.createwordinstance.php * @param string $locale * @return IntlRuleBasedBreakIterator */ @@ -6362,7 +6362,7 @@ class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversabl /** * (PHP 5 >=5.5.0)
    - * @link http://www.php.net/manual/en/intlrulebasedbreakiterator.getbinaryrules.php + * @link https://secure.php.net/manual/en/intlrulebasedbreakiterator.getbinaryrules.php * Get the binary form of compiled rules * @return string */ @@ -6370,7 +6370,7 @@ class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversabl /** * (PHP 5 >=5.5.0)
    - * @link http://www.php.net/manual/en/intlrulebasedbreakiterator.getrules.php + * @link https://secure.php.net/manual/en/intlrulebasedbreakiterator.getrules.php * Get the rule set used to create this object * @return string */ @@ -6378,7 +6378,7 @@ class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversabl /** * (PHP 5 >=5.5.0)
    - * @link http://www.php.net/manual/en/intlrulebasedbreakiterator.getrulesstatus.php + * @link https://secure.php.net/manual/en/intlrulebasedbreakiterator.getrulesstatus.php * Get the largest status value from the break rules that determined the current break position * @return int */ @@ -6386,7 +6386,7 @@ class IntlRuleBasedBreakIterator extends IntlBreakIterator implements Traversabl /** * (PHP 5 >=5.5.0)
    - * @link http://www.php.net/manual/en/intlrulebasedbreakiterator.getrulestatusvec.php + * @link https://secure.php.net/manual/en/intlrulebasedbreakiterator.getrulestatusvec.php * Get the status values from the break rules that determined the current break position * @return array */ @@ -6399,7 +6399,7 @@ class IntlCodePointBreakIterator extends IntlBreakIterator implements Traversabl /** * (PHP 5 >=5.5.0)
    * Get last code point passed over after advancing or receding the iterator - * @link http://www.php.net/manual/en/intlcodepointbreakiterator.getlastcodepoint.php + * @link https://secure.php.net/manual/en/intlcodepointbreakiterator.getlastcodepoint.php * @return int */ public function getLastCodePoint() { } diff --git a/mbstring/mbstring.php b/mbstring/mbstring.php index 08238f28..a8e02e6c 100644 --- a/mbstring/mbstring.php +++ b/mbstring/mbstring.php @@ -1023,7 +1023,7 @@ function mb_ereg_replace ($pattern, $replacement, $string, $option = "msr") {} /** * Perform a regular expresssion seach and replace with multibyte support using a callback - * @link https://www.php.net/manual/en/function.mb-ereg-replace-callback.php + * @link https://https://secure.php.net/manual/en/function.mb-ereg-replace-callback.php * @param string $pattern

    * The regular expression pattern. *

    diff --git a/mcrypt/mcrypt.php b/mcrypt/mcrypt.php index 0b493a15..5f091f93 100644 --- a/mcrypt/mcrypt.php +++ b/mcrypt/mcrypt.php @@ -5,7 +5,7 @@ /** * Deprecated: Encrypt/decrypt data in ECB mode * @link https://php.net/manual/en/function.mcrypt-ecb.php - * @deprecated 5.5 http://www.php.net/manual/en/migration55.deprecated.php + * @deprecated 5.5 https://secure.php.net/manual/en/migration55.deprecated.php * @param string|int $cipher * @param string $key * @param string $data @@ -19,7 +19,7 @@ function mcrypt_ecb ($cipher, $key, $data, $mode) {} /** * Encrypt/decrypt data in CBC mode * @link https://php.net/manual/en/function.mcrypt-cbc.php - * @deprecated 5.5 http://www.php.net/manual/en/migration55.deprecated.php + * @deprecated 5.5 https://secure.php.net/manual/en/migration55.deprecated.php * @param int|string $cipher * @param string $key * @param string $data @@ -34,7 +34,7 @@ function mcrypt_cbc ($cipher, $key, $data, $mode, $iv = null) {} /** * Encrypt/decrypt data in CFB mode * @link https://php.net/manual/en/function.mcrypt-cfb.php - * @deprecated 5.5 http://www.php.net/manual/en/migration55.deprecated.php + * @deprecated 5.5 https://secure.php.net/manual/en/migration55.deprecated.php * @param int|string $cipher * @param string $key * @param string $data @@ -49,7 +49,7 @@ function mcrypt_cfb ($cipher, $key, $data, $mode, $iv = null) {} /** * Encrypt/decrypt data in OFB mode * @link https://php.net/manual/en/function.mcrypt-ofb.php - * @deprecated 5.5 http://www.php.net/manual/en/migration55.deprecated.php + * @deprecated 5.5 https://secure.php.net/manual/en/migration55.deprecated.php * @param int|string $cipher * @param string $key * @param string $data diff --git a/memcache/memcache.php b/memcache/memcache.php index df261539..547d3bdd 100644 --- a/memcache/memcache.php +++ b/memcache/memcache.php @@ -99,7 +99,7 @@ class MemcachePool { /** * (PECL memcache >= 2.1.0)
    * Changes server parameters and status at runtime - * @link http://www.php.net/manual/en/memcache.setserverparams.php + * @link https://secure.php.net/manual/en/memcache.setserverparams.php * @param string $host

    Point to the host where memcached is listening for connections. * Point to the port where memcached is listening for connections. @@ -111,7 +111,7 @@ class MemcachePool { * Controls how often a failed server will be retried, the default value * is 15 seconds. Setting this parameter to -1 disables automatic retry. * Neither this nor the persistent parameter has any - * effect when the extension is loaded dynamically via {@link http://www.php.net/manual/en/function.dl.php dl()}. + * effect when the extension is loaded dynamically via {@link https://secure.php.net/manual/en/function.dl.php dl()}. *

    * @param bool $status [optional]

    * Controls if the server should be flagged as online. Setting this parameter @@ -235,7 +235,7 @@ class MemcachePool { /** * (PECL memcache >= 0.2.0)
    * Delete item from the server - * http://php.net/manual/ru/memcache.delete.php + * https://secure.php.net/manual/ru/memcache.delete.php * @param $key string The key associated with the item to delete. * @param $timeout int [optional] This deprecated parameter is not supported, and defaults to 0 seconds. Do not use this parameter. * @return boolean Returns TRUE on success or FALSE on failure. diff --git a/memcached/memcached.php b/memcached/memcached.php index eea689d1..4b8da2c6 100644 --- a/memcached/memcached.php +++ b/memcached/memcached.php @@ -1255,7 +1255,7 @@ class Memcached { /** * (PECL memcached >= 2.0.0)
    * Set the credentials to use for authentication - * @link http://php.net/manual/en/memcached.setsaslauthdata.php + * @link https://secure.php.net/manual/en/memcached.setsaslauthdata.php * @param string $username

    * The username to use for authentication. *

    diff --git a/mongo/mongo.php b/mongo/mongo.php index 58439f8d..3269620f 100644 --- a/mongo/mongo.php +++ b/mongo/mongo.php @@ -1,7 +1,7 @@ * If connection is not given, or FALSE then connection that would be selected for writes would be closed. In a single-node configuration, that is then the whole connection, but if you are connected to a replica set, close() will only close the connection to the primary server. * If connection is TRUE then all connections as known by the connection manager will be closed. This can include connections that are not referenced in the connection string used to create the object that you are calling close on. @@ -119,7 +119,7 @@ class MongoClient /** * Connects to a database server * - * @link http://www.php.net/manual/en/mongoclient.connect.php + * @link https://secure.php.net/manual/en/mongoclient.connect.php * * @throws MongoConnectionException * @return boolean If the connection was successful. @@ -130,7 +130,7 @@ class MongoClient * @deprecated Use MongoDB::drop() instead. * Drops a database * - * @link http://www.php.net/manual/en/mongoclient.dropdb.php + * @link https://secure.php.net/manual/en/mongoclient.dropdb.php * @param mixed $db The database to drop. Can be a MongoDB object or the name of the database. * @return array The database response. */ @@ -185,16 +185,16 @@ class MongoClient /** * Kills a specific cursor on the server - * @link http://www.php.net/manual/en/mongoclient.killcursor.php + * @link https://secure.php.net/manual/en/mongoclient.killcursor.php * @param string $server_hash

    * The server hash that has the cursor. This can be obtained through - * {@link http://www.php.net/manual/en/mongocursor.info.php MongoCursor::info()}. + * {@link https://secure.php.net/manual/en/mongocursor.info.php MongoCursor::info()}. *

    * @param int|MongoInt64 $id *

    - * The ID of the cursor to kill. You can either supply an {@link http://www.php.net/manual/en/language.types.integer.php int} + * The ID of the cursor to kill. You can either supply an {@link https://secure.php.net/manual/en/language.types.integer.php int} * containing the 64 bit cursor ID, or an object of the - * {@link http://www.php.net/manual/en/class.mongoint64.php MongoInt64} class. The latter is necessary on 32 + * {@link https://secure.php.net/manual/en/class.mongoint64.php MongoInt64} class. The latter is necessary on 32 * bit platforms (and Windows). *

    */ @@ -212,7 +212,7 @@ class MongoClient /** * (PECL mongo >= 1.3.0)
    * Gets a database collection - * @link http://www.php.net/manual/en/mongoclient.selectcollection.php + * @link https://secure.php.net/manual/en/mongoclient.selectcollection.php * @param string $db The database name. * @param string $collection The collection name. * @throws Exception Throws Exception if the database or collection name is invalid. @@ -223,7 +223,7 @@ class MongoClient /** * (PECL mongo >= 1.3.0)
    * Gets a database - * @link http://www.php.net/manual/en/mongo.selectdb.php + * @link https://secure.php.net/manual/en/mongo.selectdb.php * @param string $name The database name. * @throws InvalidArgumentException * @return MongoDB Returns a new db object. @@ -243,7 +243,7 @@ class MongoClient /** * (PECL mongo >= 1.1.0)
    * Choose a new secondary for slaveOkay reads - * @link www.php.net/manual/en/mongo.switchslave.php + * @link https://secure.php.net/manual/en/mongo.switchslave.php * @return string The address of the secondary this connection is using for reads. This may be the same as the previous address as addresses are randomly chosen. It may return only one address if only one secondary (or only the primary) is available. * For example, if we had a three member replica set with a primary, secondary, and arbiter this method would always return the address of the secondary. If the secondary became unavailable, this method would always return the address of the primary. If the primary also became unavailable, this method would throw an exception, as an arbiter cannot handle reads. * @throws MongoException (error code 15) if it is called on a non-replica-set connection. It will also throw MongoExceptions if it cannot find anyone (primary or secondary) to read from (error code 16). @@ -253,7 +253,7 @@ class MongoClient /** * String representation of this connection - * @link http://www.php.net/manual/en/mongoclient.tostring.php + * @link https://secure.php.net/manual/en/mongoclient.tostring.php * @return string Returns hostname and port for this connection. */ public function __toString() {} @@ -262,7 +262,7 @@ class MongoClient /** * The connection point between MongoDB and PHP. * This class is used to initiate a connection and for database server commands. - * @link http://www.php.net/manual/en/class.mongo.php + * @link https://secure.php.net/manual/en/class.mongo.php * @deprecated This class has been DEPRECATED as of version 1.3.0. * Relying on this feature is highly discouraged. Please use MongoClient instead. * @see MongoClient @@ -298,7 +298,7 @@ class Mongo extends MongoClient { /** * Connects to paired database server * @deprecated Pass a string of the form "mongodb://server1,server2" to the constructor instead of using this method. - * @link http://www.php.net/manual/en/mongo.pairconnect.php + * @link https://secure.php.net/manual/en/mongo.pairconnect.php * @throws MongoConnectionException * @return boolean */ @@ -350,7 +350,7 @@ class Mongo extends MongoClient { public function setPoolSize($size) {} /** * Creates a persistent connection with a database server - * @link http://www.php.net/manual/en/mongo.persistconnect.php + * @link https://secure.php.net/manual/en/mongo.persistconnect.php * @deprecated Pass array("persist" => $id) to the constructor instead of using this method. * @param string $username A username used to identify the connection. * @param string $password A password used to identify the connection. @@ -362,7 +362,7 @@ class Mongo extends MongoClient { /** * Creates a persistent connection with paired database servers * @deprecated Pass "mongodb://server1,server2" and array("persist" => $id) to the constructor instead of using this method. - * @link http://www.php.net/manual/en/mongo.pairpersistconnect.php + * @link https://secure.php.net/manual/en/mongo.pairpersistconnect.php * @param string $username A username used to identify the connection. * @param string $password A password used to identify the connection. * @throws MongoConnectionException @@ -373,7 +373,7 @@ class Mongo extends MongoClient { /** * Connects with a database server * - * @link http://www.php.net/manual/en/mongo.connectutil.php + * @link https://secure.php.net/manual/en/mongo.connectutil.php * @throws MongoConnectionException * @return boolean If the connection was successful. */ @@ -382,7 +382,7 @@ class Mongo extends MongoClient { /** * Check if there was an error on the most recent db operation performed * @deprecated Use MongoDB::lastError() instead. - * @link http://www.php.net/manual/en/mongo.lasterror.php + * @link https://secure.php.net/manual/en/mongo.lasterror.php * @return array|null Returns the error, if there was one, or NULL. */ public function lastError() {} @@ -390,7 +390,7 @@ class Mongo extends MongoClient { /** * Checks for the last error thrown during a database operation * @deprecated Use MongoDB::prevError() instead. - * @link http://www.php.net/manual/en/mongo.preverror.php + * @link https://secure.php.net/manual/en/mongo.preverror.php * @return array Returns the error and the number of operations ago it occurred. */ public function prevError() {} @@ -398,7 +398,7 @@ class Mongo extends MongoClient { /** * Clears any flagged errors on the connection * @deprecated Use MongoDB::resetError() instead. - * @link http://www.php.net/manual/en/mongo.reseterror.php + * @link https://secure.php.net/manual/en/mongo.reseterror.php * @return array Returns the database response. */ public function resetError() {} @@ -406,7 +406,7 @@ class Mongo extends MongoClient { /** * Creates a database error on the database. * @deprecated Use MongoDB::forceError() instead. - * @link http://www.php.net/manual/en/mongo.forceerror.php + * @link https://secure.php.net/manual/en/mongo.forceerror.php * @return boolean The database response. */ public function forceError() {} @@ -414,7 +414,7 @@ class Mongo extends MongoClient { /** * Instances of this class are used to interact with a database. - * @link http://www.php.net/manual/en/class.mongodb.php + * @link https://secure.php.net/manual/en/class.mongodb.php */ class MongoDB { /** @@ -474,7 +474,7 @@ class MongoDB { * @var int

    * T he number of milliseconds to wait for MongoDB::$w * replications to take place. Inherited by instances of - * {@link http://www.php.net/manual/en/class.mongocollection.php MongoCollection} derived from this. + * {@link https://secure.php.net/manual/en/class.mongocollection.php MongoCollection} derived from this. * w functionality is only available in version 1.5.1+ of * the MongoDB server and 1.0.8+ of the driver. *

    @@ -491,7 +491,7 @@ class MongoDB { * (PECL mongo >= 0.9.0)
    * Creates a new database * This method is not meant to be called directly. The preferred way to create an instance of MongoDB is through {@see Mongo::__get()} or {@see Mongo::selectDB()}. - * @link http://www.php.net/manual/en/mongodb.construct.php + * @link https://secure.php.net/manual/en/mongodb.construct.php * @param MongoClient $conn Database connection. * @param string $name Database name. * @throws Exception @@ -500,7 +500,7 @@ class MongoDB { /** * The name of this database - * @link http://www.php.net/manual/en/mongodb.--tostring.php + * @link https://secure.php.net/manual/en/mongodb.--tostring.php * @return string Returns this database's name. */ public function __toString() {} @@ -508,7 +508,7 @@ class MongoDB { /** * (PECL mongo >= 1.0.2)
    * Gets a collection - * @link http://www.php.net/manual/en/mongodb.get.php + * @link https://secure.php.net/manual/en/mongodb.get.php * @param string $name The name of the collection. * @return MongoCollection */ @@ -516,18 +516,18 @@ class MongoDB { /** * (PECL mongo >= 1.3.0)
    - * @link http://www.php.net/manual/en/mongodb.getcollectionnames.php + * @link https://secure.php.net/manual/en/mongodb.getcollectionnames.php * Get all collections from this database * @param bool $includeSystemCollections [optional] Include system collections. * @return array Returns the names of the all the collections in the database as an - * {@link http://www.php.net/manual/en/language.types.array.php array}. + * {@link https://secure.php.net/manual/en/language.types.array.php array}. */ public function getCollectionNames($includeSystemCollections = false) {} /** * (PECL mongo >= 0.9.0)
    * Fetches toolkit for dealing with files stored in this database - * @link http://www.php.net/manual/en/mongodb.getgridfs.php + * @link https://secure.php.net/manual/en/mongodb.getgridfs.php * @param string $prefix [optional] The prefix for the files and chunks collections. * @return MongoGridFS Returns a new gridfs object for this database. */ @@ -536,7 +536,7 @@ class MongoDB { /** * (PECL mongo >= 0.9.0)
    * Gets this database's profiling level - * @link http://www.php.net/manual/en/mongodb.getprofilinglevel.php + * @link https://secure.php.net/manual/en/mongodb.getprofilinglevel.php * @return int Returns the profiling level. */ public function getProfilingLevel() {} @@ -544,14 +544,14 @@ class MongoDB { /** * (PECL mongo >= 1.1.0)
    * Get slaveOkay setting for this database - * @link http://www.php.net/manual/en/mongodb.getslaveokay.php + * @link https://secure.php.net/manual/en/mongodb.getslaveokay.php * @return bool Returns the value of slaveOkay for this instance. */ public function getSlaveOkay () {} /** * (PECL mongo >= 0.9.0)
    * Sets this database's profiling level - * @link http://www.php.net/manual/en/mongodb.setprofilinglevel.php + * @link https://secure.php.net/manual/en/mongodb.setprofilinglevel.php * @param int $level Profiling level. * @return int Returns the previous profiling level. */ @@ -560,14 +560,14 @@ class MongoDB { /** * (PECL mongo >= 0.9.0)
    * Drops this database - * @link http://www.php.net/manual/en/mongodb.drop.php + * @link https://secure.php.net/manual/en/mongodb.drop.php * @return array Returns the database response. */ public function drop() {} /** * Repairs and compacts this database - * @link http://www.php.net/manual/en/mongodb.repair.php + * @link https://secure.php.net/manual/en/mongodb.repair.php * @param bool $preserve_cloned_files [optional]

    If cloned files should be kept if the repair fails.

    * @param bool $backup_original_files [optional]

    If original files should be backed up.

    * @return array

    Returns db response.

    @@ -577,7 +577,7 @@ class MongoDB { /** * (PECL mongo >= 0.9.0)
    * Gets a collection - * @link http://www.php.net/manual/en/mongodb.selectcollection.php + * @link https://secure.php.net/manual/en/mongodb.selectcollection.php * @param string $name The collection name. * @throws Exception if the collection name is invalid. * @return MongoCollection

    @@ -592,7 +592,7 @@ class MongoDB { * @link https://php.net/manual/en/mongodb.setslaveokay.php * @param bool $ok [optional]

    * If reads should be sent to secondary members of a replica set for all - * possible queries using this {@link http://www.php.net/manual/en/class.mongodb.php MongoDB} instance. + * possible queries using this {@link https://secure.php.net/manual/en/class.mongodb.php MongoDB} instance. *

    * @return bool Returns the former value of slaveOkay for this instance. */ @@ -600,7 +600,7 @@ class MongoDB { /** * Creates a collection - * @link http://www.php.net/manual/en/mongodb.createcollection.php + * @link https://secure.php.net/manual/en/mongodb.createcollection.php * @param string $name The name of the collection. * @param array $options [optional]

    *

    @@ -638,7 +638,7 @@ class MongoDB { * (PECL mongo >= 0.9.0)
    * @deprecated Use MongoCollection::drop() instead. * Drops a collection - * @link http://www.php.net/manual/en/mongodb.dropcollection.php + * @link https://secure.php.net/manual/en/mongodb.dropcollection.php * @param MongoCollection|string $coll MongoCollection or name of collection to drop. * @return array Returns the database response. */ @@ -647,7 +647,7 @@ class MongoDB { /** * (PECL mongo >= 0.9.0)
    * Get a list of collections in this database - * @link http://www.php.net/manual/en/mongodb.listcollections.php + * @link https://secure.php.net/manual/en/mongodb.listcollections.php * @param bool $includeSystemCollections [optional]

    Include system collections.

    * @return array Returns a list of MongoCollections. */ @@ -656,7 +656,7 @@ class MongoDB { /** * (PECL mongo >= 0.9.0)
    * Creates a database reference - * @link http://www.php.net/manual/en/mongodb.createdbref.php + * @link https://secure.php.net/manual/en/mongodb.createdbref.php * @param string $collection The collection to which the database reference will point. * @param mixed $document_or_id

    * If an array or object is given, its _id field will be @@ -675,7 +675,7 @@ class MongoDB { /** * (PECL mongo >= 0.9.0)
    * Fetches the document pointed to by a database reference - * @link http://www.php.net/manual/en/mongodb.getdbref.php + * @link https://secure.php.net/manual/en/mongodb.getdbref.php * @param array $ref A database reference. * @return array Returns the document pointed to by the reference. */ @@ -693,7 +693,7 @@ class MongoDB { /** * (PECL mongo >= 0.9.3)
    * Runs JavaScript code on the database server. - * @link http://www.php.net/manual/en/mongodb.execute.php + * @link https://secure.php.net/manual/en/mongodb.execute.php * @param MongoCode|string $code Code to execute. * @param array $args [optional] Arguments to be passed to code. * @return array Returns the result of the evaluation. @@ -702,7 +702,7 @@ class MongoDB { /** * Execute a database command - * @link http://www.php.net/manual/en/mongodb.command.php + * @link https://secure.php.net/manual/en/mongodb.command.php * @param array $data The query to send. * @param array $options [optional]

    * This parameter is an associative array of the form @@ -722,7 +722,7 @@ class MongoDB { /** * (PECL mongo >= 0.9.5)
    * Check if there was an error on the most recent db operation performed - * @link http://www.php.net/manual/en/mongodb.lasterror.php + * @link https://secure.php.net/manual/en/mongodb.lasterror.php * @return array Returns the error, if there was one. */ public function lastError() {} @@ -730,7 +730,7 @@ class MongoDB { /** * (PECL mongo >= 0.9.5)
    * Checks for the last error thrown during a database operation - * @link http://www.php.net/manual/en/mongodb.preverror.php + * @link https://secure.php.net/manual/en/mongodb.preverror.php * @return array Returns the error and the number of operations ago it occurred. */ public function prevError() {} @@ -738,7 +738,7 @@ class MongoDB { /** * (PECL mongo >= 0.9.5)
    * Clears any flagged errors on the database - * @link http://www.php.net/manual/en/mongodb.reseterror.php + * @link https://secure.php.net/manual/en/mongodb.reseterror.php * @return array Returns the database response. */ public function resetError() {} @@ -746,7 +746,7 @@ class MongoDB { /** * (PECL mongo >= 0.9.5)
    * Creates a database error - * @link http://www.php.net/manual/en/mongodb.forceerror.php + * @link https://secure.php.net/manual/en/mongodb.forceerror.php * @return boolean Returns the database response. */ public function forceError() {} @@ -754,7 +754,7 @@ class MongoDB { /** * (PECL mongo >= 1.0.1)
    * Log in to this database - * @link http://www.php.net/manual/en/mongodb.authenticate.php + * @link https://secure.php.net/manual/en/mongodb.authenticate.php * @param string $username The username. * @param string $password The password (in plaintext). * @return array

    Returns database response. If the login was successful, it will return 1.

    @@ -777,7 +777,7 @@ class MongoDB { /** * (PECL mongo >= 1.3.0)
    * Get the read preference for this database - * @link http://www.php.net/manual/en/mongodb.getreadpreference.php + * @link https://secure.php.net/manual/en/mongodb.getreadpreference.php * @return array This function returns an array describing the read preference. The array contains the values type for the string read preference mode (corresponding to the MongoClient constants), and tagsets containing a list of all tag set criteria. If no tag sets were specified, tagsets will not be present in the array. */ public function getReadPreference () {} @@ -785,7 +785,7 @@ class MongoDB { /** * (PECL mongo >= 1.3.0)
    * Set the read preference for this database - * @link http://www.php.net/manual/en/mongodb.setreadpreference.php + * @link https://secure.php.net/manual/en/mongodb.setreadpreference.php * @param string $read_preference

    The read preference mode: MongoClient::RP_PRIMARY, MongoClient::RP_PRIMARY_PREFERRED, MongoClient::RP_SECONDARY, MongoClient::RP_SECONDARY_PREFERRED, or MongoClient::RP_NEAREST.

    * @param array $tags [optional]

    An array of zero or more tag sets, where each tag set is itself an array of criteria used to match tags on replica set members.

    * @return boolean Returns TRUE on success, or FALSE otherwise. @@ -805,7 +805,7 @@ class MongoDB { /** * Represents a database collection. - * @link http://www.php.net/manual/en/class.mongocollection.php + * @link https://secure.php.net/manual/en/class.mongocollection.php */ class MongoCollection { /** @@ -827,7 +827,7 @@ class MongoCollection { * @var int

    * The number of servers to replicate a change to before returning success. * Value is inherited from the parent database. The - * {@link http://www.php.net/manual/en/class.mongodb.php MongoDB} class has a more detailed description of + * {@link https://secure.php.net/manual/en/class.mongodb.php MongoDB} class has a more detailed description of * how w works. *

    */ @@ -837,7 +837,7 @@ class MongoCollection { * @var int

    * The number of milliseconds to wait for $this->w * replications to take place. Value is inherited from the parent database. - * The {@link http://www.php.net/manual/en/class.mongodb.php MongoDB} class has a more detailed description + * The {@link https://secure.php.net/manual/en/class.mongodb.php MongoDB} class has a more detailed description * of how wtimeout works. *

    */ @@ -845,7 +845,7 @@ class MongoCollection { /** * Creates a new collection - * @link http://www.php.net/manual/en/mongocollection.construct.php + * @link https://secure.php.net/manual/en/mongocollection.construct.php * @param MongoDB $db Parent database. * @param string $name Name for this collection. * @throws Exception @@ -854,14 +854,14 @@ class MongoCollection { /** * String representation of this collection - * @link http://www.php.net/manual/en/mongocollection.--tostring.php + * @link https://secure.php.net/manual/en/mongocollection.--tostring.php * @return string Returns the full name of this collection. */ public function __toString() {} /** * Gets a collection - * @link http://www.php.net/manual/en/mongocollection.get.php + * @link https://secure.php.net/manual/en/mongocollection.get.php * @param string $name The next string in the collection name. * @return MongoCollection */ @@ -881,7 +881,7 @@ class MongoCollection { * This method accepts either a variable amount of pipeline operators, or a * single array of operators constituting the pipeline. *

    - * @link http://www.php.net/manual/en/mongocollection.aggregate.php + * @link https://secure.php.net/manual/en/mongocollection.aggregate.php * @param array $pipeline

    An array of pipeline operators, or just the first operator.

    * @param array $op [optional]

    The second pipeline operator.

    * @param array $pipelineOperators [optional]

    Additional pipeline operators.

    @@ -913,7 +913,7 @@ class MongoCollection { /** * Returns this collection's name - * @link http://www.php.net/manual/en/mongocollection.getname.php + * @link https://secure.php.net/manual/en/mongocollection.getname.php * @return string */ public function getName() {} @@ -921,10 +921,10 @@ class MongoCollection { /** * (PECL mongo >= 1.1.0)
    *

    - * See {@link http://www.php.net/manual/en/mongo.queries.php the query section} of this manual for + * See {@link https://secure.php.net/manual/en/mongo.queries.php the query section} of this manual for * information on distributing reads to secondaries. *

    - * @link http://www.php.net/manual/en/mongocollection.getslaveokay.php + * @link https://secure.php.net/manual/en/mongocollection.getslaveokay.php * @return bool Returns the value of slaveOkay for this instance. */ public function getSlaveOkay() { } @@ -932,13 +932,13 @@ class MongoCollection { /** * (PECL mongo >= 1.1.0)
    *

    - * See {@link http://www.php.net/manual/en/mongo.queries.php the query section} of this manual for + * See {@link https://secure.php.net/manual/en/mongo.queries.php the query section} of this manual for * information on distributing reads to secondaries. *

    - * @link http://www.php.net/manual/en/mongocollection.setslaveokay.php + * @link https://secure.php.net/manual/en/mongocollection.setslaveokay.php * @param bool $ok [optional]

    * If reads should be sent to secondary members of a replica set for all - * possible queries using this {@link http://www.php.net/manual/en/class.mongocollection.php MongoCollection} + * possible queries using this {@link https://secure.php.net/manual/en/class.mongocollection.php MongoCollection} * instance. * @return bool Returns the former value of slaveOkay for this instance. *

    @@ -947,9 +947,9 @@ class MongoCollection { /** * (PECL mongo >= 1.3.0)
    - * @link http://www.php.net/manual/en/mongocollection.getreadpreference.php + * @link https://secure.php.net/manual/en/mongocollection.getreadpreference.php * @return array This function returns an array describing the read preference. The array contains the values type for the string read preference mode - * (corresponding to the {@link http://www.php.net/manual/en/class.mongoclient.php MongoClient} constants), and tagsets containing a list of all tag set criteria. If no tag sets were specified, tagsets will not be present in the array. + * (corresponding to the {@link https://secure.php.net/manual/en/class.mongoclient.php MongoClient} constants), and tagsets containing a list of all tag set criteria. If no tag sets were specified, tagsets will not be present in the array. */ public function getReadPreference() { } @@ -963,14 +963,14 @@ class MongoCollection { /** * Drops this collection - * @link http://www.php.net/manual/en/mongocollection.drop.php + * @link https://secure.php.net/manual/en/mongocollection.drop.php * @return array Returns the database response. */ public function drop() {} /** * Validates this collection - * @link http://www.php.net/manual/en/mongocollection.validate.php + * @link https://secure.php.net/manual/en/mongocollection.validate.php * @param bool $scan_data Only validate indices, not the base collection. * @return array Returns the database's evaluation of this object. */ @@ -978,7 +978,7 @@ class MongoCollection { /** * Inserts an array into the collection - * @link http://www.php.net/manual/en/mongocollection.insert.php + * @link https://secure.php.net/manual/en/mongocollection.insert.php * @param array|object $a An array or object. If an object is used, it may not have protected or private properties. * Note: If the parameter does not have an _id key or property, a new MongoId instance will be created and assigned to it. * This special behavior does not mean that the parameter is passed by reference. @@ -1026,7 +1026,7 @@ class MongoCollection { /** * Inserts multiple documents into this collection - * @link http://www.php.net/manual/en/mongocollection.batchinsert.php + * @link https://secure.php.net/manual/en/mongocollection.batchinsert.php * @param array $a An array of arrays. * @param array $options Options for the inserts. * @throws MongoCursorException @@ -1036,7 +1036,7 @@ class MongoCollection { /** * Update records based on a given criteria - * @link http://www.php.net/manual/en/mongocollection.update.php + * @link https://secure.php.net/manual/en/mongocollection.update.php * @param array $criteria Description of the objects to update. * @param array $newobj The object with which to update the matching records. * @param array $options This parameter is an associative array of the form @@ -1068,12 +1068,12 @@ class MongoCollection { /** * (PECL mongo >= 0.9.0)
    * Remove records from this collection - * @link http://www.php.net/manual/en/mongocollection.remove.php + * @link https://secure.php.net/manual/en/mongocollection.remove.php * @param array $criteria [optional]

    Query criteria for the documents to delete.

    * @param array $options [optional]

    An array of options for the remove operation. Currently available options * include: *

    * *

    * The following options are deprecated and should no longer be used: *

    - * @link http://www.php.net/manual/en/password.constants.php + * @link https://secure.php.net/manual/en/password.constants.php */ define("PASSWORD_DEFAULT", 1); @@ -119,20 +119,20 @@ define('PASSWORD_ARGON2_DEFAULT_THREADS', 2); * (PHP 5 >= 5.5.0, PHP 5)
    * * Returns information about the given hash - * @link http://www.php.net/manual/en/function.password-get-info.php + * @link https://secure.php.net/manual/en/function.password-get-info.php * @param string $hash A hash created by password_hash(). * @return array Returns an associative array with three elements: * * @since 5.5.0 @@ -143,10 +143,10 @@ function password_get_info ($hash) {} * (PHP 5 >= 5.5.0, PHP 5)
    * * Creates a password hash. - * @link http://www.php.net/manual/en/function.password-hash.php + * @link https://secure.php.net/manual/en/function.password-hash.php * @param string $password The user's password. - * @param int $algo A password algorithm constant denoting the algorithm to use when hashing the password. - * @param array $options [optional]

    An associative array containing options. See the password algorithm constants for documentation on the supported options for each algorithm. + * @param int $algo A password algorithm constant denoting the algorithm to use when hashing the password. + * @param array $options [optional]

    An associative array containing options. See the password algorithm constants for documentation on the supported options for each algorithm. * If omitted, a random salt will be created and the default cost will be used. * Warning *

    @@ -162,9 +162,9 @@ function password_hash ($password, $algo, $options = null) {} * (PHP 5 >= 5.5.0, PHP 5)
    * * Checks if the given hash matches the given options. - * @link http://www.php.net/manual/en/function.password-needs-rehash.php + * @link https://secure.php.net/manual/en/function.password-needs-rehash.php * @param string $hash A hash created by password_hash(). - * @param int $algo A password algorithm constant denoting the algorithm to use when hashing the password. + * @param int $algo A password algorithm constant denoting the algorithm to use when hashing the password. * @param array $options [optional]

    An associative array containing options. See the password algorithm constants for documentation on the supported options for each algorithm. * @return bool Returns TRUE if the hash should be rehashed to match the given algo and options, or FALSE otherwise. * @since 5.5.0 @@ -175,7 +175,7 @@ function password_needs_rehash ($hash, $algo, $options = null) {} * (PHP 5 >= 5.5.0, PHP 5)
    * * Checks if the given hash matches the given options. - * @link http://www.php.net/manual/en/function.password-verify.php + * @link https://secure.php.net/manual/en/function.password-verify.php * @param string $password The user's password. * @param string $hash A hash created by password_hash(). * @return boolean Returns TRUE if the password and hash match, or FALSE otherwise. diff --git a/pdflib/PDFlib.php b/pdflib/PDFlib.php index e2f24779..4eb3dc0f 100644 --- a/pdflib/PDFlib.php +++ b/pdflib/PDFlib.php @@ -593,9 +593,9 @@ class PDFlib /** * @param int $textflow * - * @return bool https://secure.php.net/manual/en/function.pdf-delete-textflow.php + * @return bool * - * @link + * @link https://secure.php.net/manual/en/function.pdf-delete-textflow.php */ function delete_textflow($textflow){} @@ -2315,10 +2315,10 @@ function PDF_delete_table($pdf, $table, $optlist){} /** * @param resource $pdf * @param int $textflow - * - * @return bool https://secure.php.net/manual/en/function.pdf-delete-textflow.php - * - * @link + * + * @return bool + * + * @link https://secure.php.net/manual/en/function.pdf-delete-textflow.php */ function PDF_delete_textflow($pdf, $textflow){} diff --git a/pthreads/pthreads.php b/pthreads/pthreads.php index 08bd296b..92bb437c 100644 --- a/pthreads/pthreads.php +++ b/pthreads/pthreads.php @@ -62,7 +62,7 @@ define('PTHREADS_ALLOW_HEADERS', 16777216); * Workers.
    * Pooling provides a higher level abstraction of the Worker functionality, * including the management of references in the way required by pthreads. - * @link http://www.php.net/manual/en/class.pool.php + * @link https://secure.php.net/manual/en/class.pool.php */ class Pool { /** @@ -104,7 +104,7 @@ class Pool { /** * (PECL pthreads >= 2.0.0) * Creates a new Pool of Workers - * @link http://www.php.net/manual/en/pool.construct.php + * @link https://secure.php.net/manual/en/pool.construct.php * @param integer $size

    The maximum number of Workers this Pool can create

    * @param string $class

    The class for new Workers

    * @param array $ctor

    An array of arguments to be passed to new Workers

    @@ -115,7 +115,7 @@ class Pool { * (PECL pthreads >= 2.0.0) * Allows the Pool to collect references determined to be garbage by the * given collector - * @link http://www.php.net/manual/en/pool.collect.php + * @link https://secure.php.net/manual/en/pool.collect.php * @param Callable $collector * @return void */ @@ -124,7 +124,7 @@ class Pool { /** * (PECL pthreads >= 2.0.0) * Resize the Pool - * @link http://www.php.net/manual/en/pool.resize.php + * @link https://secure.php.net/manual/en/pool.resize.php * @param integer $size

    The maximum number of Workers this Pool can create

    * @return void */ @@ -133,7 +133,7 @@ class Pool { /** * (PECL pthreads >= 2.0.0) * Shutdown the Workers in this Pool - * @link http://www.php.net/manual/en/pool.shutdown.php + * @link https://secure.php.net/manual/en/pool.shutdown.php * @return void */ public function shutdown() {} @@ -141,7 +141,7 @@ class Pool { /** * (PECL pthreads >= 2.0.0) * Submit the task to the next Worker in the Pool - * @link http://www.php.net/manual/en/pool.submit.php + * @link https://secure.php.net/manual/en/pool.submit.php * @param Threaded $task * @return integer

    the identifier of the Worker executing the object

    */ @@ -149,7 +149,7 @@ class Pool { /** * Submit the object to the specified Worker in the Pool - * @link http://www.php.net/manual/en/pool.submitTo.php + * @link https://secure.php.net/manual/en/pool.submitTo.php * @param integer $worker

    The worker for execution

    * @param Threaded $task

    The task for execution

    * @return integer

    the identifier of the Worker that accepted the object

    @@ -161,7 +161,7 @@ class Pool { * Threaded objects form the basis of pthreads ability to execute user code * asynchronously; they expose and include synchronization methods and various * useful interfaces. - * @link http://www.php.net/manual/en/class.threaded.php + * @link https://secure.php.net/manual/en/class.threaded.php */ class Threaded implements Traversable, Countable, ArrayAccess { /** @@ -174,7 +174,7 @@ class Threaded implements Traversable, Countable, ArrayAccess { * (PECL pthreads >= 2.0.0) * Fetches a chunk of the objects property table of the given size, * optionally preserving keys - * @link http://www.php.net/manual/en/threaded.chunk.php + * @link https://secure.php.net/manual/en/threaded.chunk.php * @param integer $size

    The number of items to fetch

    * @param boolean $preserve

    Preserve the keys of members, by default false

    * @return array

    An array of items from the objects property table

    @@ -184,7 +184,7 @@ class Threaded implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Returns the number of properties for this object - * @link http://www.php.net/manual/en/threaded.count.php + * @link https://secure.php.net/manual/en/threaded.count.php * @return int

    Returns the number of properties for this object

    */ public function count() {} @@ -192,7 +192,7 @@ class Threaded implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Retrieves terminal error information from the referenced object - * @link http://www.php.net/manual/en/threaded.getterminationinfo.php + * @link https://secure.php.net/manual/en/threaded.getterminationinfo.php * @return array

    array containing the termination conditions of the referenced object

    */ public function getTerminationInfo() {} @@ -200,7 +200,7 @@ class Threaded implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Tell if the referenced object is executing - * @link http://www.php.net/manual/en/thread.isrunning.php + * @link https://secure.php.net/manual/en/thread.isrunning.php * @return boolean */ public function isRunning() {} @@ -209,7 +209,7 @@ class Threaded implements Traversable, Countable, ArrayAccess { * (PECL pthreads >= 2.0.0) * Tell if the referenced object was terminated during execution; suffered * fatal errors, or threw uncaught exceptions - * @link http://www.php.net/manual/en/threaded.isterminated.php + * @link https://secure.php.net/manual/en/threaded.isterminated.php * @return boolean */ public function isTerminated() {} @@ -217,7 +217,7 @@ class Threaded implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Tell if the referenced object is waiting for notification - * @link http://www.php.net/manual/en/threaded.iswaiting.php + * @link https://secure.php.net/manual/en/threaded.iswaiting.php * @return boolean

    A boolean indication of state

    */ public function isWaiting() {} @@ -226,7 +226,7 @@ class Threaded implements Traversable, Countable, ArrayAccess { * (PECL pthreads >= 2.0.0) * Lock the referenced objects property table * @link https://php.net/manual/en/threaded.lock.php - * @link http://www.php.net/manual/en/threaded.lock.php + * @link https://secure.php.net/manual/en/threaded.lock.php * @return boolean */ public function lock() {} @@ -234,7 +234,7 @@ class Threaded implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Merges data into the current object - * @link http://www.php.net/manual/en/threaded.merge.php + * @link https://secure.php.net/manual/en/threaded.merge.php * @var mixed $from * @var mixed $overwrite [optional] * @return boolean @@ -244,7 +244,7 @@ class Threaded implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Send notification to the referenced object - * @link http://www.php.net/manual/en/threaded.notify.php + * @link https://secure.php.net/manual/en/threaded.notify.php * @return boolean */ public function notify() {} @@ -252,7 +252,7 @@ class Threaded implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Pops an item from the objects property table - * @link http://www.php.net/manual/en/threaded.pop.php + * @link https://secure.php.net/manual/en/threaded.pop.php * @return boolean */ public function pop() {} @@ -261,7 +261,7 @@ class Threaded implements Traversable, Countable, ArrayAccess { * (PECL pthreads >= 2.0.0) * The programmer should always implement the run method for objects * that are intended for execution. - * @link http://www.php.net/manual/en/threaded.run.php + * @link https://secure.php.net/manual/en/threaded.run.php * @return void */ public function run() {} @@ -269,7 +269,7 @@ class Threaded implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Shifts an item from the objects property table - * @link http://www.php.net/manual/en/threaded.shift.php + * @link https://secure.php.net/manual/en/threaded.shift.php * @return boolean */ public function shift() {} @@ -278,7 +278,7 @@ class Threaded implements Traversable, Countable, ArrayAccess { * (PECL pthreads >= 2.0.0) * Executes the block while retaining the referenced objects * synchronization lock for the calling context - * @link http://www.php.net/manual/en/threaded.synchronized.php + * @link https://secure.php.net/manual/en/threaded.synchronized.php * @param Closure $block * @param mixed $_ [optional] * @return mixed @@ -288,7 +288,7 @@ class Threaded implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Unlock the referenced objects storage for the calling context - * @link http://www.php.net/manual/en/threaded.unlock.php + * @link https://secure.php.net/manual/en/threaded.unlock.php * @return boolean */ public function unlock() {} @@ -297,7 +297,7 @@ class Threaded implements Traversable, Countable, ArrayAccess { * (PECL pthreads >= 2.0.0) * Will cause the calling context to wait for notification from the * referenced object - * @link http://www.php.net/manual/en/threaded.wait.php + * @link https://secure.php.net/manual/en/threaded.wait.php * @param int $timeout [optional] * @return boolean */ @@ -366,7 +366,7 @@ class Threaded implements Traversable, Countable, ArrayAccess { /** * Stackable is an alias of Threaded. This class name was used in pthreads until * version 2.0.0 - * @link http://www.php.net/manual/en/class.threaded.php + * @link https://secure.php.net/manual/en/class.threaded.php */ class Stackable extends Threaded implements Traversable, Countable, ArrayAccess { @@ -377,13 +377,13 @@ class Stackable extends Threaded implements Traversable, Countable, ArrayAccess * be executed in separate Thread, asynchronously.
    After the run method * is executed the Thread will exit immediately, it will be joined with * the creating Thread at the approriate time. - * @link http://www.php.net/manual/en/class.thread.php + * @link https://secure.php.net/manual/en/class.thread.php */ class Thread extends Threaded implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Detaches the referenced Thread from the calling context, dangerously! - * @link http://www.php.net/manual/en/thread.detach.php + * @link https://secure.php.net/manual/en/thread.detach.php * @return void */ public function detach() {} @@ -391,7 +391,7 @@ class Thread extends Threaded implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Will return the identity of the Thread that created the referenced Thread - * @link http://www.php.net/manual/en/thread.getcreatorid.php + * @link https://secure.php.net/manual/en/thread.getcreatorid.php * @return int

    A numeric identity

    */ public function getCreatorId() {} @@ -399,7 +399,7 @@ class Thread extends Threaded implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Return a reference to the currently executing Thread - * @link http://www.php.net/manual/en/thread.getcurrentthread.php + * @link https://secure.php.net/manual/en/thread.getcurrentthread.php * @return Thread

    An object representing the currently executing Thread

    */ public static function getCurrentThread() {} @@ -407,7 +407,7 @@ class Thread extends Threaded implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Will return the identity of the currently executing Thread - * @link http://www.php.net/manual/en/thread.getcurrentthreadid.php + * @link https://secure.php.net/manual/en/thread.getcurrentthreadid.php * @return int

    A numeric identity

    */ public static function getCurrentThreadId() {} @@ -415,7 +415,7 @@ class Thread extends Threaded implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Will return the identity of the referenced Thread - * @link http://www.php.net/manual/en/thread.getthreadid.php + * @link https://secure.php.net/manual/en/thread.getthreadid.php * @return int

    A numeric identity

    */ public function getThreadId() {} @@ -423,7 +423,7 @@ class Thread extends Threaded implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.1) * Will execute a Callable in the global scope - * @link http://www.php.net/manual/en/thread.globally.php + * @link https://secure.php.net/manual/en/thread.globally.php * @return mixed

    The return value of the Callable

    */ public static function globally() {} @@ -431,7 +431,7 @@ class Thread extends Threaded implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Tell if the referenced Thread has been joined - * @link http://www.php.net/manual/en/thread.isjoined.php + * @link https://secure.php.net/manual/en/thread.isjoined.php * @return boolean

    A boolean indication of state

    */ public function isJoined() {} @@ -439,7 +439,7 @@ class Thread extends Threaded implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Tell if the referenced Thread was started - * @link http://www.php.net/manual/en/thread.isstarted.php + * @link https://secure.php.net/manual/en/thread.isstarted.php * @return boolean

    A boolean indication of state

    */ public function isStarted() {} @@ -447,7 +447,7 @@ class Thread extends Threaded implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Causes the calling context to wait for the referenced Thread to finish executing - * @link http://www.php.net/manual/en/thread.join.php + * @link https://secure.php.net/manual/en/thread.join.php * @return boolean

    A boolean indication of success

    */ public function join() {} @@ -455,7 +455,7 @@ class Thread extends Threaded implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Forces the referenced Thread to terminate - * @link http://www.php.net/manual/en/thread.kill.php + * @link https://secure.php.net/manual/en/thread.kill.php * @return bool

    A boolean indication of success

    */ public function kill() {} @@ -463,7 +463,7 @@ class Thread extends Threaded implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Will start a new Thread to execute the implemented run method - * @link http://www.php.net/manual/en/thread.start.php + * @link https://secure.php.net/manual/en/thread.start.php * @param integer $options [optional] An optional mask of inheritance constants, by default PTHREADS_INHERIT_ALL * @return boolean

    A boolean indication of success

    */ @@ -482,13 +482,13 @@ class Thread extends Threaded implements Traversable, Countable, ArrayAccess { * This means the programmer can reuse the context throughout execution; placing * objects on the stack of the Worker will cause the Worker to execute the stacked * objects run method. - * @link http://www.php.net/manual/en/class.worker.php + * @link https://secure.php.net/manual/en/class.worker.php */ class Worker extends Thread implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Returns the number of objects waiting to be executed by the referenced Worker - * @link http://www.php.net/manual/en/worker.getstacked.php + * @link https://secure.php.net/manual/en/worker.getstacked.php * @return int

    An numeric value

    */ public function getStacked() {} @@ -496,7 +496,7 @@ class Worker extends Thread implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Tell if the referenced Worker has been shutdown - * @link http://www.php.net/manual/en/worker.isshutdown.php + * @link https://secure.php.net/manual/en/worker.isshutdown.php * @return boolean

    A boolean indication of state

    */ public function isShutdown() {} @@ -504,7 +504,7 @@ class Worker extends Thread implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Tell if a Worker is executing Stackables - * @link http://www.php.net/manual/en/worker.isworking.php + * @link https://secure.php.net/manual/en/worker.isworking.php * @return boolean

    A boolean indication of state

    */ public function isWorking() {} @@ -512,7 +512,7 @@ class Worker extends Thread implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Shuts down the Worker after executing all the objects previously stacked - * @link http://www.php.net/manual/en/worker.shutdown.php + * @link https://secure.php.net/manual/en/worker.shutdown.php * @return boolean */ public function shutdown() {} @@ -520,7 +520,7 @@ class Worker extends Thread implements Traversable, Countable, ArrayAccess { /** * (PECL pthreads >= 2.0.0) * Appends the referenced object to the stack of the referenced Worker - * @link http://www.php.net/manual/en/worker.stack.php + * @link https://secure.php.net/manual/en/worker.stack.php * @param Threaded $work

    Threaded object to be executed by the referenced Worker

    * @return int

    The new length of the stack

    */ @@ -530,7 +530,7 @@ class Worker extends Thread implements Traversable, Countable, ArrayAccess { * (PECL pthreads >= 2.0.0) * Removes the referenced object ( or all objects if parameters are void ) * from stack of the referenced Worker - * @link http://www.php.net/manual/en/worker.unstack.php + * @link https://secure.php.net/manual/en/worker.unstack.php * @param Threaded $work [optional]

    Threaded object previously stacked onto Worker

    * @return int

    The new length of the stack

    */ @@ -541,12 +541,12 @@ class Worker extends Thread implements Traversable, Countable, ArrayAccess { /** * The static methods contained in the Mutex class provide direct access to Posix * Mutex functionality. - * @link http://www.php.net/manual/en/class.mutex.php + * @link https://secure.php.net/manual/en/class.mutex.php */ class Mutex { /** * Create, and optionally lock a new Mutex for the caller - * @link http://www.php.net/manual/en/mutex.create.php + * @link https://secure.php.net/manual/en/mutex.create.php * @param boolean $lock [optional]

    Setting lock to true will lock the Mutex for the caller before returning the handle

    * @return int

    A newly created and optionally locked Mutex handle

    */ @@ -555,7 +555,7 @@ class Mutex { /** * Destroying Mutex handles must be carried out explicitly by the programmer when * they are finished with the Mutex handle. - * @link http://www.php.net/manual/en/mutex.destroy.php + * @link https://secure.php.net/manual/en/mutex.destroy.php * @param int $mutex

    A handle returned by a previous call to * {@see Mutex::create()}. The handle should not be locked by any Thread when * {@see Mutex::destroy()} is called.

    @@ -567,7 +567,7 @@ class Mutex { * Attempt to lock the Mutex for the caller.
    * An attempt to lock a Mutex owned (locked) by another Thread will result in * blocking. - * @link http://www.php.net/manual/en/mutex.lock.php + * @link https://secure.php.net/manual/en/mutex.lock.php * @param int $mutex

    A handle returned by a previous call to * {@see Mutex::create()}.

    * @return boolean

    A boolean indication of success.

    @@ -577,7 +577,7 @@ class Mutex { /** * Attempt to lock the Mutex for the caller without blocking if the Mutex is * owned (locked) by another Thread. - * @link http://www.php.net/manual/en/mutex.trylock.php + * @link https://secure.php.net/manual/en/mutex.trylock.php * @param int $mutex int $mutex

    A handle returned by a previous call to * {@see Mutex::create()}.

    * @return boolean

    A boolean indication of success.

    @@ -587,7 +587,7 @@ class Mutex { /** * Attempts to unlock the Mutex for the caller, optionally destroying the Mutex * handle. The calling thread should own the Mutex at the time of the call. - * @link http://www.php.net/manual/en/mutex.unlock.php + * @link https://secure.php.net/manual/en/mutex.unlock.php * @param int $mutex

    A handle returned by a previous call to * {@see Mutex::create()}.

    * @param bool $destroy [optional] @@ -600,13 +600,13 @@ class Mutex { /** * The static methods contained in the Cond class provide direct access to Posix * Condition Variables. - * @link http://www.php.net/manual/en/class.cond.php + * @link https://secure.php.net/manual/en/class.cond.php */ class Cond { /** * (PECL pthreads >= 2.0.0) * Broadcast to all Threads blocking on a call to Cond::wait(). - * @link http://www.php.net/manual/en/cond.broadcast.php + * @link https://secure.php.net/manual/en/cond.broadcast.php * @param int $condition

    A handle to a Condition Variable returned by a previous call to * {@see Cond::create()}

    * @return boolean

    A boolean indication of success.

    @@ -616,7 +616,7 @@ class Cond { /** * (PECL pthreads >= 2.0.0) * Creates a new Condition Variable for the caller. - * @link http://www.php.net/manual/en/cond.create.php + * @link https://secure.php.net/manual/en/cond.create.php * @return int

    A handle to a Condition Variable

    */ final public static function create() {} @@ -626,7 +626,7 @@ class Cond { * Destroying Condition Variable handles must be carried out explicitly by the * programmer when they are finished with the Condition Variable. No Threads should * be blocking on a call to Cond::wait() when the call to Cond::destroy() takes place. - * @link http://www.php.net/manual/en/cond.destroy.php + * @link https://secure.php.net/manual/en/cond.destroy.php * @param int $condition

    A handle to a Condition Variable returned by a previous call to * {@see Cond::create()}

    * @return boolean

    A boolean indication of success.

    @@ -636,7 +636,7 @@ class Cond { /** * (PECL pthreads >= 2.0.0) * A handle returned by a previous call to Cond::create() - * @link http://www.php.net/manual/en/cond.signal.php + * @link https://secure.php.net/manual/en/cond.signal.php * @param int $condition

    A handle to a Condition Variable returned by a previous call to * {@see Cond::create()}

    * @return boolean

    A boolean indication of success.

    @@ -647,7 +647,7 @@ class Cond { * (PECL pthreads >= 2.0.0) * Wait for a signal on a Condition Variable, optionally specifying a timeout to * limit waiting time. - * @link http://www.php.net/manual/en/cond.wait.php + * @link https://secure.php.net/manual/en/cond.wait.php * @param int $condition

    A handle returned by a previous call to * {@see Cond::create()}.

    * @param int $mutex

    A handle returned by a previous call to diff --git a/radius/radius.php b/radius/radius.php index 26115e2d..4edde536 100644 --- a/radius/radius.php +++ b/radius/radius.php @@ -1,14 +1,14 @@ RADIUS_NAS_IP_ADDRESS or a RADIUS_NAS_IDENTIFIER attribute, must also include a RADIUS_USER_PASSWORD, RADIUS_CHAP_PASSWORD or a RADIUS_STATE attribute, and should include a RADIUS_USER_NAME attribute. */ @@ -77,7 +77,7 @@ define('RADIUS_COA_NAK', 45); /** * RADIUS Attribute Types - * @link http://php.net/manual/en/radius.constants.attributes.php + * @link https://secure.php.net/manual/en/radius.constants.attributes.php */ /** The User-Name attribute. The attribute value is expected to be a string containing the name of the user being authenticated, and can be set using {@see radius_put_attr()}. */ @@ -320,7 +320,7 @@ define('RADIUS_OPTION_SALT', RADIUS_OPTION_SALT); /** * Creates a Radius handle for accounting - * @link http://php.net/manual/en/function.radius-acct-open.php + * @link https://secure.php.net/manual/en/function.radius-acct-open.php * @return resource|bool Returns a handle on success, FALSE on error. This function only fails if insufficient memory is available. * @since 1.1.0 */ @@ -328,7 +328,7 @@ function radius_acct_open() { } /** * radius_add_server() may be called multiple times, and it may be used together with {@see radius_config()}. At most 10 servers may be specified. When multiple servers are given, they are tried in round-robin fashion until a valid response is received, or until each server's max_tries limit has been reached. - * @link http://php.net/manual/en/function.radius-add-server.php + * @link https://secure.php.net/manual/en/function.radius-add-server.php * @param resource $radius_handle * @param string $hostname The hostname parameter specifies the server host, either as a fully qualified domain name or as a dotted-quad IP address in text form. * @param int $port The port specifies the UDP port to contact on the server.
    @@ -345,7 +345,7 @@ function radius_add_server($radius_handle , $hostname, $port , $secret, $timeout /** * Creates a Radius handle for authentication - * @link http://php.net/manual/en/function.radius-auth-open.php + * @link https://secure.php.net/manual/en/function.radius-auth-open.php * @return resource|bool Returns a handle on success, FALSE on error. This function only fails if insufficient memory is available. * @since 1.1.0 */ @@ -353,7 +353,7 @@ function radius_auth_open() { } /** * Free all ressources. It is not needed to call this function because php frees all resources at the end of each request. - * @link http://php.net/manual/en/function.radius-close.php + * @link https://secure.php.net/manual/en/function.radius-close.php * @param resource $radius_handle * @return bool Returns TRUE on success or FALSE on failure. * @since 1.1.0 @@ -362,7 +362,7 @@ function radius_close($radius_handle) { } /** * Before issuing any Radius requests, the library must be made aware of the servers it can contact. The easiest way to configure the library is to call radius_config(). radius_config() causes the library to read a configuration file whose format is described in radius.conf. - * @link http://php.net/manual/en/function.radius-config.php + * @link https://secure.php.net/manual/en/function.radius-config.php * @link https://www.freebsd.org/cgi/man.cgi?query=radius.conf * @param resource $radius_handle * @param string $file The pathname of the configuration file is passed as the file argument to {@see radius_config()}. The library can also be configured programmatically by calls to {@see radius_add_server()}. @@ -375,7 +375,7 @@ function radius_config($radius_handle, $file) { } /** * A Radius request consists of a code specifying the kind of request, and zero or more attributes which provide additional information. To begin constructing a new request, call radius_create_request().
    * Note: Attention: You must call this function, before you can put any attribute! - * @link http://php.net/manual/en/function.radius-create-request.php + * @link https://secure.php.net/manual/en/function.radius-create-request.php * @param resource $radius_handle * @param int $type Type is RADIUS_ACCESS_REQUEST or RADIUS_ACCOUNTING_REQUEST. * @return bool Returns TRUE on success or FALSE on failure. diff --git a/redis/RedisCluster.php b/redis/RedisCluster.php index 146cd047..c5b3a959 100644 --- a/redis/RedisCluster.php +++ b/redis/RedisCluster.php @@ -2238,7 +2238,7 @@ class RedisCluster { * * @return bool If the operation is successful, return TRUE. * If the srcKey and/or dstKey didn't exist, and/or the member didn't exist in srcKey, FALSE is returned. - * @link http://redis.io/commands/smove + * @link https://redis.io/commands/smove * @example *

          * $redisCluster->sAdd('key1' , 'set11');
    @@ -2266,7 +2266,7 @@ class RedisCluster {
          * @param   bool   $withscores
          *
          * @return  array   Array containing the values in specified range.
    -     * @link    http://redis.io/commands/zrange
    +     * @link    https://redis.io/commands/zrange
          * @example
          * 
          * $redisCluster->zAdd('key1', 0, 'val0');
    @@ -2293,7 +2293,7 @@ class RedisCluster {
          * @param   bool   $withscore
          *
          * @return  array   Array containing the values in specified range.
    -     * @link    http://redis.io/commands/zrevrange
    +     * @link    https://redis.io/commands/zrevrange
          * @example
          * 
          * $redisCluster->zAdd('key', 0, 'val0');
    @@ -2322,7 +2322,7 @@ class RedisCluster {
          *                          - and limit => array($offset, $count)
          *
          * @return  array   Array containing the values in specified range.
    -     * @link    http://redis.io/commands/zrangebyscore
    +     * @link    https://redis.io/commands/zrangebyscore
          * @example
          * 
          * $redisCluster->zAdd('key', 0, 'val0');
    @@ -2364,7 +2364,7 @@ class RedisCluster {
          * @param   int    $limit  Optional argument if you wish to limit the number of elements returned.
          *
          * @return  array   Array containing the values in the specified range.
    -     * @link    http://redis.io/commands/zrangebylex
    +     * @link    https://redis.io/commands/zrangebylex
          * @example
          * 
          * foreach (array('a', 'b', 'c', 'd', 'e', 'f', 'g') as $k => $char) {
    @@ -2388,7 +2388,7 @@ class RedisCluster {
          * @param   int    $limit
          *
          * @return  array
    -     * @link    http://redis.io/commands/zrevrangebylex
    +     * @link    https://redis.io/commands/zrevrangebylex
          */
         public function zRevRangeByLex($key, $min, $max, $offset = null, $limit = null) { }
     
    @@ -2400,7 +2400,7 @@ class RedisCluster {
          * @param   int    $max
          *
          * @return  int The number of elements in the specified score range.
    -     * @link    http://redis.io/commands/zlexcount
    +     * @link    https://redis.io/commands/zlexcount
          * @example
          * 
          * foreach (array('a', 'b', 'c', 'd', 'e', 'f', 'g') as $k => $char) {
    @@ -2419,7 +2419,7 @@ class RedisCluster {
          * @param   int    $max The maximum alphanumeric value you wish to get.
          *
          * @return  array    the number of elements removed.
    -     * @link    http://redis.io/commands/zremrangebylex
    +     * @link    https://redis.io/commands/zremrangebylex
          * @example
          * 
          * foreach (array('a', 'b', 'c', 'd', 'e', 'f', 'g') as $k => $char) {
    @@ -2442,7 +2442,7 @@ class RedisCluster {
          *                                  duplicate entries during the zUnion.
          *
          * @return int The number of values in the new sorted set.
    -     * @link    http://redis.io/commands/zunionstore
    +     * @link    https://redis.io/commands/zunionstore
          * @example
          * 
          * $redisCluster->del('k1');
    @@ -2477,7 +2477,7 @@ class RedisCluster {
          *                                    defines the behaviour to use on duplicate entries during the zInterStore.
          *
          * @return  int     The number of values in the new sorted set.
    -     * @link    http://redis.io/commands/zinterstore
    +     * @link    https://redis.io/commands/zinterstore
          * @example
          * 
          * $redisCluster->del('k1');
    @@ -2515,7 +2515,7 @@ class RedisCluster {
          * @param   string $memberN
          *
          * @return  int     Number of deleted values
    -     * @link    http://redis.io/commands/zrem
    +     * @link    https://redis.io/commands/zrem
          * @example
          * 
          * $redisCluster->zAdd('z', 1, 'v1', 2, 'v2', 3, 'v3', 4, 'v4' );  // int(2)
    @@ -2545,7 +2545,7 @@ class RedisCluster {
          *
          * @return  array
          * An array of values, or a number corresponding to the number of elements stored if that was used.
    -     * @link    http://redis.io/commands/sort
    +     * @link    https://redis.io/commands/sort
          * @example
          * 
          * $redisCluster->del('s');
    @@ -2574,7 +2574,7 @@ class RedisCluster {
          * @param   string $key
          *
          * @return  string  for "encoding", int for "refcount" and "idletime", FALSE if the key doesn't exist.
    -     * @link    http://redis.io/commands/object
    +     * @link    https://redis.io/commands/object
          * @example
          * 
          * $redisCluster->object("encoding", "l"); // → ziplist
    @@ -2593,7 +2593,7 @@ class RedisCluster {
          *                                 name, and the message.
          *
          * @return mixed            Any non-null return value in the callback will be returned to the caller.
    -     * @link    http://redis.io/commands/subscribe
    +     * @link    https://redis.io/commands/subscribe
          * @example
          * 
          * function f($redisCluster, $chan, $msg) {
    @@ -2626,7 +2626,7 @@ class RedisCluster {
          *
          * @return  mixed           Any non-null return value in the callback will be returned to the caller.
          *
    -     * @link    http://redis.io/commands/psubscribe
    +     * @link    https://redis.io/commands/psubscribe
          * @example
          * 
          * function psubscribe($redisCluster, $pattern, $chan, $msg) {
    @@ -2665,7 +2665,7 @@ class RedisCluster {
          *
          * @return  mixed   @see eval()
          * @see     eval()
    -     * @link    http://redis.io/commands/evalsha
    +     * @link    https://redis.io/commands/evalsha
          * @example
          * 
          * $script = 'return 1';
    @@ -2683,7 +2683,7 @@ class RedisCluster {
          * @param  int    $count    Count of keys per iteration (only a suggestion to Redis).
          *
          * @return array            This function will return an array of keys or FALSE if there are no more keys.
    -     * @link   http://redis.io/commands/scan
    +     * @link   https://redis.io/commands/scan
          * @example
          * 
          * $iterator = null;
    @@ -2705,7 +2705,7 @@ class RedisCluster {
          * @param   int    $count    How many members to return at a time (Redis might return a different amount).
          *
          * @return  array   PHPRedis will return an array of keys or FALSE when we're done iterating.
    -     * @link    http://redis.io/commands/sscan
    +     * @link    https://redis.io/commands/sscan
          * @example
          * 
          * $iterator = null;
    @@ -2727,7 +2727,7 @@ class RedisCluster {
          * @param   int    $count    How many keys to return per iteration (Redis might return a different number).
          *
          * @return  array   PHPRedis will return matching keys from Redis, or FALSE when iteration is complete.
    -     * @link    http://redis.io/commands/zscan
    +     * @link    https://redis.io/commands/zscan
          * @example
          * 
          * $iterator = null;
    @@ -2749,7 +2749,7 @@ class RedisCluster {
          * @param   int    $count   How many keys to return in a go (only a sugestion to Redis).
          *
          * @return  array     An array of members that match our pattern.
    -     * @link    http://redis.io/commands/hscan
    +     * @link    https://redis.io/commands/hscan
          * @example
          * 
          * $iterator = null;
    @@ -2904,7 +2904,7 @@ class RedisCluster {
          *
          * @return Redis returns the Redis instance and enters multi-mode.
          * Once in multi-mode, all subsequent method calls return the same object until exec() is called.
    -     * @link    http://redis.io/commands/multi
    +     * @link    https://redis.io/commands/multi
          * @example
          * 
          * $ret = $redisCluster->multi()
    @@ -2926,13 +2926,13 @@ class RedisCluster {
         /**
          * @see     multi()
          * @return void|array
    -     * @link    http://redis.io/commands/exec
    +     * @link    https://redis.io/commands/exec
          */
         public function exec() { }
     
         /**
          * @see     multi()
    -     * @link    http://redis.io/commands/discard
    +     * @link    https://redis.io/commands/discard
          */
         public function discard() { }
     
    @@ -2943,7 +2943,7 @@ class RedisCluster {
          * @param string | array $key : a list of keys
          *
          * @return void
    -     * @link    http://redis.io/commands/watch
    +     * @link    https://redis.io/commands/watch
          * @example
          * 
          * $redisCluster->watch('x');
    @@ -2958,7 +2958,7 @@ class RedisCluster {
     
         /**
          * @see     watch()
    -     * @link    http://redis.io/commands/unwatch
    +     * @link    https://redis.io/commands/unwatch
          */
         public function unwatch() { }
     
    @@ -2969,7 +2969,7 @@ class RedisCluster {
          *
          * @return  bool   TRUE in case of success, FALSE in case of failure.
          * If a save is already running, this command will fail and return FALSE.
    -     * @link    http://redis.io/commands/save
    +     * @link    https://redis.io/commands/save
          * @example
          * $redisCluster->save('x'); //key
          * $redisCluster->save(['127.0.0.1',6379]); //[host,port]
    @@ -2983,7 +2983,7 @@ class RedisCluster {
          *
          * @return  bool    TRUE in case of success, FALSE in case of failure.
          * If a save is already running, this command will fail and return FALSE.
    -     * @link    http://redis.io/commands/bgsave
    +     * @link    https://redis.io/commands/bgsave
          */
         public function bgsave($nodeParams) { }
     
    @@ -2993,7 +2993,7 @@ class RedisCluster {
          * @param String | array $nodeParams key or [host,port]
          *
          * @return  bool Always TRUE.
    -     * @link    http://redis.io/commands/flushdb
    +     * @link    https://redis.io/commands/flushdb
          */
         public function flushDB($nodeParams) { }
     
    @@ -3003,7 +3003,7 @@ class RedisCluster {
          * @param String | array $nodeParams key or [host,port]
          *
          * @return  bool Always TRUE.
    -     * @link    http://redis.io/commands/flushall
    +     * @link    https://redis.io/commands/flushall
          */
         public function flushAll($nodeParams) { }
     
    @@ -3013,7 +3013,7 @@ class RedisCluster {
          * @param String | array $nodeParams key or [host,port]
          *
          * @return int     DB size, in number of keys.
    -     * @link    http://redis.io/commands/dbsize
    +     * @link    https://redis.io/commands/dbsize
          * @example
          * 
          * $count = $redisCluster->dbSize('x');
    @@ -3028,7 +3028,7 @@ class RedisCluster {
          * @param String | array $nodeParams key or [host,port]
          *
          * @return  bool   TRUE in case of success, FALSE in case of failure.
    -     * @link    http://redis.io/commands/bgrewriteaof
    +     * @link    https://redis.io/commands/bgrewriteaof
          * @example $redisCluster->bgrewriteaof('x');
          */
         public function bgrewriteaof($nodeParams) { }
    @@ -3039,7 +3039,7 @@ class RedisCluster {
          * @param String | array $nodeParams key or [host,port]
          *
          * @return  int    timestamp.
    -     * @link    http://redis.io/commands/lastsave
    +     * @link    https://redis.io/commands/lastsave
          * @example $redisCluster->lastSave('x');
          */
         public function lastSave($nodeParams) { }
    @@ -3095,7 +3095,7 @@ class RedisCluster {
          * - vm_enabled
          * - role
          *
    -     * @link    http://redis.io/commands/info
    +     * @link    https://redis.io/commands/info
          * @return string
          * @example
          * 
    @@ -3116,7 +3116,7 @@ class RedisCluster {
          * @param String | array $nodeParams key or [host,port]
          *
          * @return array
    -     * @link   http://redis.io/commands/role
    +     * @link   https://redis.io/commands/role
          * @example
          * 
          * $redisCluster->role(['127.0.0.1',6379]);
    @@ -3131,7 +3131,7 @@ class RedisCluster {
          * @param String | array $nodeParams key or [host,port]
          *
          * @return string an existing key in redis.
    -     * @link    http://redis.io/commands/randomkey
    +     * @link    https://redis.io/commands/randomkey
          * @example
          * 
          * $key = $redisCluster->randomKey('x');
    @@ -3147,7 +3147,7 @@ class RedisCluster {
          *
          * @return  array If successfully, the time will come back as an associative array with element zero being the
          * unix timestamp, and element one being microseconds.
    -     * @link    http://redis.io/commands/time
    +     * @link    https://redis.io/commands/time
          * @example
          * 
          * var_dump( $redisCluster->time('x') );
    @@ -3168,7 +3168,7 @@ class RedisCluster {
          *
          * @return  string STRING: +PONG on success. Throws a RedisException object on connectivity error, as described
          *                 above.
    -     * @link    http://redis.io/commands/ping
    +     * @link    https://redis.io/commands/ping
          */
         public function ping($nodeParams) { }
     
    @@ -3231,12 +3231,12 @@ class RedisCluster {
          *
          * @param String | array $nodeParams key or [host,port]
          * @param string         $operation  either `GET` or `SET`
    -     * @param string         $key        for `SET`, glob-pattern for `GET`. See http://redis.io/commands/config-get for examples.
    +     * @param string         $key        for `SET`, glob-pattern for `GET`. See https://redis.io/commands/config-get for examples.
          * @param string         $value      optional string (only for `SET`)
          *
          * @return  array   Associative array for `GET`, key -> value
    -     * @link    http://redis.io/commands/config-get
    -     * @link    http://redis.io/commands/config-set
    +     * @link    https://redis.io/commands/config-get
    +     * @link    https://redis.io/commands/config-set
          * @example
          * 
          * $redisCluster->config(['127.0.0.1',6379], "GET", "*max-*-entries*");
    @@ -3260,7 +3260,7 @@ class RedisCluster {
          *                          - numsub    Returns a key/value array where the keys are channel names and
          *                                      values are their counts.
          *                          - numpat    Integer return containing the number active pattern subscriptions.
    -     * @link    http://redis.io/commands/pubsub
    +     * @link    https://redis.io/commands/pubsub
          * @example
          * 
          * $redisCluster->pubsub(['127.0.0.1',6379], 'channels'); // All channels
    @@ -3280,10 +3280,10 @@ class RedisCluster {
          * @param   string         $script
          *
          * @return  mixed
    -     * @link    http://redis.io/commands/script-load
    -     * @link    http://redis.io/commands/script-kill
    -     * @link    http://redis.io/commands/script-flush
    -     * @link    http://redis.io/commands/script-exists
    +     * @link    https://redis.io/commands/script-load
    +     * @link    https://redis.io/commands/script-kill
    +     * @link    https://redis.io/commands/script-flush
    +     * @link    https://redis.io/commands/script-exists
          * @example
          * 
          * $redisCluster->script(['127.0.0.1',6379], 'load', $script);
    diff --git a/session/session.php b/session/session.php
    index d3a16b1b..0f6b199c 100644
    --- a/session/session.php
    +++ b/session/session.php
    @@ -97,7 +97,7 @@ function session_regenerate_id ($delete_old_session = false) {}
     /**
      * PHP > 5.4.0 
    * Session shutdown function - * @link http://www.php.net/manual/en/function.session-register-shutdown.php + * @link https://secure.php.net/manual/en/function.session-register-shutdown.php */ function session_register_shutdown () {} diff --git a/snmp/snmp.php b/snmp/snmp.php index 147ddb2e..0d036666 100644 --- a/snmp/snmp.php +++ b/snmp/snmp.php @@ -9,7 +9,7 @@ class SNMP { /** * @var int Maximum OID per GET/SET/GETBULK request - * @link https://www.php.net/manual/en/class.snmp.php#snmp.props.max-oids + * @link https://https://secure.php.net/manual/en/class.snmp.php#snmp.props.max-oids */ public $max_oids; @@ -20,21 +20,21 @@ class SNMP { *
    SNMP_VALUE_PLAIN
    The return values will be the plain value without the SNMP type hint. *
    SNMP_VALUE_OBJECT
    The return values will be objects with the properties "value" and "type", where the latter is one of the SNMP_OCTET_STR, SNMP_COUNTER etc. constants. The way "value" is returned is based on which one of SNMP_VALUE_LIBRARY, SNMP_VALUE_PLAIN is set *
    - * @link https://www.php.net/manual/en/class.snmp.php#snmp.props.max-oids + * @link https://https://secure.php.net/manual/en/class.snmp.php#snmp.props.max-oids */ public $valueretrieval; /** * @var bool Value of quick_print within the NET-SNMP library *

    Sets the value of quick_print within the NET-SNMP library. When this is set (1), the SNMP library will return 'quick printed' values. This means that just the value will be printed. When quick_print is not enabled (default) the UCD SNMP library prints extra information including the type of the value (i.e. IpAddress or OID). Additionally, if quick_print is not enabled, the library prints additional hex values for all strings of three characters or less. - * @link https://www.php.net/manual/en/class.snmp.php#snmp.props.quick-print + * @link https://https://secure.php.net/manual/en/class.snmp.php#snmp.props.quick-print */ public $quick_print; /** * @var bool Controls the way enum values are printed *

    Parameter toggles if walk/get etc. should automatically lookup enum values in the MIB and return them together with their human readable string. - * @link https://www.php.net/manual/en/class.snmp.php#snmp.props.enum-print + * @link https://https://secure.php.net/manual/en/class.snmp.php#snmp.props.enum-print */ public $enum_print; @@ -49,26 +49,26 @@ class SNMP { *

    SNMP_OID_OUTPUT_UCD
    system.sysUpTime.sysUpTimeInstance *
    SNMP_OID_OUTPUT_NONE
    Undefined *
    - * @link https://www.php.net/manual/en/class.snmp.php#snmp.props.oid-output-format + * @link https://https://secure.php.net/manual/en/class.snmp.php#snmp.props.oid-output-format */ public $oid_output_format; /** * @var bool Controls disabling check for increasing OID while walking OID tree *

    Some SNMP agents are known for returning OIDs out of order but can complete the walk anyway. Other agents return OIDs that are out of order and can cause SNMP::walk() to loop indefinitely until memory limit will be reached. PHP SNMP library by default performs OID increasing check and stops walking on OID tree when it detects possible loop with issuing warning about non-increasing OID faced. Set oid_increasing_check to FALSE to disable this check. - * @link https://www.php.net/manual/en/class.snmp.php#snmp.props.oid-increasing-check + * @link https://https://secure.php.net/manual/en/class.snmp.php#snmp.props.oid-increasing-check */ public $oid_increasing_check; /** * @var int Controls which failures will raise SNMPException instead of warning. Use bitwise OR'ed SNMP::ERRNO_* constants. By default all SNMP exceptions are disabled. - * @link https://www.php.net/manual/en/class.snmp.php#snmp.props.exceptions-enabled + * @link https://https://secure.php.net/manual/en/class.snmp.php#snmp.props.exceptions-enabled */ public $exceptions_enabled; /** * @var array Read-only property with remote agent configuration: hostname, port, default timeout, default retries count - * @link https://www.php.net/manual/en/class.snmp.php#snmp.props.info + * @link https://https://secure.php.net/manual/en/class.snmp.php#snmp.props.info */ public $info; diff --git a/sockets/sockets.php b/sockets/sockets.php index d11ed3e3..52bd1843 100644 --- a/sockets/sockets.php +++ b/sockets/sockets.php @@ -674,7 +674,7 @@ function socket_send ($socket, $buf, $len, $flags) {} /** * (PHP 5 >=5.5.0)
    * Send a message - * @link https://www.php.net/manual/en/function.socket-sendmsg.php + * @link https://https://secure.php.net/manual/en/function.socket-sendmsg.php * @param resource $socket * @param array $message * @param int $flags @@ -761,7 +761,7 @@ function socket_recvfrom ($socket, &$buf, $len, $flags, &$name, &$port = null) { /** * Read a message - * @link https://www.php.net/manual/en/function.socket-recvmsg.php + * @link https://https://secure.php.net/manual/en/function.socket-recvmsg.php * @param resource $socket * @param string $message * @param int $flags [optional] diff --git a/sodium/sodium.php b/sodium/sodium.php index 157e493a..9c2736b1 100644 --- a/sodium/sodium.php +++ b/sodium/sodium.php @@ -1153,7 +1153,7 @@ function sodium_crypto_scalarmult_base( * prevent misuse by ensuring that the provided key length is always be correct. * * @since 7.2.0 - * @see http://php.net/manual/en/function.sodium-crypto-secretbox-keygen.php + * @see https://secure.php.net/manual/en/function.sodium-crypto-secretbox-keygen.php */ function sodium_crypto_secretbox_keygen(): string {} @@ -1164,7 +1164,7 @@ function sodium_crypto_secretbox_keygen(): string {} * prevent misuse by ensuring that the provided key length is always be correct. * * @since 7.2.0 - * @see http://php.net/manual/en/function.sodium-crypto-aead-aes256gcm-keygen.php + * @see https://secure.php.net/manual/en/function.sodium-crypto-aead-aes256gcm-keygen.php */ function sodium_crypto_aead_aes256gcm_keygen(): string {} @@ -1174,7 +1174,7 @@ function sodium_crypto_aead_aes256gcm_keygen(): string {} * prevent misuse by ensuring that the provided key length is always be correct. * * @since 7.2.0 - * @see http://php.net/manual/en/function.sodium-crypto-aead-chacha20poly1305-keygen.php + * @see https://secure.php.net/manual/en/function.sodium-crypto-aead-chacha20poly1305-keygen.php */ function sodium_crypto_aead_chacha20poly1305_keygen(): string {} @@ -1185,7 +1185,7 @@ function sodium_crypto_aead_chacha20poly1305_keygen(): string {} * prevent misuse by ensuring that the provided key length is always be correct. * * @since 7.2.0 - * @see http://php.net/manual/en/function.sodium-crypto-aead-chacha20poly1305-ietf-keygen.php + * @see https://secure.php.net/manual/en/function.sodium-crypto-aead-chacha20poly1305-ietf-keygen.php */ function sodium_crypto_aead_chacha20poly1305_ietf_keygen(): string {} diff --git a/solr/Documents/SolrDocument.php b/solr/Documents/SolrDocument.php index 5f3f6cc7..adf3a64f 100644 --- a/solr/Documents/SolrDocument.php +++ b/solr/Documents/SolrDocument.php @@ -363,7 +363,7 @@ final class SolrDocument implements ArrayAccess, Iterator, Serializable { /** * (PECL solr >= 0.9.2)
    * Returns an array representation of the document - * @link SolrDocument + * @link https://secure.php.net/manual/en/solrdocument.toarray.php * @return array

    * Returns an array representation of the document. *

    diff --git a/solr/Queries/SolrQuery.php b/solr/Queries/SolrQuery.php index 2f06e1a7..8a4d8eb6 100644 --- a/solr/Queries/SolrQuery.php +++ b/solr/Queries/SolrQuery.php @@ -574,7 +574,7 @@ class SolrQuery extends SolrModifiableParams implements Serializable { /** * (PECL solr >= 2.2.0)
    * Returns true if grouping is enabled - * http://php.net/manual/en/solrquery.getgroup.php + * https://secure.php.net/manual/en/solrquery.getgroup.php * @return bool

    * Returns true if grouping is enabled *

    diff --git a/sqlsrv/sqlsrv.php b/sqlsrv/sqlsrv.php index be1f35e9..9f856ae7 100644 --- a/sqlsrv/sqlsrv.php +++ b/sqlsrv/sqlsrv.php @@ -871,7 +871,7 @@ define('SQLSRV_CURSOR_CLIENT_BUFFERED', 'buffered'); * and {@link http://msdn.microsoft.com/en-us/library/cc296182.aspx How to: Connect Using SQL Server Authentication.}
    * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
    - * @link http://msdn.microsoft.com/en-us/library/cc296161.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-connect * @param string $server_name A string specifying the name of the server to which a connection is being established. * An instance name (for example, "myServer\instanceName") or port number (for example, "myServer, 1521") can be * included as part of this string. For a complete description of the options available for this parameter, see the @@ -901,7 +901,7 @@ function sqlsrv_connect($server_name, $connection_info = array()){} * resource to null.
    * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
    - * @link http://msdn.microsoft.com/en-us/library/cc296175.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-close * @param resource|null $conn The connection to be closed. * @return bool The Boolean value true unless the function is called with an invalid parameter. If the function is called with an invalid parameter, false is returned. */ @@ -922,7 +922,7 @@ function sqlsrv_close($conn){} * sqlsrv_begin_transaction, the call returns false and a Not in Transaction error is added to the error collection.
    * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
    - * @link http://msdn.microsoft.com/en-us/library/cc296194.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-commit * @param resource $conn The connection on which the transaction is active. * @return bool A Boolean value: true if the transaction was successfully committed. Otherwise, false. */ @@ -949,7 +949,7 @@ function sqlsrv_commit($conn){} * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296206.aspx How to Perform Transactions} * and {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
    - * @link http://msdn.microsoft.com/en-us/library/cc296151.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-begin-transaction * @param resource $conn The connection with which the transaction is associated. * @return bool A Boolean value: true if the transaction was successfully begun. Otherwise, false. */ @@ -973,7 +973,7 @@ function sqlsrv_begin_transaction($conn){} * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296206.aspx How to Perform Transactions} * and {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
    - * @link http://msdn.microsoft.com/en-us/library/cc296176.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-rollback * @param resource $conn The connection on which the transaction is active. * @return bool A Boolean value: true if the transaction was successfully rolled back. Otherwise, false. */ @@ -1005,7 +1005,7 @@ function sqlsrv_rollback($conn){} * SQLSRV_ERR_WARNINGS parameter value (see Parameters section below for details).
    * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
    - * @link http://msdn.microsoft.com/en-us/library/cc296200.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-errors * @param int $errorsAndOrWarnings [optional] A predefined constant. This parameter can take one of the values in the * following list: SQLSRV_ERR_ALL, SQLSRV_ERR_ERRORS, SQLSRV_ERR_WARNINGS. If no parameter value is supplied, both * errors and warnings generated by the last sqlsrv function call are returned. @@ -1038,7 +1038,7 @@ function sqlsrv_errors($errorsAndOrWarnings = SQLSRV_ERR_ALL){} *
    Changes the settings for error handling and logging options.
    * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
    - * @link http://msdn.microsoft.com/en-us/library/cc644931.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-configure * @param string $setting The name of the setting to be configured. See table below for list of settings. * @param mixed $value The value to be applied to the setting specified in the $setting parameter. The possible values for this parameter depend on which setting is specified. The following table lists the possible combinations.
    * ClientBufferMaxKBSize (Default: 10240)
    @@ -1070,7 +1070,7 @@ function sqlsrv_configure($setting, $value){} * For a list of configurable settings, see {@link sqlsrv_configure() sqlsrv_configure}.
    * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
    - * @link http://msdn.microsoft.com/en-us/library/cc644933.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-get-config * @param string $setting The configuration setting for which the value is returned. * @return mixed The value of the setting specified by the $setting parameter. If an invalid setting is specified, false is returned and an error is added to the error collection. */ @@ -1107,7 +1107,7 @@ function sqlsrv_get_config($setting){} *
  • {@link http://msdn.microsoft.com/en-us/library/cc296201.aspx How to: Perform Parameterized Queries}
  • *
  • {@link http://msdn.microsoft.com/en-us/library/cc296191.aspx How to: Send Data as a Stream}
  • *
  • {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
  • - * @link http://msdn.microsoft.com/en-us/library/cc296181.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-prepare * @param resource $conn The connection resource associated with the created statement. * @param string $tsql The Transact-SQL expression that corresponds to the created statement. * @param array $params [optional]: An array of values that correspond to parameters in a parameterized query. Each @@ -1155,7 +1155,7 @@ function sqlsrv_prepare($conn, $tsql, $params=array(), $options=array()){} *
    • {@link sqlsrv_query() sqlsrv_query}
    • *
    • {@link http://msdn.microsoft.com/en-us/library/cc296201.aspx How to: Perform Parameterized Queries}
    • *
    • {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
    - * @link http://msdn.microsoft.com/en-us/library/cc296162.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-execute * @param resource $stmt A resource specifying the statement to be executed. For more information about how to create a * statement resource, see {@link sqlsrv_prepare() sqlsrv_prepare}. * @return bool A Boolean value: true if the statement was successfully executed. Otherwise, false. @@ -1181,7 +1181,7 @@ function sqlsrv_execute($stmt){} *
  • {@link http://msdn.microsoft.com/en-us/library/cc296201.aspx How to: Perform Parameterized Queries}
  • *
  • {@link http://msdn.microsoft.com/en-us/library/cc296191.aspx How to: Send Data as a Stream}
  • *
  • {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
  • - * @link http://msdn.microsoft.com/en-us/library/cc296184.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-query * @param resource $conn The connection resource associated with the prepared statement. * @param string $tsql The Transact-SQL expression that corresponds to the prepared statement. * @param array $params [optional]: An array of values that correspond to parameters in a parameterized query. Each @@ -1227,7 +1227,7 @@ function sqlsrv_query($conn, $tsql, $params=array(), $options=array()){} * and {@link sqlsrv_execute() sqlsrv_execute}.
    * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
    - * @link http://msdn.microsoft.com/en-us/library/cc296187.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-fetch * @param resource|null $stmt A statement resource corresponding to an executed statement. * @param int|null $row [optional]: One of the following values, specifying the row to access in a result set that uses a * scrollable cursor: SQLSRV_SCROLL_NEXT, SQLSRV_SCROLL_PRIOR, SQLSRV_SCROLL_FIRST, SQLSRV_SCROLL_LAST, @@ -1260,7 +1260,7 @@ function sqlsrv_fetch($stmt, $row=null, $offset=null){} * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
    * - * @link http://msdn.microsoft.com/en-us/library/cc296207.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-get-field * @param resource $stmt A statement resource corresponding to an executed statement. * @param int $field_index The index of the field to be retrieved. Indexes begin at zero. * @param int $get_as_type [optional] A SQLSRV constant (SQLSRV_PHPTYPE_*) that determines the PHP data type for the returned @@ -1304,7 +1304,7 @@ function sqlsrv_get_field($stmt, $field_index, $get_as_type){} * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296160.aspx Retrieving Data} and * {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
    * - * @link http://msdn.microsoft.com/en-us/library/cc296174.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-fetch-array * @param resource|null $stmt A statement resource corresponding to an executed statement. * @param int $fetch_type [optional] A predefined constant. This parameter can take on one of the values listed in the * following table: @@ -1333,7 +1333,7 @@ function sqlsrv_fetch_array($stmt, $fetch_type = null, $row=null, $offset=null){ * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296160.aspx Retrieving Data} and * {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
    * - * @link http://msdn.microsoft.com/en-us/library/cc626308.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-fetch-object * @param resource $stmt A statement resource corresponding to an executed statement. * @param string|null $class_name [optional] A string specifying the name of the class to instantiate. If a value for the * $className parameter is not specified, an instance of the PHP {@link stdClass} is instantiated. @@ -1365,7 +1365,7 @@ function sqlsrv_fetch_object($stmt, $class_name=null, $ctor_params=null, $row=nu * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
    * - * @link http://msdn.microsoft.com/en-us/library/ee376926.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-has-rows * @param resource $stmt The executed statement. * @return bool If there are rows in the result set, the return value will be true. If there are no rows, or if the * function call fails, the return value will be false. @@ -1381,7 +1381,7 @@ function sqlsrv_has_rows($stmt){} * Additional Information at {@link sqlsrv_field_metadata() sqlsrv_field_metadata} and * {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
    * - * @link http://msdn.microsoft.com/en-us/library/cc626301.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-num-fields * @param resource $stmt The statement on which the targeted result set is active. * @return int|bool An integer value that represents the number of fields in the active result set. If an error occurs, * the Boolean value false is returned. @@ -1399,7 +1399,7 @@ function sqlsrv_num_fields($stmt){} * {@link http://msdn.microsoft.com/en-us/library/cc296202.aspx Updating Data (Microsoft Drivers for PHP for SQL Server)} and * {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
    * - * @link http://msdn.microsoft.com/en-us/library/cc296167.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-next-result * @param resource $stmt The executed statement on which the next result is made active. * @return bool|null If the next result was successfully made active, the Boolean value true is returned. If an error occurred in * making the next result active, false is returned. If no more results are available, null is returned. @@ -1417,7 +1417,7 @@ function sqlsrv_next_result($stmt){} * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
    * - * @link http://msdn.microsoft.com/en-us/library/ee376931.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-num-rows * @param resource $stmt The result set for which to count the rows. * @return int|bool False if there was an error calculating the number of rows. Otherwise, returns the number of rows in the result set. */ @@ -1431,7 +1431,7 @@ function sqlsrv_num_rows($stmt){} * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
    * - * @link http://msdn.microsoft.com/en-us/library/cc296178.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-rows-affected * @param resource $stmt A statement resource corresponding to an executed statement. * @return int|bool An integer indicating the number of rows modified by the last executed statement. If no rows were * modified, zero (0) is returned. If no information about the number of modified rows is available, negative one (-1) @@ -1446,7 +1446,7 @@ function sqlsrv_rows_affected($stmt){} * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
    * - * @link http://msdn.microsoft.com/en-us/library/cc296165.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-client-info * @param resource $conn The connection resource by which the client is connected. * @return array|null An associative array with keys described in the table below, or false if the connection resource * is null.
    @@ -1464,7 +1464,7 @@ function sqlsrv_client_info($conn){} * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
    * - * @link http://msdn.microsoft.com/en-us/library/cc296204.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-server-info * @param resource $conn The connection resource by which the client and server are connected. * @return array An associative array with the following keys: *
    • CurrentDatabase - The database currently being targeted.
    • @@ -1487,7 +1487,7 @@ function sqlsrv_server_info($conn){} * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
      * - * @link http://msdn.microsoft.com/en-us/library/cc296179.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-cancel * @param resource $stmt The statement to be canceled. * @return bool A Boolean value: true if the operation was successful. Otherwise, false. */ @@ -1507,7 +1507,7 @@ function sqlsrv_cancel($stmt){} * Additional Information at {@link sqlsrv_cancel() sqlsrv_cancel} and * {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
      * - * @link http://msdn.microsoft.com/en-us/library/cc296164.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-free-stmt * @param resource|null $stmt The statement to be closed. * @return bool The Boolean value true unless the function is called with an invalid parameter. If the function is * called with an invalid parameter, false is returned. @@ -1525,7 +1525,7 @@ function sqlsrv_free_stmt($stmt){} * Additional Information at {@link sqlsrv_cancel() sqlsrv_cancel} and * {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
      * - * @link http://msdn.microsoft.com/en-us/library/cc296197.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-field-metadata * @param resource $stmt A statement resource for which field metadata is sought. * @return array|bool An array of arrays or false. The array consists of one array for each field in the result set. * Each sub-array has keys as described in the table below. If there is an error in retrieving field metadata, false is @@ -1558,7 +1558,7 @@ function sqlsrv_field_metadata($stmt){} * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
      * - * @link http://msdn.microsoft.com/en-us/library/cc296180.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/sqlsrv-send-stream-data * @param resource $stmt A statement resource corresponding to an executed statement. * @return bool Boolean : true if there is more data to be sent. Otherwise, false. */ @@ -1582,7 +1582,7 @@ function sqlsrv_send_stream_data($stmt){} *
    • {@link http://msdn.microsoft.com/en-us/library/cc626307.aspx How to: Send and Retrieve UTF-8 Data Using Built-In UTF-8 Support.}
    • *
    • {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
    • * - * @link http://msdn.microsoft.com/en-us/library/cc296183.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/constants-microsoft-drivers-for-php-for-sql-server * @param string $encoding The encoding to use for the stream. The valid options are SQLSRV_ENC_BINARY, SQLSRV_ENC_CHAR * or "UTF-8". * @return int Value to use in any place that accepts a SQLSRV_PHPTYPE_* constant to represent a PHP stream with the @@ -1608,7 +1608,7 @@ function SQLSRV_PHPTYPE_STREAM($encoding){} *
    • {@link http://msdn.microsoft.com/en-us/library/cc626307.aspx How to: Send and Retrieve UTF-8 Data Using Built-In UTF-8 Support.}
    • *
    • {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
    • * - * @link http://msdn.microsoft.com/en-us/library/cc296183.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/constants-microsoft-drivers-for-php-for-sql-server * @param string $encoding The encoding to use for the stream. The valid options are SQLSRV_ENC_BINARY, SQLSRV_ENC_CHAR * or "UTF-8". * @return int Value to use in any place that accepts a SQLSRV_PHPTYPE_* constant to represent a PHP string with the @@ -1623,7 +1623,7 @@ function SQLSRV_PHPTYPE_STRING($encoding){} * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
      * - * @link http://msdn.microsoft.com/en-us/library/cc296183.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/constants-microsoft-drivers-for-php-for-sql-server * @param int $byteCount Must be between 1 and 8000. * @return int Value to use in any place that accepts a SQLSRV_SQLTYPE_* constant to represent the 'binary' data type. */ @@ -1636,7 +1636,7 @@ function SQLSRV_SQLTYPE_BINARY($byteCount){} * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
      * - * @link http://msdn.microsoft.com/en-us/library/cc296183.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/constants-microsoft-drivers-for-php-for-sql-server * @param int $byteCount Must be between 1 and 8000. * @return int Value to use in any place that accepts a SQLSRV_SQLTYPE_* constant to represent the varbinary data type. */ @@ -1649,7 +1649,7 @@ function SQLSRV_SQLTYPE_VARBINARY($byteCount){} * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
      * - * @link http://msdn.microsoft.com/en-us/library/cc296183.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/constants-microsoft-drivers-for-php-for-sql-server * * @param int $charCount Must be between 1 and 8000. * @@ -1665,7 +1665,7 @@ function SQLSRV_SQLTYPE_VARCHAR($charCount) {} * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
      * - * @link http://msdn.microsoft.com/en-us/library/cc296183.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/constants-microsoft-drivers-for-php-for-sql-server * @param int $charCount Must be between 1 and 8000. * @return int Value to use in any place that accepts a SQLSRV_SQLTYPE_* constant to represent the char data type. */ @@ -1678,7 +1678,7 @@ function SQLSRV_SQLTYPE_CHAR($charCount){} * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
      * - * @link http://msdn.microsoft.com/en-us/library/cc296183.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/constants-microsoft-drivers-for-php-for-sql-server * @param int $charCount Must be between 1 and 4000. * @return int Value to use in any place that accepts a SQLSRV_SQLTYPE_* constant to represent the nchar data type. */ @@ -1691,7 +1691,7 @@ function SQLSRV_SQLTYPE_NCHAR($charCount){} * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
      * - * @link http://msdn.microsoft.com/en-us/library/cc296183.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/constants-microsoft-drivers-for-php-for-sql-server * @param int $charCount Must be between 1 and 4000. * @return int Value to use in any place that accepts a SQLSRV_SQLTYPE_* constant to represent the nvarchar data type. */ @@ -1704,7 +1704,7 @@ function SQLSRV_SQLTYPE_NVARCHAR($charCount){} * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
      * - * @link http://msdn.microsoft.com/en-us/library/cc296183.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/constants-microsoft-drivers-for-php-for-sql-server * @param int $precision Must be between 1 and 38. * @param int $scale Must be between 1 and $precision. * @return int Value to use in any place that accepts a SQLSRV_SQLTYPE_* constant to represent the decimal data type. @@ -1718,7 +1718,7 @@ function SQLSRV_SQLTYPE_DECIMAL($precision, $scale){} * * Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}
      * - * @link http://msdn.microsoft.com/en-us/library/cc296183.aspx + * @link https://docs.microsoft.com/en-us/sql/connect/php/constants-microsoft-drivers-for-php-for-sql-server * @param int $precision Must be between 1 and 38. * @param int $scale Must be between 1 and $precision. * @return int Value to use in any place that accepts a SQLSRV_SQLTYPE_* constant to represent the numeric data type. diff --git a/standard/_types.php b/standard/_types.php index 33431ad8..4f4e6f9d 100644 --- a/standard/_types.php +++ b/standard/_types.php @@ -149,7 +149,7 @@ namespace { /** * Generator objects are returned from generators, cannot be instantiated via new. - * @link http://www.php.net/manual/en/class.generator.php + * @link https://secure.php.net/manual/en/class.generator.php * @link https://wiki.php.net/rfc/generators */ final class Generator implements Iterator { diff --git a/standard/standard_0.php b/standard/standard_0.php index e8caeb9d..0d86dd04 100644 --- a/standard/standard_0.php +++ b/standard/standard_0.php @@ -98,7 +98,7 @@ class Directory { * Close directory handle. * Same as closedir(), only dir_handle defaults to $this. * @param resource $dir_handle [optional] - * @link http://www.php.net/manual/en/directory.close.php + * @link https://secure.php.net/manual/en/directory.close.php */ public function close ( $dir_handle ) {} @@ -106,7 +106,7 @@ class Directory { * Rewind directory handle. * Same as rewinddir(), only dir_handle defaults to $this. * @param resource $dir_handle [optional] - * @link http://www.php.net/manual/en/directory.rewind.php + * @link https://secure.php.net/manual/en/directory.rewind.php */ public function rewind ( $dir_handle ) {} @@ -115,7 +115,7 @@ class Directory { * Same as readdir(), only dir_handle defaults to $this. * @param resource $dir_handle [optional] * @return string - * @link http://www.php.net/manual/en/directory.read.php + * @link https://secure.php.net/manual/en/directory.read.php */ public function read ( $dir_handle) { } @@ -309,7 +309,7 @@ function wordwrap ($str, $width = 75, $break = "\n", $cut = false) {} * Convert special characters to HTML entities * @link https://php.net/manual/en/function.htmlspecialchars.php * @param string $string

      - * The {@link http://www.php.net/manual/en/language.types.string.php string} being converted. + * The {@link https://secure.php.net/manual/en/language.types.string.php string} being converted. *

      * @param int $flags [optional]

      * A bitmask of one or more of the following flags, which specify how to handle quotes, @@ -909,9 +909,9 @@ function getimagesize ($filename, array &$imageinfo = null) {} /** * Return an image containing the affine tramsformed src image, using an optional clipping area - * @link http://www.php.net/manual/en/function.imageaffine.php + * @link https://secure.php.net/manual/en/function.imageaffine.php * @param resource $image

      An image resource, returned by one of the image creation functions, - * such as {@link http://www.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}.

      + * such as {@link https://secure.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}.

      * @param array $affine

      Array with keys 0 to 5.

      * @param array $clip [optional]

      Array with keys "x", "y", "width" and "height".

      * @return resource|bool Return affined image resource on success or FALSE on failure. @@ -920,7 +920,7 @@ function imageaffine($image, $affine, $clip = null) {} /** * Concat two matrices (as in doing many ops in one go) - * @link http://www.php.net/manual/en/function.imageaffinematrixconcat.php + * @link https://secure.php.net/manual/en/function.imageaffinematrixconcat.php * @param array $m1

      Array with keys 0 to 5.

      * @param array $m2

      Array with keys 0 to 5.

      * @return array|bool Array with keys 0 to 5 and float values or FALSE on failure. @@ -930,7 +930,7 @@ function imageaffinematrixconcat(array $m1, array $m2) {} /** * Return an image containing the affine tramsformed src image, using an optional clipping area - * @link http://www.php.net/manual/en/function.imageaffinematrixget.php + * @link https://secure.php.net/manual/en/function.imageaffinematrixget.php * @param int $type

      One of IMG_AFFINE_* constants. * @param mixed $options [optional] * @return array|bool Array with keys 0 to 5 and float values or FALSE on failure. @@ -941,9 +941,9 @@ function imageaffinematrixget ($type, $options = null) {} /** * Crop an image using the given coordinates and size, x, y, width and height - * @link http://www.php.net/manual/en/function.imagecrop.php + * @link https://secure.php.net/manual/en/function.imagecrop.php * @param resource $image

      - * An image resource, returned by one of the image creation functions, such as {@link http://www.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}. + * An image resource, returned by one of the image creation functions, such as {@link https://secure.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}. *

      * @param array $rect

      Array with keys "x", "y", "width" and "height".

      * @return resource|bool Return cropped image resource on success or FALSE on failure. @@ -953,9 +953,9 @@ function imagecrop ($image, $rect) {} /** * Crop an image automatically using one of the available modes - * @link http://www.php.net/manual/en/function.imagecropauto.php + * @link https://secure.php.net/manual/en/function.imagecropauto.php * @param resource $image

      - * An image resource, returned by one of the image creation functions, such as {@link http://www.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}. + * An image resource, returned by one of the image creation functions, such as {@link https://secure.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}. *

      * @param int $mode [optional]

      * One of IMG_CROP_* constants. @@ -974,9 +974,9 @@ function imagecropauto ($image, $mode = -1, $threshold = .5, $color = -1) {} /** * Flips an image using a given mode - * @link http://www.php.net/manual/en/function.imageflip.php + * @link https://secure.php.net/manual/en/function.imageflip.php * @param resource $image

      - * An image resource, returned by one of the image creation functions, such as {@link http://www.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}. + * An image resource, returned by one of the image creation functions, such as {@link https://secure.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}. *

      * @param int $mode

      * Flip mode, this can be one of the IMG_FLIP_* constants: @@ -1015,9 +1015,9 @@ function imageflip ($image, $mode) {} /** * Converts a palette based image to true color - * @link http://www.php.net/manual/en/function.imagepalettetotruecolor.php + * @link https://secure.php.net/manual/en/function.imagepalettetotruecolor.php * @param resource $image

      - * An image resource, returnd by one of the image creation functions, such as {@link http://www.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}. + * An image resource, returnd by one of the image creation functions, such as {@link https://secure.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}. *

      * @return bool Returns TRUE if the convertion was complete, or if the source image already is a true color image, otherwise FALSE is returned. * @since 5.5.0 @@ -1027,9 +1027,9 @@ function imagepalettetotruecolor ($image) {} /** * @since 5.5.0 * Scale an image using the given new width and height - * @link http://www.php.net/manual/en/function.imagescale.php + * @link https://secure.php.net/manual/en/function.imagescale.php * @param resource $image

      - * An image resource, returnd by one of the image creation functions, such as {@link http://www.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}. + * An image resource, returnd by one of the image creation functions, such as {@link https://secure.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}. *

      * @param int $new_width * @param int $new_height [optional] @@ -1041,9 +1041,9 @@ function imagescale ($image, $new_width, $new_height = -1, $mode = IMG_BILINEAR_ /** * Set the interpolation method - * @link http://www.php.net/manual/en/function.imagesetinterpolation.php + * @link https://secure.php.net/manual/en/function.imagesetinterpolation.php * @param resource $image

      - * An image resource, returned by one of the image creation functions, such as {@link http://www.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}. + * An image resource, returned by one of the image creation functions, such as {@link https://secure.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}. *

      * @param int $method

      * The interpolation method, which can be one of the following: diff --git a/standard/standard_8.php b/standard/standard_8.php index d1bee793..f52088b3 100644 --- a/standard/standard_8.php +++ b/standard/standard_8.php @@ -72,7 +72,7 @@ function closelog () {} * Registers a function that will be called when PHP starts sending output. * The callback is executed just after PHP prepares all headers to be sent,
      * and before any other output is sent, creating a window to manipulate the outgoing headers before being sent. - * @link http://www.php.net/manual/en/function.header-register-callback.php + * @linkhttps://secure.php.net/manual/en/function.header-register-callback.php * @param callable $callback Function called just before the headers are sent. * @return bool true on success or false on failure. * @since 4.0 @@ -83,7 +83,7 @@ function header_register_callback ( callable $callback ) {} /** * PHP > 5.4.0
      * Get the size of an image from a string. - * @link http://www.php.net/manual/en/function.getimagesizefromstring.php + * @link https://secure.php.net/manual/en/function.getimagesizefromstring.php * @param string $imagedata The image data, as a string. * @param array $imageinfo This optional parameter allows you to extract
      * some extended information from the image file. Currently, this will
      @@ -103,7 +103,7 @@ function getimagesizefromstring ($imagedata , array &$imageinfo = null) {} /** * PHP > 5.4.0
      * Set the stream chunk size. - * @link http://www.php.net/manual/en/function.stream-set-chunk-size.php + * @link https://secure.php.net/manual/en/function.stream-set-chunk-size.php * @param resource $fp The target stream. * @param int $chunk_size The desired new chunk size. * @return int Returns the previous chunk size on success.
      @@ -114,7 +114,7 @@ function stream_set_chunk_size ($fp , $chunk_size) {} /** * PHP > 5.4.0
      * Import a stream. - * @link http://www.php.net/manual/en/function.socket-import-stream.php + * @link https://secure.php.net/manual/en/function.socket-import-stream.php * @param resource $stream The stream resource to import. * @return void|bool|null Returns FALSE or NULL on failure. */ diff --git a/standard/standard_9.php b/standard/standard_9.php index 83d8c1a6..c01e88d7 100644 --- a/standard/standard_9.php +++ b/standard/standard_9.php @@ -101,7 +101,7 @@ function array_count_values(array $input) { } /** * (PHP 5 >=5.5.0)
      * Return the values from a single column in the input array - * @link http://www.php.net/manual/en/function.array-column.php + * @link https://secure.php.net/manual/en/function.array-column.php * @param array $array

      A multi-dimensional array (record set) from which to pull a column of values.

      * @param mixed $column

      The column of values to return. This value may be the integer key of the column you wish to retrieve, or it may be the string key name for an associative array. It may also be NULL to return complete arrays (useful together with index_key to reindex the array).

      * @param mixed $index_key [optional]

      The column to use as the index/keys for the returned array. This value may be the integer key of the column, or it may be the string key name.

      @@ -788,7 +788,7 @@ function assert($assertion, $description) { } /** * (PHP 5 >=5.5.0)
      * Returns the current process title - * @link http://www.php.net/manual/en/function.cli-get-process-title.php + * @link https://secure.php.net/manual/en/function.cli-get-process-title.php * @return string */ function cli_get_process_title() { } diff --git a/superglobals/_superglobals.php b/superglobals/_superglobals.php index 7da9205f..e5691faf 100644 --- a/superglobals/_superglobals.php +++ b/superglobals/_superglobals.php @@ -5,7 +5,7 @@ * The keys of this array are the names of the global variables. * $GLOBALS has existed since PHP 3. * - *

      http://us2.php.net/manual/en/reserved.variables.php + *

      http://us2.php.net/manual/en/reserved.variables.php */ $GLOBALS = array(); @@ -14,7 +14,7 @@ $GLOBALS = array(); * Variables provided to the script via HTTP cookies. Analogous to the old $HTTP_COOKIE_VARS array * (which is still available, but deprecated). * - *

      + *

      * http://us2.php.net/manual/en/reserved.variables.php */ $_COOKIE = array(); @@ -26,7 +26,7 @@ $_COOKIE = array(); * Variables provided to the script via the environment. * Analogous to the old $HTTP_ENV_VARS array (which is still available, but deprecated). * - *

      + *

      * http://us2.php.net/manual/en/reserved.variables.php */ $_ENV = array(); @@ -43,7 +43,7 @@ $HTTP_ENV_VARS = array(); * (which is still available, but deprecated). * See POST method uploads for more information. * - *

      + *

      * http://us2.php.net/manual/en/reserved.variables.php */ $_FILES = array(); @@ -60,7 +60,7 @@ $HTTP_POST_FILES = array(); * Variables provided to the script via URL query string. * Analogous to the old $HTTP_GET_VARS array (which is still available, but deprecated). * - *

      + *

      * http://us2.php.net/manual/en/reserved.variables.php */ $_GET = array(); @@ -75,9 +75,9 @@ $HTTP_GET_VARS = array(); * * Variables provided to the script via HTTP POST. Analogous to the old $HTTP_POST_VARS array * (which is still available, but deprecated). - * @link http://www.php.net/manual/en/language.variables.predefined.php + * @link https://secure.php.net/manual/en/language.variables.predefined.php * - *

      + *

      * http://us2.php.net/manual/en/reserved.variables.php */ $_POST = array(); @@ -101,7 +101,7 @@ $HTTP_POST_VARS = array(); * Note: When running on the command line , this will not include the argv and argc entries; these are present in the $_SERVER array. * * - *

      + *

      * http://us2.php.net/manual/en/reserved.variables.php */ $_REQUEST = array(); @@ -113,7 +113,7 @@ $_REQUEST = array(); * Variables set by the web server or otherwise directly related to the execution environment of the current script. * Analogous to the old $HTTP_SERVER_VARS array (which is still available, but deprecated). * - *

      + *

      * http://us2.php.net/manual/en/reserved.variables.php */ $_SERVER = array(); @@ -168,7 +168,7 @@ $_SERVER['ORIG_PATH_INFO'] = ''; * Analogous to the old $HTTP_SESSION_VARS array (which is still available, but deprecated). * See the Session handling functions section for more information. * - *

      + *

      * http://us2.php.net/manual/en/reserved.variables.php */ $_SESSION = array(); @@ -182,7 +182,7 @@ $HTTP_SESSION_VARS = array(); * * The number of arguments passed to script * - *

      + *

      * http://us2.php.net/manual/en/reserved.variables.php */ $argc = 0; @@ -192,7 +192,7 @@ $argc = 0; * * Array of arguments passed to script * - *

      + *

      * http://us2.php.net/manual/en/reserved.variables.php */ $argv = array(); @@ -202,7 +202,7 @@ $argv = array(); * * Raw POST data * - *

      + *

      * http://us2.php.net/manual/en/reserved.variables.php * * @deprecated 5.6.0 Deprecated as of PHP 5.6.0. Use the php://input stream instead. @@ -214,7 +214,7 @@ $HTTP_RAW_POST_DATA = ''; * * HTTP response headers * - *

      + *

      * http://us2.php.net/manual/en/reserved.variables.php */ $http_response_header = array(); @@ -223,7 +223,7 @@ $http_response_header = array(); * @xglobal $php_errormsg string * The previous error message * - *

      + *

      * http://us2.php.net/manual/en/reserved.variables.php */ $php_errormsg = ''; diff --git a/tests/StubParser.php b/tests/StubParser.php index ca518a35..6b2371fd 100644 --- a/tests/StubParser.php +++ b/tests/StubParser.php @@ -76,6 +76,8 @@ class ASTVisitor extends NodeVisitorAbstract $function->parameters = $this->parseParams($node); $function->parseError = null; + $function->links = []; + $function->see = []; if ($node->getDocComment() !== null) { try { $phpDoc = $this->docFactory->create($node->getDocComment()->getText()); @@ -83,6 +85,8 @@ class ASTVisitor extends NodeVisitorAbstract $function->parseError = $e->getMessage(); return; } + $function->links = $phpDoc->getTagsByName('link'); + $function->see = $phpDoc->getTagsByName('see'); if (empty($phpDoc->getTagsByName('deprecated'))) { $function->is_deprecated = false; } else { @@ -144,6 +148,8 @@ class ASTVisitor extends NodeVisitorAbstract //this will test PHPDocs $method->parseError = null; $method->returnTag = null; + $method->links = []; + $method->see = []; if ($node->getDocComment() !== null) { try { $phpDoc = $this->docFactory->create($node->getDocComment()->getText()); @@ -151,6 +157,8 @@ class ASTVisitor extends NodeVisitorAbstract if(!empty($parsedReturnTag) && $parsedReturnTag[0] instanceof Return_){ $method->returnTag = $parsedReturnTag[0]->getType() . ""; } + $method->links = $phpDoc->getTagsByName("link"); + $method->see = $phpDoc->getTagsByName("see"); } catch (Exception $e) { $method->parseError = $e->getMessage(); } @@ -169,7 +177,6 @@ class ASTVisitor extends NodeVisitorAbstract } else { $method->access = 'public'; } - $this->stubs->classes[$className]->methods[$method->name] = $method; } @@ -179,9 +186,13 @@ class ASTVisitor extends NodeVisitorAbstract $className = $this->getFQN($node, $node->name->name); //this will test PHPDocs $class->parseError = null; + $class->links = []; + $class->see = []; if ($node->getDocComment() !== null) { try { - $this->docFactory->create($node->getDocComment()->getText()); + $phpDoc = $this->docFactory->create($node->getDocComment()->getText()); + $class->links = $phpDoc->getTagsByName("link"); + $class->see = $phpDoc->getTagsByName("see"); } catch (Exception $e) { $class->parseError = $e->getMessage(); } diff --git a/tests/TestStubs.php b/tests/TestStubs.php index 40ab799a..b9a4fe71 100644 --- a/tests/TestStubs.php +++ b/tests/TestStubs.php @@ -1,5 +1,8 @@ assertNull($function->parseError, $function->parseError ?: ""); + $this->checkLinks($function, "function $function->name"); } public function stubClassProvider() @@ -249,6 +253,7 @@ class TestStubs extends TestCase public function testClassesPHPDocs(stdClass $class) { $this->assertNull($class->parseError, $class->parseError ?: ""); + $this->checkLinks($class, "class $class->name"); } public function stubMethodProvider() @@ -265,10 +270,11 @@ class TestStubs extends TestCase */ public function testMethodsPHPDocs(string $methodName, stdClass $method) { - if($methodName === "__construct"){ + if ($methodName === "__construct") { $this->assertNull($method->returnTag, "@return tag for __construct should be omitted"); } $this->assertNull($method->parseError, $method->parseError ?: ""); + $this->checkLinks($method, "method $methodName"); } private function getParameterRepresentation(stdClass $function): string @@ -289,4 +295,20 @@ class TestStubs extends TestCase $result = rtrim($result, ', '); return $result; } + + private function checkLinks($element, $elementName): void + { + foreach ($element->links as $link) { + if ($link instanceof Link) { + $this->assertStringStartsWith('https', $link->getLink(), "In $elementName @link doesn't start with https"); + } + } + foreach ($element->see as $see) { + if ($see instanceof See && $see->getReference() instanceof Url) { + if (strpos($see, 'http') === 0) { + $this->assertStringStartsWith('https', $see, "In $elementName @see doesn't start with https"); + } + } + } + } } \ No newline at end of file diff --git a/uopz/uopz.php b/uopz/uopz.php index 40d39017..d81eae98 100644 --- a/uopz/uopz.php +++ b/uopz/uopz.php @@ -4,43 +4,43 @@ /** * Mark function as public, the default - * @link http://php.net/manual/en/uopz.constants.php#constant.zend-acc-public + * @link https://secure.php.net/manual/en/uopz.constants.php#constant.zend-acc-public */ define('ZEND_ACC_PUBLIC', 256); /** * Mark function as protected - * @link http://php.net/manual/en/uopz.constants.php#constant.zend-acc-protected + * @link https://secure.php.net/manual/en/uopz.constants.php#constant.zend-acc-protected */ define('ZEND_ACC_PROTECTED', 512); /** * Mark function as private - * @link http://php.net/manual/en/uopz.constants.php#constant.zend-acc-private + * @link https://secure.php.net/manual/en/uopz.constants.php#constant.zend-acc-private */ define('ZEND_ACC_PRIVATE', 1024); /** * Mark function as static - * @link http://php.net/manual/en/uopz.constants.php#constant.zend-acc-static + * @link https://secure.php.net/manual/en/uopz.constants.php#constant.zend-acc-static */ define('ZEND_ACC_STATIC', 1); /** * Mark function as final - * @link http://php.net/manual/en/uopz.constants.php#constant.zend-acc-final + * @link https://secure.php.net/manual/en/uopz.constants.php#constant.zend-acc-final */ define('ZEND_ACC_FINAL', 4); /** * Mark function as abstract - * @link http://php.net/manual/en/uopz.constants.php#constant.zend-acc-abstract + * @link https://secure.php.net/manual/en/uopz.constants.php#constant.zend-acc-abstract */ define('ZEND_ACC_ABSTRACT', 2); /** * Used for getting flags only - * @link http://php.net/manual/en/uopz.constants.php#constant.zend-acc-fetch + * @link https://secure.php.net/manual/en/uopz.constants.php#constant.zend-acc-fetch */ define('ZEND_ACC_FETCH', PHP_INT_MAX); @@ -51,7 +51,7 @@ define('ZEND_ACC_PPP_MASK', ZEND_ACC_PUBLIC | ZEND_ACC_PROTECTED | ZEND_ACC_PRIV /** * Adds non-existent method - * @link http://php.net/manual/en/function.uopz-add-function.php + * @link https://secure.php.net/manual/en/function.uopz-add-function.php * @param string $class The name of the class * @param string $function The name of the method * @param Closure $handler The Closure that defines the new method @@ -64,7 +64,7 @@ function uopz_add_function (string $class, string $function, Closure $handler, i /** * Allows control over disabled exit opcode - * @link http://php.net/manual/en/function.uopz-allow-exit.php + * @link https://secure.php.net/manual/en/function.uopz-allow-exit.php * @param bool $allow Whether to allow the execution of exit opcodes or not. * @return void * @since 5.4 @@ -73,7 +73,7 @@ function uopz_allow_exit (bool $allow): void {} /** * Deletes previously added method - * @link http://php.net/manual/en/function.uopz-del-function.php + * @link https://secure.php.net/manual/en/function.uopz-del-function.php * @param string $class The name of the class * @param string $function The name of the method * @param bool $all Whether all classes that descend from class will also be affected @@ -84,7 +84,7 @@ function uopz_del_function (string $class, string $function, bool $all = true): /** * Extend a class at runtime - * @link http://php.net/manual/en/function.uopz-extend.php + * @link https://secure.php.net/manual/en/function.uopz-extend.php * @param string $class The name of the class to extend * @param string $parent The name of the class to inherit * @return bool TRUE on success or FALSE on failure @@ -94,7 +94,7 @@ function uopz_extend (string $class, string $parent): bool {} /** * Get or set flags on function or class - * @link http://php.net/manual/en/function.uopz-flags.php + * @link https://secure.php.net/manual/en/function.uopz-flags.php * @param string $class The name of a class * @param string $function The name of the function * @param int $flags A valid set of ZEND_ACC_ flags, ZEND_ACC_FETCH to read flags @@ -105,7 +105,7 @@ function uopz_flags (string $class, string $function, int $flags): int {} /** * Retrieve the last set exit status - * @link http://php.net/manual/en/function.uopz-get-exit-status.php + * @link https://secure.php.net/manual/en/function.uopz-get-exit-status.php * @return int|null The last exit status, or NULL if exit() has not been called * @since 5.4 */ @@ -113,7 +113,7 @@ function uopz_get_exit_status (): ?int {} /** * Gets previously set hook on method - * @link http://php.net/manual/en/function.uopz-get-hook.php + * @link https://secure.php.net/manual/en/function.uopz-get-hook.php * @param string $class The name of the class * @param string $function The name of the method * @return Closure|null The previously set hook, or NULL if no hook has been set @@ -122,7 +122,7 @@ function uopz_get_hook (string $class, string $function): ?Closure {} /** * Get the current mock for a class - * @link http://php.net/manual/en/function.uopz-get-mock.php + * @link https://secure.php.net/manual/en/function.uopz-get-mock.php * @param string $class The name of the mocked class * @return string|object|null Either a string containing the name of the mock, or an object, or NULL if no mock has been set * @since 5.4 @@ -131,7 +131,7 @@ function uopz_get_mock (string $class) {} /** * Gets the value of a static class property, if class is given, or the value of an instance property, if instance is given - * @link http://php.net/manual/en/function.uopz-get-property.php + * @link https://secure.php.net/manual/en/function.uopz-get-property.php * @param string|object $class The name of the class or the object instance * @param string $property The name of the property * @return mixed The value of the class or instance property, or NULL if the property is not defined @@ -140,7 +140,7 @@ function uopz_get_property ($class, string $property) {} /** * Gets a previous set return value for a function - * @link http://php.net/manual/en/function.uopz-get-return.php + * @link https://secure.php.net/manual/en/function.uopz-get-return.php * @param string $class The name of the class containing the function * @param string $function The name of the function * @return mixed @@ -150,7 +150,7 @@ function uopz_get_return (string $class, string $function) {} /** * Gets the static variables from method scope - * @link http://php.net/manual/en/function.uopz-get-static.php + * @link https://secure.php.net/manual/en/function.uopz-get-static.php * @param string $class The name of the class * @param string $function The name of the method * @return array|null An associative array of variable names mapped to their current values on success, or NULL if the method does not exist @@ -159,7 +159,7 @@ function uopz_get_static (string $class, string $function): ?array {} /** * Implements an interface at runtime - * @link http://php.net/manual/en/function.uopz-implement.php + * @link https://secure.php.net/manual/en/function.uopz-implement.php * @param string $class The name of the class * @param string $interface The name of the interface * @return bool @@ -169,7 +169,7 @@ function uopz_implement (string $class, string $interface): bool {} /** * Redefine a constant - * @link http://php.net/manual/en/function.uopz-redefine.php + * @link https://secure.php.net/manual/en/function.uopz-redefine.php * @param string $class The name of the class containing the constant * @param string $constant The name of the constant * @param mixed $value The new value for the constant, must be a valid type for a constant variable @@ -180,7 +180,7 @@ function uopz_redefine (string $class, string $constant, $value): bool {} /** * Sets hook to execute when entering a method - * @link http://php.net/manual/en/function.uopz-set-hook.php + * @link https://secure.php.net/manual/en/function.uopz-set-hook.php * @param string $class The name of the class * @param string $function The name of the method * @param Closure $hook A closure to execute when entering the method @@ -190,7 +190,7 @@ function uopz_set_hook (string $class, string $function, Closure $hook): bool {} /** * Use mock instead of class for new objects - * @link http://php.net/manual/en/function.uopz-set-mock.php + * @link https://secure.php.net/manual/en/function.uopz-set-mock.php * @param string $class The name of the class to be mocked * @param string|object $mock The mock to use in the form of a string containing the name of the class to use or an object * @return void @@ -200,7 +200,7 @@ function uopz_set_mock (string $class, $mock): void {} /** * Sets the value of an existing static class property, if class is given, or the value of an existing instance property, if instance is given - * @link http://php.net/manual/en/function.uopz-set-property.php + * @link https://secure.php.net/manual/en/function.uopz-set-property.php * @param string|object $class The name of the class or the object instance * @param string $property The name of the property * @param mixed $value The value to assign to the property @@ -210,7 +210,7 @@ function uopz_set_property ($class, string $property, mixed $value): void {} /** * Provide a return value for an existing function - * @link http://php.net/manual/en/function.uopz-set-return.php + * @link https://secure.php.net/manual/en/function.uopz-set-return.php * @param string $class The name of the class containing the function * @param string $function The name of an existing function * @param mixed $value The value the function should return. If a Closure is provided and the execute flag is set, the Closure will be executed in place of the original function @@ -222,7 +222,7 @@ function uopz_set_return (string $class, string $function, $value, $execute = fa /** * Sets the static variables in method scope - * @link http://php.net/manual/en/function.uopz-set-static.php + * @link https://secure.php.net/manual/en/function.uopz-set-static.php * @param string $class The name of the class * @param string $function The name of the method * @param array $static The associative array of variable names mapped to their values @@ -232,7 +232,7 @@ function uopz_set_static (string $class, string $function , array $static): void /** * Undefine a constant - * @link http://php.net/manual/en/function.uopz-undefine.php + * @link https://secure.php.net/manual/en/function.uopz-undefine.php * @param string $class The name of the class containing the constant * @param string $constant The name of the constant * @return bool @@ -242,7 +242,7 @@ function uopz_undefine (string $class, string $constant): bool {} /** * Removes the previously set hook on a method - * @link http://php.net/manual/en/function.uopz-unset-hook.php + * @link https://secure.php.net/manual/en/function.uopz-unset-hook.php * @param string $class The name of the class * @param string $function The name of the method * @return bool TRUE on success or FALSE on failure @@ -251,7 +251,7 @@ function uopz_unset_hook (string $class, string $function): bool {} /** * Unset previously set mock - * @link http://php.net/manual/en/function.uopz-unset-mock.php + * @link https://secure.php.net/manual/en/function.uopz-unset-mock.php * @param string $class The name of the mocked class * @return void * @since 7.0 @@ -260,7 +260,7 @@ function uopz_unset_mock (string $class): void {} /** * Unsets a previously set return value for a function - * @link http://php.net/manual/en/function.uopz-unset-return.php + * @link https://secure.php.net/manual/en/function.uopz-unset-return.php * @param string $class The name of the class containing the function * @param string $function The name of an existing function * @return bool diff --git a/wincache/wincache.php b/wincache/wincache.php index db3452f2..2aa1d6d7 100644 --- a/wincache/wincache.php +++ b/wincache/wincache.php @@ -1,7 +1,7 @@ * Retrieves information about files cached in the file cache - * @link http://www.php.net/manual/en/function.wincache-fcache-fileinfo.php + * @link https://secure.php.net/manual/en/function.wincache-fcache-fileinfo.php * @param bool $summaryonly [optional] *

      Controls whether the returned array will contain information about individual * cache entries along with the file cache summary.

      @@ -44,7 +44,7 @@ function wincache_fcache_fileinfo($summaryonly = false) {} /** * (PHP 5.2+; PECL wincache >= 1.0.0)
      * Retrieves information about memory usage by file cache. - * @link http://www.php.net/manual/en/function.wincache-fcache-meminfo.php + * @link https://secure.php.net/manual/en/function.wincache-fcache-meminfo.php * @return array Array of meta data about file cache memory usage or FALSE on failure *

      The array returned by this function contains the following elements: *

        @@ -64,7 +64,7 @@ function wincache_fcache_meminfo() {} * obtained. Once the lock is obtained, the other scripts that try to request the * lock by using the same key will be blocked, until the current script releases * the lock by using wincache_unlock().

        - * @link http://www.php.net/manual/en/function.wincache-lock.php + * @link https://secure.php.net/manual/en/function.wincache-lock.php * @param string $key Name of the key in the cache to get the lock on. * @param bool $isglobal [optional] *

        Controls whether the scope of the lock is system-wide or local. Local locks @@ -77,7 +77,7 @@ function wincache_lock($key, $isglobal = false) {} /** * (PHP 5.2+; PECL wincache >= 1.0.0)
        * Retrieves information about opcode cache content and its usage - * @link http://www.php.net/manual/en/function.wincache-ocache-fileinfo.php + * @link https://secure.php.net/manual/en/function.wincache-ocache-fileinfo.php * @param bool $summaryonly [optional] *

        Controls whether the returned array will contain information about individual * cache entries along with the opcode cache summary.

        @@ -107,7 +107,7 @@ function wincache_ocache_fileinfo($summaryonly = false) {} /** * (PHP 5.2+; PECL wincache >= 1.0.0)
        * Retrieves information about memory usage by opcode cache. - * @link http://www.php.net/manual/en/function.wincache-ocache-meminfo.php + * @link https://secure.php.net/manual/en/function.wincache-ocache-meminfo.php * @return array Array of meta data about opcode cache memory usage or FALSE on failure *

        The array returned by this function contains the following elements: *

          @@ -124,7 +124,7 @@ function wincache_ocache_meminfo() {} * (PHP 5.2+; PECL wincache >= 1.0.0)
          * Refreshes the cache entries for the files, whose names were passed in the input argument. *

          If no argument is specified then refreshes all the entries in the cache.

          - * @link http://www.php.net/manual/en/function.wincache-refresh-if-changed.php + * @link https://secure.php.net/manual/en/function.wincache-refresh-if-changed.php * @param array $files [optional] *

          An array of file names for files that need to be refreshed. An absolute * or relative file paths can be used.

          @@ -136,7 +136,7 @@ function wincache_refresh_if_changed(array $files) {} * (PHP 5.2+; PECL wincache >= 1.0.0)
          * Retrieves information about cached mappings between relative file paths and * corresponding absolute file paths. - * @link http://www.php.net/manual/en/function.wincache-rplist-fileinfo.php + * @link https://secure.php.net/manual/en/function.wincache-rplist-fileinfo.php * @return array Array of meta data about the resolve file path cache or FALSE on failure *

          The array returned by this function contains the following elements: *

            @@ -153,7 +153,7 @@ function wincache_rplist_fileinfo() {} /** * (PHP 5.2+; PECL wincache >= 1.0.0)
            * Retrieves information about memory usage by resolve file path cache. - * @link http://www.php.net/manual/en/function.wincache-rplist-meminfo.php + * @link https://secure.php.net/manual/en/function.wincache-rplist-meminfo.php * @return array Array of meta data that describes memory usage by resolve file path cache. or FALSE on failure *

            The array returned by this function contains the following elements: *

              @@ -169,7 +169,7 @@ function wincache_rplist_meminfo() {} /** * (PHP 5.2+; PECL wincache >= 1.1.0)
              * Retrieves information about session cache content and its usage. - * @link http://www.php.net/manual/en/function.wincache-scache-info.php + * @link https://secure.php.net/manual/en/function.wincache-scache-info.php * @param bool $summaryonly [optional] *

              Controls whether the returned array will contain information about individual * cache entries along with the session cache summary.

              @@ -199,7 +199,7 @@ function wincache_scache_info($summaryonly = false) {} /** * (PHP 5.2+; PECL wincache >= 1.1.0)
              * Retrieves information about memory usage by session cache. - * @link http://www.php.net/manual/en/function.wincache-scache-meminfo.php + * @link https://secure.php.net/manual/en/function.wincache-scache-meminfo.php * @return array Array of meta data about session cache memory usage or FALSE on failure *

              The array returned by this function contains the following elements: *

                @@ -217,7 +217,7 @@ function wincache_scache_meminfo() {} * Adds a variable in user cache, only if this variable doesn't already exist in the cache. *

                The added variable remains in the user cache unless its time to live expires * or it is deleted by using wincache_ucache_delete() or wincache_ucache_clear() functions.

                - * @link http://www.php.net/manual/en/function.wincache-ucache-add.php + * @link https://secure.php.net/manual/en/function.wincache-ucache-add.php * @param mixed $key

                Store the variable using this key name. If a variable with * same key is already present the function will fail and return FALSE. key is case * sensitive. To override the value even if key is present use wincache_ucache_set() @@ -249,7 +249,7 @@ function wincache_ucache_add($key, $value, $ttl = 0) {} * (PHP 5.2+; PECL wincache >= 1.1.0)
                * Compares the variable associated with the key with old_value * and if it matches then assigns the new_value to it. - * @link http://www.php.net/manual/en/function.wincache-ucache-cas.php + * @link https://secure.php.net/manual/en/function.wincache-ucache-cas.php * @param string $key The key that is used to store the variable in the cache. key is case sensitive. * @param int $old_value Old value of the variable pointed by key in the user cache. * The value should be of type long, otherwise the function returns FALSE. @@ -262,7 +262,7 @@ function wincache_ucache_cas($key, $old_value, $new_value) {} /** * (PHP 5.2+; PECL wincache >= 1.1.0)
                * Clears/deletes all the values stored in the user cache. - * @link http://www.php.net/manual/en/function.wincache-ucache-clear.php + * @link https://secure.php.net/manual/en/function.wincache-ucache-clear.php * @return boolean Returns TRUE on success or FALSE on failure. */ function wincache_ucache_clear() {} @@ -270,7 +270,7 @@ function wincache_ucache_clear() {} /** * (PHP 5.2+; PECL wincache >= 1.1.0)
                * Decrements the value associated with the key by 1 or as specified by dec_by. - * @link http://www.php.net/manual/en/function.wincache-ucache-dec.php + * @link https://secure.php.net/manual/en/function.wincache-ucache-dec.php * @param string $key

                The key that was used to store the variable in the cache. * key is case sensitive.

                * @param int $dec_by

                The value by which the variable associated with the key will @@ -286,7 +286,7 @@ function wincache_ucache_dec($key, $dec_by = 1, &$success) {} /** * (PHP 5.2+; PECL wincache >= 1.1.0)
                * Deletes the elements in the user cache pointed by key. - * @link http://www.php.net/manual/en/function.wincache-ucache-delete.php + * @link https://secure.php.net/manual/en/function.wincache-ucache-delete.php * @param mixed $key

                The key that was used to store the variable in the cache. * key is case sensitive. key can be an array of keys.

                * @return boolean Returns TRUE on success or FALSE on failure. @@ -299,7 +299,7 @@ function wincache_ucache_delete($key) {} /** * (PHP 5.2+; PECL wincache >= 1.1.0)
                * Checks if a variable with the key exists in the user cache or not. - * @link http://www.php.net/manual/en/function.wincache-ucache-exists.php + * @link https://secure.php.net/manual/en/function.wincache-ucache-exists.php * @param string $key The key that was used to store the variable in the cache. key is case sensitive. * @return boolean Returns TRUE if variable with the key exitsts, otherwise returns FALSE. */ @@ -308,7 +308,7 @@ function wincache_ucache_exists($key) {} /** * (PHP 5.2+; PECL wincache >= 1.1.0)
                * Gets a variable stored in the user cache. - * @link http://www.php.net/manual/en/function.wincache-ucache-get.php + * @link https://secure.php.net/manual/en/function.wincache-ucache-get.php * @param mixed $key

                The key that was used to store the variable in the cache. * key is case sensitive. key can be an array of keys. In this case the return * value will be an array of values of each element in the key array.

                @@ -326,7 +326,7 @@ function wincache_ucache_get($key, &$success) {} /** * (PHP 5.2+; PECL wincache >= 1.1.0)
                * Increments the value associated with the key by 1 or as specified by inc_by. - * @link http://www.php.net/manual/en/function.wincache-ucache-inc.php + * @link https://secure.php.net/manual/en/function.wincache-ucache-inc.php * @param string $key

                The key that was used to store the variable in the cache. * key is case sensitive.

                * @param int $inc_by

                The value by which the variable associated with the key will @@ -342,7 +342,7 @@ function wincache_ucache_inc($key, $inc_by = 1, &$success) {} /** * (PHP 5.2+; PECL wincache >= 1.1.0)
                * Retrieves information about data stored in the user cache. - * @link http://www.php.net/manual/en/function.wincache-ucache-info.php + * @link https://secure.php.net/manual/en/function.wincache-ucache-info.php * @param bool $summaryonly [optional] *

                Controls whether the returned array will contain information about * individual cache entries along with the user cache summary.

                @@ -378,7 +378,7 @@ function wincache_ucache_info($summaryonly = false, $key) {} /** * (PHP 5.2+; PECL wincache >= 1.1.0)
                * Retrieves information about memory usage by user cache. - * @link http://www.php.net/manual/en/function.wincache-ucache-meminfo.php + * @link https://secure.php.net/manual/en/function.wincache-ucache-meminfo.php * @return array Array of meta data about user cache memory usage or FALSE on failure *

                The array returned by this function contains the following elements: *

                  @@ -397,7 +397,7 @@ function wincache_ucache_meminfo() {} *

                  The added or updated variable remains in the user cache unless its time to * live expires or it is deleted by using wincache_ucache_delete() or * wincache_ucache_clear() functions.

                  - * @link http://www.php.net/manual/en/function.wincache-ucache-set.php + * @link https://secure.php.net/manual/en/function.wincache-ucache-set.php * @param mixed $key

                  * Store the variable using this key name. If a variable with same key is already * present the function will overwrite the previous value with the new one. key @@ -432,7 +432,7 @@ function wincache_ucache_set($key, $value, $ttl = 0) {} * (PHP 5.2+; PECL wincache >= 1.1.0)
                  * Releases an exclusive lock that was obtained on a given key by using wincache_lock(). *

                  If any other process was blocked waiting for the lock on this key, that process will be able to obtain the lock.

                  - * @link http://www.php.net/manual/en/function.wincache-unlock.php + * @link https://secure.php.net/manual/en/function.wincache-unlock.php * @param string $key Name of the key in the cache to release the lock on. * @return boolean Returns TRUE on success or FALSE on failure. */ diff --git a/xhprof/xhprof.php b/xhprof/xhprof.php index d79245dc..92a558c5 100644 --- a/xhprof/xhprof.php +++ b/xhprof/xhprof.php @@ -9,7 +9,7 @@ * @link https://php.net/manual/en/function.xhprof-enable.php * * @param int $flags

                  Optional flags to add additional information to the profiling. See the a - * href="http://php.net/manual/en/xhprof.constants.php">XHprof constants for further + * href="https://secure.php.net/manual/en/xhprof.constants.php">XHprof constants for further * information about these flags, e.g., XHPROF_FLAGS_MEMORY to enable memory * profiling.

                  * @param array $options [optional]

                  An array of optional options, namely, the 'ignored_functions' option to pass in functions diff --git a/yaf/yaf.php b/yaf/yaf.php index fb1749f4..13896c60 100644 --- a/yaf/yaf.php +++ b/yaf/yaf.php @@ -27,7 +27,7 @@ define('YAF_ERR_TYPE_ERROR', 521, true); * Yaf_Application implements the singleton pattern, and Yaf_Application can not be serialized or un-serialized which will cause problem when you try to use PHPUnit to write some test case for Yaf.
                  * You may use @backupGlobals annotation of PHPUnit to control the backup and restore operations for global variables. thus can solve this problem. *

                  - * @link http://www.php.net/manual/en/class.yaf-application.php + * @link https://secure.php.net/manual/en/class.yaf-application.php */ final class Yaf_Application { @@ -67,7 +67,7 @@ final class Yaf_Application { protected $_err_msg = ""; /** - * @link http://www.php.net/manual/en/yaf-application.construct.php + * @link https://secure.php.net/manual/en/yaf-application.construct.php * * @param string|array $config A ini config file path, or a config array *

                  @@ -119,7 +119,7 @@ final class Yaf_Application { * Run a Yaf_Application, let the Yaf_Application accept a request, and route the request, dispatch to controller/action, and render response. * return response to client finally. * - * @link http://www.php.net/manual/en/yaf-application.run.php + * @link https://secure.php.net/manual/en/yaf-application.run.php * @throws Yaf_Exception_StartupError */ public function run(){ } @@ -128,7 +128,7 @@ final class Yaf_Application { * This method is typically used to run Yaf_Application in a crontab work. * Make the crontab work can also use the autoloader and Bootstrap mechanism. * - * @link http://www.php.net/manual/en/yaf-application.execute.php + * @link https://secure.php.net/manual/en/yaf-application.execute.php * * @param callable $entry a valid callback * @param string $_ parameters will pass to the callback @@ -138,7 +138,7 @@ final class Yaf_Application { /** * Retrieve the Yaf_Application instance, alternatively, we also could use Yaf_Dispatcher::getApplication(). * - * @link http://www.php.net/manual/en/yaf-application.app.php + * @link https://secure.php.net/manual/en/yaf-application.app.php * * @return Yaf_Application|NULL an Yaf_Application instance, if no Yaf_Application initialized before, NULL will be returned. */ @@ -147,7 +147,7 @@ final class Yaf_Application { /** * Retrieve environ which was defined in yaf.environ which has a default value "product". * - * @link http://www.php.net/manual/en/yaf-application.environ.php + * @link https://secure.php.net/manual/en/yaf-application.environ.php * * @return string */ @@ -156,7 +156,7 @@ final class Yaf_Application { /** * Run a Bootstrap, all the methods defined in the Bootstrap and named with prefix "_init" will be called according to their declaration order, if the parameter bootstrap is not supplied, Yaf will look for a Bootstrap under application.directory. * - * @link http://www.php.net/manual/en/yaf-application.bootstrap.php + * @link https://secure.php.net/manual/en/yaf-application.bootstrap.php * * @param Yaf_Bootstrap_Abstract $bootstrap A Yaf_Bootstrap_Abstract instance * @return Yaf_Application @@ -164,7 +164,7 @@ final class Yaf_Application { public function bootstrap(Yaf_Bootstrap_Abstract $bootstrap = null){ } /** - * @link http://www.php.net/manual/en/yaf-application.getconfig.php + * @link https://secure.php.net/manual/en/yaf-application.getconfig.php * * @return Yaf_Config_Abstract */ @@ -173,14 +173,14 @@ final class Yaf_Application { /** * Get the modules list defined in config, if no one defined, there will always be a module named "Index". * - * @link http://www.php.net/manual/en/yaf-application.getmodules.php + * @link https://secure.php.net/manual/en/yaf-application.getmodules.php * * @return array */ public function getModules(){ } /** - * @link http://www.php.net/manual/en/yaf-application.getdispatcher.php + * @link https://secure.php.net/manual/en/yaf-application.getdispatcher.php * * @return Yaf_Dispatcher */ @@ -190,7 +190,7 @@ final class Yaf_Application { * Change the application directory * * @since 2.1.4 - * @link http://www.php.net/manual/en/yaf-application.setappdirectory.php + * @link https://secure.php.net/manual/en/yaf-application.setappdirectory.php * * @param string $directory * @return Yaf_Application @@ -199,7 +199,7 @@ final class Yaf_Application { /** * @since 2.1.4 - * @link http://www.php.net/manual/en/yaf-application.getappdirectory.php + * @link https://secure.php.net/manual/en/yaf-application.getappdirectory.php * * @return string */ @@ -207,7 +207,7 @@ final class Yaf_Application { /** * @since 2.1.2 - * @link http://www.php.net/manual/en/yaf-application.getlasterrorno.php + * @link https://secure.php.net/manual/en/yaf-application.getlasterrorno.php * * @return int */ @@ -215,7 +215,7 @@ final class Yaf_Application { /** * @since 2.1.2 - * @link http://www.php.net/manual/en/yaf-application.getlasterrormsg.php + * @link https://secure.php.net/manual/en/yaf-application.getlasterrormsg.php * * @return string */ @@ -224,31 +224,31 @@ final class Yaf_Application { /** * * @since 2.1.2 - * @link http://www.php.net/manual/en/yaf-application.clearlasterror.php + * @link https://secure.php.net/manual/en/yaf-application.clearlasterror.php */ public function clearLastError(){ } /** * - * @link http://www.php.net/manual/en/yaf-application.destruct.php + * @link https://secure.php.net/manual/en/yaf-application.destruct.php */ public function __destruct(){ } /** * - * @link http://www.php.net/manual/en/yaf-application.clone.php + * @link https://secure.php.net/manual/en/yaf-application.clone.php */ private function __clone(){ } /** * - * @link http://www.php.net/manual/en/yaf-application.sleep.php + * @link https://secure.php.net/manual/en/yaf-application.sleep.php */ private function __sleep(){ } /** * - * @link http://www.php.net/manual/en/yaf-application.wakeup.php + * @link https://secure.php.net/manual/en/yaf-application.wakeup.php */ private function __wakeup(){ } } @@ -257,7 +257,7 @@ final class Yaf_Application { *

                  Yaf_Dispatcher purpose is to initialize the request environment, route the incoming request, and then dispatch any discovered actions; it aggregates any responses and returns them when the process is complete.


                  *

                  Yaf_Dispatcher also implements the Singleton pattern, meaning only a single instance of it may be available at any given time. This allows it to also act as a registry on which the other objects in the dispatch process may draw.

                  * - * @link http://www.php.net/manual/en/class.yaf-dispatcher.php + * @link https://secure.php.net/manual/en/class.yaf-dispatcher.php */ final class Yaf_Dispatcher { @@ -307,29 +307,29 @@ final class Yaf_Dispatcher { protected $_default_action; /** - * @link http://www.php.net/manual/en/yaf-dispatcher.construct.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.construct.php */ private function __construct(){ } /** - * @link http://www.php.net/manual/en/yaf-dispatcher.clone.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.clone.php */ private function __clone(){ } /** - * @link http://www.php.net/manual/en/yaf-dispatcher.sleep.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.sleep.php */ private function __sleep(){ } /** - * @link http://www.php.net/manual/en/yaf-dispatcher.wakeup.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.wakeup.php */ private function __wakeup(){ } /** * enable view rendering * - * @link http://www.php.net/manual/en/yaf-dispatcher.enableview.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.enableview.php * * @return Yaf_Dispatcher */ @@ -340,7 +340,7 @@ final class Yaf_Dispatcher { * Note: *

                  you can simply return FALSE in a action to prevent the auto-rendering of that action

                  * - * @link http://www.php.net/manual/en/yaf-dispatcher.disableview.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.disableview.php * * @return bool */ @@ -349,7 +349,7 @@ final class Yaf_Dispatcher { /** * Initialize view and return it * - * @link http://www.php.net/manual/en/yaf-dispatcher.initview.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.initview.php * * @param string $templates_dir * @param array $options @@ -360,7 +360,7 @@ final class Yaf_Dispatcher { /** * This method provides a solution for that if you want use a custom view engine instead of Yaf_View_Simple * - * @link http://www.php.net/manual/en/yaf-dispatcher.setview.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.setview.php * * @param Yaf_View_Interface $view A Yaf_View_Interface instance * @return Yaf_Dispatcher @@ -369,7 +369,7 @@ final class Yaf_Dispatcher { /** * - * @link http://www.php.net/manual/en/yaf-dispatcher.setrequest.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.setrequest.php * * @param Yaf_Request_Abstract $request * @return Yaf_Dispatcher @@ -379,20 +379,20 @@ final class Yaf_Dispatcher { /** * Retrieve the Yaf_Application instance. same as Yaf_Application::app(). * - * @link http://www.php.net/manual/en/yaf-dispatcher.getapplication.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.getapplication.php * @return Yaf_Application */ public function getApplication(){ } /** - * @link http://www.php.net/manual/en/yaf-dispatcher.getrouter.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.getrouter.php * * @return Yaf_Router */ public function getRouter(){ } /** - * @link http://www.php.net/manual/en/yaf-dispatcher.getrequest.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.getrequest.php * * @return Yaf_Request_Abstract */ @@ -402,7 +402,7 @@ final class Yaf_Dispatcher { *

                  Set error handler for Yaf. when application.dispatcher.throwException is off, Yaf will trigger catch-able error while unexpected errors occurred.


                  *

                  Thus, this error handler will be called while the error raise.

                  * - * @link http://www.php.net/manual/en/yaf-dispatcher.seterrorhandler.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.seterrorhandler.php * * @param callable $callback a callable callback * @param int $error_types YAF_ERR_* constants mask @@ -414,7 +414,7 @@ final class Yaf_Dispatcher { /** * Change default module name * - * @link http://www.php.net/manual/en/yaf-dispatcher.setdefaultmodule.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.setdefaultmodule.php * * @param string $module * @return Yaf_Dispatcher @@ -424,7 +424,7 @@ final class Yaf_Dispatcher { /** * Change default controller name * - * @link http://www.php.net/manual/en/yaf-dispatcher.setdefaultcontroller.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.setdefaultcontroller.php * * @param string $controller * @return Yaf_Dispatcher @@ -434,7 +434,7 @@ final class Yaf_Dispatcher { /** * Change default action name * - * @link http://www.php.net/manual/en/yaf-dispatcher.setdefaultaction.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.setdefaultaction.php * * @param string $action * @return Yaf_Dispatcher @@ -442,7 +442,7 @@ final class Yaf_Dispatcher { public function setDefaultAction($action){ } /** - * @link http://www.php.net/manual/en/yaf-dispatcher.returnresponse.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.returnresponse.php * * @param bool $flag * @return Yaf_Dispatcher @@ -454,7 +454,7 @@ final class Yaf_Dispatcher { * Note: *

                  you can simply return FALSE in a action to prevent the auto-rendering of that action

                  * - * @link http://www.php.net/manual/en/yaf-dispatcher.autorender.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.autorender.php * * @param bool $flag since 2.2.0, if this parameter is not given, then the current state will be set * @return Yaf_Dispatcher @@ -464,7 +464,7 @@ final class Yaf_Dispatcher { /** * Switch on/off the instant flushing * - * @link http://www.php.net/manual/en/yaf-dispatcher.flushinstantly.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.flushinstantly.php * * @param bool $flag since 2.2.0, if this parameter is not given, then the current state will be set * @return Yaf_Dispatcher @@ -472,7 +472,7 @@ final class Yaf_Dispatcher { public function flushInstantly($flag = null){ } /** - * @link http://www.php.net/manual/en/yaf-dispatcher.getinstance.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.getinstance.php * * @return Yaf_Dispatcher */ @@ -488,7 +488,7 @@ final class Yaf_Dispatcher { *
                *

                Routing takes place exactly once, using the values in the request object when dispatch() is called. Dispatching takes place in a loop; a request may either indicate multiple actions to dispatch, or the controller or a plugin may reset the request object to force additional actions to dispatch(see Yaf_Plugin_Abstract. When all is done, the Yaf_Dispatcher returns a response.

                * - * @link http://www.php.net/manual/en/yaf-dispatcher.dispatch.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.dispatch.php * * @param Yaf_Request_Abstract $request * @@ -507,7 +507,7 @@ final class Yaf_Dispatcher { *

                Switch on/off exception throwing while unexpected error occurring. When this is on, Yaf will throwing exceptions instead of triggering catchable errors.


                *

                You can also use application.dispatcher.throwException to achieve the same purpose.

                * - * @link http://www.php.net/manual/en/yaf-dispatcher.throwexception.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.throwexception.php * * @param bool $flag * @return Yaf_Dispatcher @@ -518,7 +518,7 @@ final class Yaf_Dispatcher { *

                While the application.dispatcher.throwException is On(you can also calling to Yaf_Dispatcher::throwException(TRUE) to enable it), Yaf will throw Exception whe error occurs instead of trigger error.


                *

                then if you enable Yaf_Dispatcher::catchException()(also can enabled by set application.dispatcher.catchException), all uncaught Exceptions will be caught by ErrorController::error if you have defined one.

                * - * @link http://www.php.net/manual/en/yaf-dispatcher.catchexception.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.catchexception.php * * @param bool $flag * @return Yaf_Dispatcher @@ -528,7 +528,7 @@ final class Yaf_Dispatcher { /** * Register a plugin(see Yaf_Plugin_Abstract). Generally, we register plugins in Bootstrap(see Yaf_Bootstrap_Abstract). * - * @link http://www.php.net/manual/en/yaf-dispatcher.registerplugin.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.registerplugin.php * * @param Yaf_Plugin_Abstract $plugin * @return Yaf_Dispatcher @@ -547,7 +547,7 @@ final class Yaf_Dispatcher { *

                Please keep yaf.use_spl_autoload Off unless there is some library have their own autoload mechanism and impossible to rewrite it.

                *
                *

                If you want Yaf_Loader search some classes(libraries) in the local class directory(which is defined in application.ini, and by default, it is application.directory . "/library"), you should register the class prefix using the Yaf_Loader::registerLocalNameSpace()

                - * @link http://www.php.net/manual/en/class.yaf-loader.php + * @link https://secure.php.net/manual/en/class.yaf-loader.php * */ class Yaf_Loader { @@ -571,27 +571,27 @@ class Yaf_Loader { protected static $_instance; /** - * @link http://www.php.net/manual/en/yaf-loader.construct.php + * @link https://secure.php.net/manual/en/yaf-loader.construct.php */ private function __construct(){ } /** - * @link http://www.php.net/manual/en/yaf-loader.clone.php + * @link https://secure.php.net/manual/en/yaf-loader.clone.php */ private function __clone(){ } /** - * @link http://www.php.net/manual/en/yaf-loader.sleep.php + * @link https://secure.php.net/manual/en/yaf-loader.sleep.php */ private function __sleep(){ } /** - * @link http://www.php.net/manual/en/yaf-loader.wakeup.php + * @link https://secure.php.net/manual/en/yaf-loader.wakeup.php */ private function __wakeup(){ } /** - * @link http://www.php.net/manual/en/yaf-loader.autoload.php + * @link https://secure.php.net/manual/en/yaf-loader.autoload.php * * @param string $class_name * @@ -600,7 +600,7 @@ class Yaf_Loader { public function autoload($class_name){ } /** - * @link http://www.php.net/manual/en/yaf-loader.getinstance.php + * @link https://secure.php.net/manual/en/yaf-loader.getinstance.php * * @param string $local_library_path * @param string $global_library_path @@ -616,7 +616,7 @@ class Yaf_Loader { *
                * Note: *

                If yaf.library is not configured, then the global library directory is assumed to be the local library directory. in that case, all autoloading will look for local library directory. But if you want your Yaf application be strong, then always register your own classes as local classes.

                - * @link http://www.php.net/manual/en/yaf-loader.registerlocalnamespace.php + * @link https://secure.php.net/manual/en/yaf-loader.registerlocalnamespace.php * * @param string|string[] $name_prefix a string or a array of class name prefix. all class prefix with these prefix will be loaded in local library path. * @@ -625,19 +625,19 @@ class Yaf_Loader { public function registerLocalNamespace($name_prefix){ } /** - * @link http://www.php.net/manual/en/yaf-loader.getlocalnamespace.php + * @link https://secure.php.net/manual/en/yaf-loader.getlocalnamespace.php * * @return string */ public function getLocalNamespace(){ } /** - * @link http://www.php.net/manual/en/yaf-loader.clearlocalnamespace.php + * @link https://secure.php.net/manual/en/yaf-loader.clearlocalnamespace.php */ public function clearLocalNamespace(){ } /** - * @link http://www.php.net/manual/en/yaf-loader.islocalname.php + * @link https://secure.php.net/manual/en/yaf-loader.islocalname.php * * @param string $class_name * @@ -646,7 +646,7 @@ class Yaf_Loader { public function isLocalName($class_name){ } /** - * @link http://www.php.net/manual/en/yaf-loader.import.php + * @link https://secure.php.net/manual/en/yaf-loader.import.php * * @param string $file * @@ -656,7 +656,7 @@ class Yaf_Loader { /** * @since 2.1.4 - * @link http://www.php.net/manual/en/yaf-loader.setlibrarypath.php + * @link https://secure.php.net/manual/en/yaf-loader.setlibrarypath.php * * @param string $directory * @param bool $global @@ -667,7 +667,7 @@ class Yaf_Loader { /** * @since 2.1.4 - * @link http://www.php.net/manual/en/yaf-loader.getlibrarypath.php + * @link https://secure.php.net/manual/en/yaf-loader.getlibrarypath.php * * @param bool $is_global * @@ -678,7 +678,7 @@ class Yaf_Loader { /** *

                All methods of Yaf_Registry declared as static, making it universally accessible. This provides the ability to get or set any custom data from anyway in your code as necessary.

                - * @link http://www.php.net/manual/en/class.yaf-registry.php + * @link https://secure.php.net/manual/en/class.yaf-registry.php */ final class Yaf_Registry { @@ -692,19 +692,19 @@ final class Yaf_Registry { protected $_entries; /** - * @link http://www.php.net/manual/en/yaf-registry.construct.php + * @link https://secure.php.net/manual/en/yaf-registry.construct.php */ private function __construct(){ } /** - * @link http://www.php.net/manual/en/yaf-registry.clone.php + * @link https://secure.php.net/manual/en/yaf-registry.clone.php */ private function __clone(){ } /** * Retrieve an item from registry * - * @link http://www.php.net/manual/en/yaf-registry.get.php + * @link https://secure.php.net/manual/en/yaf-registry.get.php * * @param string $name * @@ -715,7 +715,7 @@ final class Yaf_Registry { /** * Check whether an item exists * - * @link http://www.php.net/manual/en/yaf-registry.has.php + * @link https://secure.php.net/manual/en/yaf-registry.has.php * * @param string $name * @@ -724,7 +724,7 @@ final class Yaf_Registry { public static function has($name){ } /** - * @link http://www.php.net/manual/en/yaf-registry.set.php + * @link https://secure.php.net/manual/en/yaf-registry.set.php * * @param string $name * @param mixed $value @@ -734,7 +734,7 @@ final class Yaf_Registry { public static function set($name, $value){ } /** - * @link http://www.php.net/manual/en/yaf-registry.del.php + * @link https://secure.php.net/manual/en/yaf-registry.del.php * * @param string $name * @@ -744,7 +744,7 @@ final class Yaf_Registry { } /** - * @link http://www.php.net/manual/en/class.yaf-session.php + * @link https://secure.php.net/manual/en/class.yaf-session.php * @version 2.2.9 */ final class Yaf_Session implements Iterator, Traversable, ArrayAccess, Countable { @@ -763,34 +763,34 @@ final class Yaf_Session implements Iterator, Traversable, ArrayAccess, Countable protected $_started = true; /** - * @link http://www.php.net/manual/en/yaf-session.construct.php + * @link https://secure.php.net/manual/en/yaf-session.construct.php */ private function __construct(){ } /** - * @link http://www.php.net/manual/en/yaf-session.clone.php + * @link https://secure.php.net/manual/en/yaf-session.clone.php */ private function __clone(){ } /** - * @link http://www.php.net/manual/en/yaf-session.sleep.php + * @link https://secure.php.net/manual/en/yaf-session.sleep.php */ private function __sleep(){ } /** - * @link http://www.php.net/manual/en/yaf-session.wakeup.php + * @link https://secure.php.net/manual/en/yaf-session.wakeup.php */ private function __wakeup(){ } /** - * @link http://www.php.net/manual/en/yaf-session.getinstance.php + * @link https://secure.php.net/manual/en/yaf-session.getinstance.php * * @return Yaf_Session */ public static function getInstance(){ } /** - * @link http://www.php.net/manual/en/yaf-session.start.php + * @link https://secure.php.net/manual/en/yaf-session.start.php * * @return Yaf_Session */ @@ -798,7 +798,7 @@ final class Yaf_Session implements Iterator, Traversable, ArrayAccess, Countable /** - * @link http://www.php.net/manual/en/yaf-session.get.php + * @link https://secure.php.net/manual/en/yaf-session.get.php * * @param string $name * @@ -807,7 +807,7 @@ final class Yaf_Session implements Iterator, Traversable, ArrayAccess, Countable public function get($name){ } /** - * @link http://www.php.net/manual/en/yaf-session.has.php + * @link https://secure.php.net/manual/en/yaf-session.has.php * * @param string $name * @@ -816,7 +816,7 @@ final class Yaf_Session implements Iterator, Traversable, ArrayAccess, Countable public function has($name){ } /** - * @link http://www.php.net/manual/en/yaf-session.set.php + * @link https://secure.php.net/manual/en/yaf-session.set.php * * @param string $name * @param mixed $value @@ -826,7 +826,7 @@ final class Yaf_Session implements Iterator, Traversable, ArrayAccess, Countable public function set($name, $value){ } /** - * @link http://www.php.net/manual/en/yaf-session.del.php + * @link https://secure.php.net/manual/en/yaf-session.del.php * * @param string $name * @@ -919,7 +919,7 @@ final class Yaf_Session implements Iterator, Traversable, ArrayAccess, Countable *

                Module name must be defined in config, considering application.module="Index,Foo,Bar", in this case, only index, foo and bar can be considered as a module name. if doesn't config, there is only one module named "Index".

                *
                *

                ** See examples by opening the external documentation

                - * @link http://www.php.net/manual/en/class.yaf-router.php + * @link https://secure.php.net/manual/en/class.yaf-router.php */ class Yaf_Router { @@ -933,7 +933,7 @@ class Yaf_Router { protected $_current; /** - * @link http://www.php.net/manual/en/yaf-router.construct.php + * @link https://secure.php.net/manual/en/yaf-router.construct.php */ public function __construct(){ } @@ -942,7 +942,7 @@ class Yaf_Router { *
                *

                the newer route will be called before the older(route stack), and if the newer router return TRUE, the router process will be end. otherwise, the older one will be called.

                * - * @link http://www.php.net/manual/en/yaf-router.addroute.php + * @link https://secure.php.net/manual/en/yaf-router.addroute.php * * @param string $name * @param Yaf_Route_Interface $route @@ -954,7 +954,7 @@ class Yaf_Router { /** *

                Add routes defined by configs into Yaf_Router's route stack

                * - * @link http://www.php.net/manual/en/yaf-router.addconfig.php + * @link https://secure.php.net/manual/en/yaf-router.addconfig.php * * @param Yaf_Config_Abstract $config * @@ -963,7 +963,7 @@ class Yaf_Router { public function addConfig(Yaf_Config_Abstract $config){ } /** - * @link http://www.php.net/manual/en/yaf-router.route.php + * @link https://secure.php.net/manual/en/yaf-router.route.php * * @param Yaf_Request_Abstract $request * @@ -974,7 +974,7 @@ class Yaf_Router { /** *

                Retrieve a route by name, see also Yaf_Router::getCurrentRoute()

                * - * @link http://www.php.net/manual/en/yaf-router.getroute.php + * @link https://secure.php.net/manual/en/yaf-router.getroute.php * * @param string $name * @@ -983,7 +983,7 @@ class Yaf_Router { public function getRoute($name){ } /** - * @link http://www.php.net/manual/en/yaf-router.getroutes.php + * @link https://secure.php.net/manual/en/yaf-router.getroutes.php * * @return Yaf_Route_Interface[] */ @@ -995,7 +995,7 @@ class Yaf_Router { * Note: *

                You should call this method after the route process finished, since before that, this method will always return NULL.

                * - * @link http://www.php.net/manual/en/yaf-router.getcurrentroute.php + * @link https://secure.php.net/manual/en/yaf-router.getcurrentroute.php * * @return string the name of the effective route. */ @@ -1007,7 +1007,7 @@ class Yaf_Router { *

                User may define their own Bootstrap class by inheriting Yaf_Bootstrap_Abstract

                *

                Any method declared in Bootstrap class with leading "_init", will be called by Yaf_Application::bootstrap() one by one according to their defined order

                * - * @link http://www.php.net/manual/en/class.yaf-bootstrap-abstract.php + * @link https://secure.php.net/manual/en/class.yaf-bootstrap-abstract.php */ abstract class Yaf_Bootstrap_Abstract { @@ -1027,7 +1027,7 @@ abstract class Yaf_Bootstrap_Abstract { * Note: *

                These arguments are directly fetched without filtering, it should be carefully processed before use them.

                * - * @link http://www.php.net/manual/en/class.yaf-controller-abstract.php + * @link https://secure.php.net/manual/en/class.yaf-controller-abstract.php */ abstract class Yaf_Controller_Abstract { @@ -1062,7 +1062,7 @@ abstract class Yaf_Controller_Abstract { protected $_view; /** - * @link http://www.php.net/manual/en/yaf-controller-abstract.render.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.render.php * * @param string $tpl * @param array $parameters @@ -1072,7 +1072,7 @@ abstract class Yaf_Controller_Abstract { protected function render($tpl, array $parameters = null){ } /** - * @link http://www.php.net/manual/en/yaf-controller-abstract.display.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.display.php * * @param string $tpl * @param array $parameters @@ -1084,7 +1084,7 @@ abstract class Yaf_Controller_Abstract { /** * retrieve current request object * - * @link http://www.php.net/manual/en/yaf-controller-abstract.getrequest.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.getrequest.php * * @return Yaf_Request_Abstract */ @@ -1093,7 +1093,7 @@ abstract class Yaf_Controller_Abstract { /** * retrieve current response object * - * @link http://www.php.net/manual/en/yaf-controller-abstract.getresponse.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.getresponse.php * * @return Yaf_Response_Abstract */ @@ -1102,7 +1102,7 @@ abstract class Yaf_Controller_Abstract { /** * get the controller's module name * - * @link http://www.php.net/manual/en/yaf-controller-abstract.getmodulename.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.getmodulename.php * * @return string */ @@ -1111,7 +1111,7 @@ abstract class Yaf_Controller_Abstract { /** * retrieve view engine * - * @link http://www.php.net/manual/en/yaf-controller-abstract.getview.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.getview.php * * @return Yaf_View_Interface */ @@ -1119,7 +1119,7 @@ abstract class Yaf_Controller_Abstract { /** * @deprecated not_implemented - * @link http://www.php.net/manual/en/yaf-controller-abstract.initview.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.initview.php * * @param array $options * @@ -1128,7 +1128,7 @@ abstract class Yaf_Controller_Abstract { public function initView(array $options = null){ } /** - * @link http://www.php.net/manual/en/yaf-controller-abstract.setviewpath.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.setviewpath.php * * @param string $view_directory * @@ -1137,7 +1137,7 @@ abstract class Yaf_Controller_Abstract { public function setViewpath($view_directory){ } /** - * @link http://www.php.net/manual/en/yaf-controller-abstract.getviewpath.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.getviewpath.php * * @return string */ @@ -1154,7 +1154,7 @@ abstract class Yaf_Controller_Abstract { *

                Yaf_Controller_Abstract::forward ( string $controller , string $action [, array $parameters ] )

                *

                Yaf_Controller_Abstract::forward ( string $action [, array $parameters ] )

                * - * @link http://www.php.net/manual/en/yaf-controller-abstract.forward.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.forward.php * * @param string $module destination module name, if NULL was given, then default module name is assumed * @param string $controller destination controller name @@ -1168,7 +1168,7 @@ abstract class Yaf_Controller_Abstract { /** * redirect to a URL by sending a 302 header * - * @link http://www.php.net/manual/en/yaf-controller-abstract.redirect.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.redirect.php * * @param string $url a location URL * @@ -1177,14 +1177,14 @@ abstract class Yaf_Controller_Abstract { public function redirect($url){ } /** - * @link http://www.php.net/manual/en/yaf-controller-abstract.getinvokeargs.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.getinvokeargs.php * * @return array */ public function getInvokeArgs(){ } /** - * @link http://www.php.net/manual/en/yaf-controller-abstract.getinvokearg.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.getinvokearg.php * @param string $name * * @return null|mixed @@ -1194,7 +1194,7 @@ abstract class Yaf_Controller_Abstract { /** *

                Yaf_Controller_Abstract::__construct() is final, which means users can not override it. but users can define Yaf_Controller_Abstract::init(), which will be called after controller object is instantiated.

                * - * @link http://www.php.net/manual/en/yaf-controller-abstract.init.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.init.php * */ public function init(){ } @@ -1203,7 +1203,7 @@ abstract class Yaf_Controller_Abstract { * Yaf_Controller_Abstract::__construct() is final, which means it can not be overridden. You may want to see Yaf_Controller_Abstract::init() instead. * * @see Yaf_Controller_Abstract::init() - * @link http://www.php.net/manual/en/yaf-controller-abstract.construct.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.construct.php * * @param Yaf_Request_Abstract $request * @param Yaf_Response_Abstract $response @@ -1213,7 +1213,7 @@ abstract class Yaf_Controller_Abstract { final public function __construct(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response, Yaf_View_Interface $view, array $invokeArgs = null){ } /** - * @link http://www.php.net/manual/en/yaf-controller-abstract.clone.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.clone.php */ final private function __clone(){ } } @@ -1223,7 +1223,7 @@ abstract class Yaf_Controller_Abstract { *
                *

                Since there should be a entry point which can be called by Yaf (as of PHP 5.3, there is a new magic method __invoke, but Yaf is not only works with PHP 5.3+, Yaf choose another magic method execute), you must implement the abstract method Yaf_Action_Abstract::execute() in your custom action class.

                * - * @link http://www.php.net/manual/en/class.yaf-action-abstract.php + * @link https://secure.php.net/manual/en/class.yaf-action-abstract.php * */ abstract class Yaf_Action_Abstract extends Yaf_Controller_Abstract { @@ -1238,7 +1238,7 @@ abstract class Yaf_Action_Abstract extends Yaf_Controller_Abstract { *
                * Note: *

                The value retrieved from the request is not safe. you should do some filtering work before you use it.

                - * @link http://www.php.net/manual/en/yaf-action-abstract.execute.php + * @link https://secure.php.net/manual/en/yaf-action-abstract.execute.php * * @param mixed ... unlimited number of arguments * @return mixed @@ -1248,7 +1248,7 @@ abstract class Yaf_Action_Abstract extends Yaf_Controller_Abstract { /** * retrieve current controller object. * - * @link http://www.php.net/manual/en/yaf-action-abstract.getcontroller.php + * @link https://secure.php.net/manual/en/yaf-action-abstract.getcontroller.php * * @return Yaf_Controller_Abstract */ @@ -1256,7 +1256,7 @@ abstract class Yaf_Action_Abstract extends Yaf_Controller_Abstract { } /** - * @link http://www.php.net/manual/en/class.yaf-config-abstract.php + * @link https://secure.php.net/manual/en/class.yaf-config-abstract.php */ abstract class Yaf_Config_Abstract { @@ -1270,7 +1270,7 @@ abstract class Yaf_Config_Abstract { protected $_readonly = true; /** - * @link http://www.php.net/manual/en/yaf-config-abstract.get.php + * @link https://secure.php.net/manual/en/yaf-config-abstract.get.php * * @param string $name * @return mixed @@ -1278,7 +1278,7 @@ abstract class Yaf_Config_Abstract { abstract public function get($name = null); /** - * @link http://www.php.net/manual/en/yaf-config-abstract.set.php + * @link https://secure.php.net/manual/en/yaf-config-abstract.set.php * * @param string $name * @param mixed $value @@ -1287,14 +1287,14 @@ abstract class Yaf_Config_Abstract { abstract public function set($name, $value); /** - * @link http://www.php.net/manual/en/yaf-config-abstract.readonly.php + * @link https://secure.php.net/manual/en/yaf-config-abstract.readonly.php * * @return bool */ abstract public function readonly(); /** - * @link http://www.php.net/manual/en/yaf-config-abstract.toarray.php + * @link https://secure.php.net/manual/en/yaf-config-abstract.toarray.php * * @return array */ @@ -1302,7 +1302,7 @@ abstract class Yaf_Config_Abstract { } /** - * @link http://www.php.net/manual/en/class.yaf-request-abstract.php + * @link https://secure.php.net/manual/en/class.yaf-request-abstract.php */ abstract class Yaf_Request_Abstract { @@ -1354,56 +1354,56 @@ abstract class Yaf_Request_Abstract { protected $routed = ""; /** - * @link http://www.php.net/manual/en/yaf-request-abstract.isget.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.isget.php * * @return bool */ public function isGet(){ } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.ispost.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.ispost.php * * @return bool */ public function isPost(){ } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.isput.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.isput.php * * @return bool */ public function isPut(){ } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.ishead.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.ishead.php * * @return bool */ public function isHead(){ } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.isoptions.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.isoptions.php * * @return bool */ public function isOptions(){ } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.iscli.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.iscli.php * * @return bool */ public function isCli(){ } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.isdispached.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.isdispached.php * * @return bool */ public function isDispatched(){ } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.isrouted.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.isrouted.php * * @return bool */ @@ -1411,7 +1411,7 @@ abstract class Yaf_Request_Abstract { /** * - * @link http://www.php.net/manual/en/yaf-request-abstract.isxmlhttprequest.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.isxmlhttprequest.php * * @return bool false */ @@ -1420,7 +1420,7 @@ abstract class Yaf_Request_Abstract { /** * Retrieve $_SERVER variable * - * @link http://www.php.net/manual/en/yaf-request-abstract.getserver.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getserver.php * * @param string $name the variable name, if not provided returns all * @param mixed $default if this parameter is provide, this will be returned if the variable can not be found @@ -1432,7 +1432,7 @@ abstract class Yaf_Request_Abstract { /** * Retrieve $_ENV variable * - * @link http://www.php.net/manual/en/yaf-request-abstract.getenv.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getenv.php * * @param string $name the variable name, if not provided returns all * @param mixed $default if this parameter is provide, this will be returned if the variable can not be found @@ -1443,7 +1443,7 @@ abstract class Yaf_Request_Abstract { /** * - * @link http://www.php.net/manual/en/yaf-request-abstract.getparam.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getparam.php * * @param string $name * @param mixed $default @@ -1454,42 +1454,42 @@ abstract class Yaf_Request_Abstract { /** * - * @link http://www.php.net/manual/en/yaf-request-abstract.getparams.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getparams.php * * @return array */ public function getParams(){ } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.getexception.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getexception.php * * @return Yaf_Exception */ public function getException(){ } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.getmoudlename.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getmoudlename.php * * @return string */ public function getModuleName(){ } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.getcontrollername.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getcontrollername.php * * @return string */ public function getControllerName(){ } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.getactionname.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getactionname.php * * @return string */ public function getActionName(){ } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.setparam.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.setparam.php * * @param string|array $name the variable name, or an array of key=>value pairs * @param string $value @@ -1499,7 +1499,7 @@ abstract class Yaf_Request_Abstract { public function setParam($name, $value = null){ } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.setmodulename.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.setmodulename.php * * @param string $module * @@ -1508,7 +1508,7 @@ abstract class Yaf_Request_Abstract { public function setModuleName($module){ } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.setcontrollername.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.setcontrollername.php * * @param string $controller * @@ -1517,7 +1517,7 @@ abstract class Yaf_Request_Abstract { public function setControllerName($controller){ } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.setactionname.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.setactionname.php * * @param string $action * @@ -1526,14 +1526,14 @@ abstract class Yaf_Request_Abstract { public function setActionName($action){ } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.getmethod.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getmethod.php * * @return string */ public function getMethod(){ } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.getlanguage.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getlanguage.php * * @return string */ @@ -1545,7 +1545,7 @@ abstract class Yaf_Request_Abstract { * Note: *

                generally, you don't need to set this, Yaf will determine it automatically.

                * - * @link http://www.php.net/manual/en/yaf-request-abstract.setbaseuri.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.setbaseuri.php * * @param string $uri base URI * @@ -1554,14 +1554,14 @@ abstract class Yaf_Request_Abstract { public function setBaseUri($uri){ } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.getbaseuri.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getbaseuri.php * * @return string */ public function getBaseUri(){ } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.getrequesturi.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getrequesturi.php * * @return string */ @@ -1569,7 +1569,7 @@ abstract class Yaf_Request_Abstract { /** * @since 2.1.0 - * @link http://www.php.net/manual/en/yaf-request-abstract.setrequesturi.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.setrequesturi.php * * @param string $uri request URI */ @@ -1578,7 +1578,7 @@ abstract class Yaf_Request_Abstract { /** * Set request as dispatched * - * @link http://www.php.net/manual/en/yaf-request-abstract.setdispatched.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.setdispatched.php * * @return bool */ @@ -1587,7 +1587,7 @@ abstract class Yaf_Request_Abstract { /** * Set request as routed * - * @link http://www.php.net/manual/en/yaf-request-abstract.setrouted.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.setrouted.php * * @return Yaf_Request_Abstract|bool */ @@ -1600,14 +1600,14 @@ abstract class Yaf_Request_Abstract { *

                Plugins are classes. The actual class definition will vary based on the component -- you may need to implement this interface, but the fact remains that the plugin is itself a class.

                *
                *

                A plugin could be loaded into Yaf by using Yaf_Dispatcher::registerPlugin(), after registered, All the methods which the plugin implemented according to this interface, will be called at the proper time.

                - * @link http://www.php.net/manual/en/class.yaf-plugin-abstract.php + * @link https://secure.php.net/manual/en/class.yaf-plugin-abstract.php */ abstract class Yaf_Plugin_Abstract { /** * This is the earliest hook in Yaf plugin hook system, if a custom plugin implement this method, then it will be called before routing a request. * - * @link http://www.php.net/manual/en/yaf-plugin-abstract.routerstartup.php + * @link https://secure.php.net/manual/en/yaf-plugin-abstract.routerstartup.php * * @param Yaf_Request_Abstract $request * @param Yaf_Response_Abstract $response @@ -1619,7 +1619,7 @@ abstract class Yaf_Plugin_Abstract { /** * This hook will be trigged after the route process finished, this hook is usually used for login check. * - * @link http://www.php.net/manual/en/yaf-plugin-abstract.routershutdown.php + * @link https://secure.php.net/manual/en/yaf-plugin-abstract.routershutdown.php * * @param Yaf_Request_Abstract $request * @param Yaf_Response_Abstract $response @@ -1629,7 +1629,7 @@ abstract class Yaf_Plugin_Abstract { public function routerShutdown(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response){ } /** - * @link http://www.php.net/manual/en/yaf-plugin-abstract.dispatchloopstartup.php + * @link https://secure.php.net/manual/en/yaf-plugin-abstract.dispatchloopstartup.php * * @param Yaf_Request_Abstract $request * @param Yaf_Response_Abstract $response @@ -1641,7 +1641,7 @@ abstract class Yaf_Plugin_Abstract { /** * This is the latest hook in Yaf plugin hook system, if a custom plugin implement this method, then it will be called after the dispatch loop finished. * - * @link http://www.php.net/manual/en/yaf-plugin-abstract.dispatchloopshutdown.php + * @link https://secure.php.net/manual/en/yaf-plugin-abstract.dispatchloopshutdown.php * * @param Yaf_Request_Abstract $request * @param Yaf_Response_Abstract $response @@ -1651,7 +1651,7 @@ abstract class Yaf_Plugin_Abstract { public function dispatchLoopShutdown(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response){ } /** - * @link http://www.php.net/manual/en/yaf-plugin-abstract.predispatch.php + * @link https://secure.php.net/manual/en/yaf-plugin-abstract.predispatch.php * * @param Yaf_Request_Abstract $request * @param Yaf_Response_Abstract $response @@ -1661,7 +1661,7 @@ abstract class Yaf_Plugin_Abstract { public function preDispatch(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response){ } /** - * @link http://www.php.net/manual/en/yaf-plugin-abstract.postdispatch.php + * @link https://secure.php.net/manual/en/yaf-plugin-abstract.postdispatch.php * * @param Yaf_Request_Abstract $request * @param Yaf_Response_Abstract $response @@ -1671,7 +1671,7 @@ abstract class Yaf_Plugin_Abstract { public function postDispatch(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response){ } /** - * @link http://www.php.net/manual/en/yaf-plugin-abstract.preresponse.php + * @link https://secure.php.net/manual/en/yaf-plugin-abstract.preresponse.php * * @param Yaf_Request_Abstract $request * @param Yaf_Response_Abstract $response @@ -1682,7 +1682,7 @@ abstract class Yaf_Plugin_Abstract { } /** - * @link http://www.php.net/manual/en/class.yaf-response-abstract.php + * @link https://secure.php.net/manual/en/class.yaf-response-abstract.php */ abstract class Yaf_Response_Abstract { @@ -1701,29 +1701,29 @@ abstract class Yaf_Response_Abstract { protected $_sendheader; /** - * @link http://www.php.net/manual/en/yaf-response-abstract.construct.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.construct.php */ public function __construct(){ } /** - * @link http://www.php.net/manual/en/yaf-response-abstract.destruct.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.destruct.php */ public function __destruct(){ } /** - * @link http://www.php.net/manual/en/yaf-response-abstract.clone.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.clone.php */ private function __clone(){ } /** - * @link http://www.php.net/manual/en/yaf-response-abstract.tostring.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.tostring.php */ private function __toString(){ } /** * Set content to response * - * @link http://www.php.net/manual/en/yaf-response-abstract.setbody.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.setbody.php * * @param string $content content string * @param string $key

                the content key, you can set a content with a key, if you don't specific, then Yaf_Response_Abstract::DEFAULT_BODY will be used

                @@ -1738,7 +1738,7 @@ abstract class Yaf_Response_Abstract { /** * append a content to a exists content block * - * @link http://www.php.net/manual/en/yaf-response-abstract.appendbody.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.appendbody.php * * @param string $content content string * @param string $key

                the content key, you can set a content with a key, if you don't specific, then Yaf_Response_Abstract::DEFAULT_BODY will be used

                @@ -1753,7 +1753,7 @@ abstract class Yaf_Response_Abstract { /** * prepend a content to a exists content block * - * @link http://www.php.net/manual/en/yaf-response-abstract.prependbody.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.prependbody.php * * @param string $content content string * @param string $key

                the content key, you can set a content with a key, if you don't specific, then Yaf_Response_Abstract::DEFAULT_BODY will be used

                @@ -1768,7 +1768,7 @@ abstract class Yaf_Response_Abstract { /** * Clear existing content * - * @link http://www.php.net/manual/en/yaf-response-abstract.clearbody.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.clearbody.php * * @param string $key

                the content key, you can set a content with a key, if you don't specific, then Yaf_Response_Abstract::DEFAULT_BODY will be used

                *
                @@ -1782,7 +1782,7 @@ abstract class Yaf_Response_Abstract { /** * Retrieve an existing content * - * @link http://www.php.net/manual/en/yaf-response-abstract.getbody.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.getbody.php * * @param null|string $key

                the content key, if you don't specific, then Yaf_Response_Abstract::DEFAULT_BODY will be used. if you pass in a NULL, then all contents will be returned as a array

                *
                @@ -1797,14 +1797,14 @@ abstract class Yaf_Response_Abstract { /** * Yaf provides a ability for developers to use custom view engine instead of build-in engine which is Yaf_View_Simple. There is a example to explain how to do this, please see Yaf_Dispatcher::setView() * - * @link http://www.php.net/manual/en/class.yaf-view-interface.php + * @link https://secure.php.net/manual/en/class.yaf-view-interface.php */ interface Yaf_View_Interface { /** * Assign values to View engine, then the value can access directly by name in template. * - * @link http://www.php.net/manual/en/yaf-view-interface.assign.php + * @link https://secure.php.net/manual/en/yaf-view-interface.assign.php * * @param string|array $name * @param mixed $value @@ -1815,7 +1815,7 @@ interface Yaf_View_Interface { /** * Render a template and output the result immediately. * - * @link http://www.php.net/manual/en/yaf-view-interface.display.php + * @link https://secure.php.net/manual/en/yaf-view-interface.display.php * * @param string $tpl * @param array $tpl_vars @@ -1824,7 +1824,7 @@ interface Yaf_View_Interface { function display($tpl, array $tpl_vars = null); /** - * @link http://www.php.net/manual/en/yaf-view-interface.getscriptpath.php + * @link https://secure.php.net/manual/en/yaf-view-interface.getscriptpath.php * * @return string */ @@ -1833,7 +1833,7 @@ interface Yaf_View_Interface { /** * Render a template and return the result. * - * @link http://www.php.net/manual/en/yaf-view-interface.render.php + * @link https://secure.php.net/manual/en/yaf-view-interface.render.php * * @param string $tpl * @param array $tpl_vars @@ -1844,7 +1844,7 @@ interface Yaf_View_Interface { /** * Set the templates base directory, this is usually called by Yaf_Dispatcher * - * @link http://www.php.net/manual/en/yaf-view-interface.setscriptpath.php + * @link https://secure.php.net/manual/en/yaf-view-interface.setscriptpath.php * * @param string $template_dir An absolute path to the template directory, by default, Yaf_Dispatcher use application.directory . "/views" as this parameter. */ @@ -1854,7 +1854,7 @@ interface Yaf_View_Interface { /** * Yaf_Route_Interface used for developer defined their custom route. * - * @link http://www.php.net/manual/en/class.yaf-route-interface.php + * @link https://secure.php.net/manual/en/class.yaf-route-interface.php */ interface Yaf_Route_Interface { @@ -1864,7 +1864,7 @@ interface Yaf_Route_Interface { *

                This method would set the route result to the parameter request, by calling Yaf_Request_Abstract::setControllerName(), Yaf_Request_Abstract::setActionName() and Yaf_Request_Abstract::setModuleName().


                *

                This method should also call Yaf_Request_Abstract::setRouted() to make the request routed at last.

                * - * @link http://www.php.net/manual/en/yaf-route-interface.route.php + * @link https://secure.php.net/manual/en/yaf-route-interface.route.php * * @param Yaf_Request_Abstract $request * @return bool @@ -1876,7 +1876,7 @@ interface Yaf_Route_Interface { *

                this method returns a url according to the argument info, and append query strings to the url according to the argument query.

                *

                a route should implement this method according to its own route rules, and do a reverse progress.

                * - * @link http://www.php.net/manual/en/yaf-route-interface.assemble.php + * @link https://secure.php.net/manual/en/yaf-route-interface.assemble.php * * @param array $info * @param array $query @@ -1886,7 +1886,7 @@ interface Yaf_Route_Interface { } /** - * @link http://www.php.net/manual/en/class.yaf-exception.php + * @link https://secure.php.net/manual/en/class.yaf-exception.php */ class Yaf_Exception extends Exception { @@ -1914,7 +1914,7 @@ class Yaf_Response_Http extends Yaf_Response_Abstract { /** - * @link http://www.php.net/manual/en/yaf-response-abstract.setheader.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.setheader.php * * @param string $name * @param string $value @@ -1926,7 +1926,7 @@ class Yaf_Response_Http extends Yaf_Response_Abstract { public function setHeader($name,$value,$replace = false,$response_code = 0){ } /** - * @link http://www.php.net/manual/en/yaf-response-abstract.setallheaders.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.setallheaders.php * * @param array $headers * @@ -1935,7 +1935,7 @@ class Yaf_Response_Http extends Yaf_Response_Abstract { protected function setAllHeaders(array $headers){ } /** - * @link http://www.php.net/manual/en/yaf-response-abstract.getheader.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.getheader.php * * @param string $name * @@ -1944,7 +1944,7 @@ class Yaf_Response_Http extends Yaf_Response_Abstract { public function getHeader($name = null){ } /** - * @link http://www.php.net/manual/en/yaf-response-abstract.clearheaders.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.clearheaders.php * * @param string $name * @@ -1953,7 +1953,7 @@ class Yaf_Response_Http extends Yaf_Response_Abstract { public function clearHeaders($name = null){ } /** - * @link http://www.php.net/manual/en/yaf-response-abstract.setredirect.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.setredirect.php * * @param string $url * @@ -1964,7 +1964,7 @@ class Yaf_Response_Http extends Yaf_Response_Abstract { /** * send response * - * @link http://www.php.net/manual/en/yaf-response-abstract.response.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.response.php * * @return bool */ @@ -1988,14 +1988,14 @@ class Yaf_Response_Cli extends Yaf_Response_Abstract { } /** - * @link http://www.php.net/manual/en/class.yaf-request-http.php + * @link https://secure.php.net/manual/en/class.yaf-request-http.php */ class Yaf_Request_Http extends Yaf_Request_Abstract { /** * Retrieve $_GET variable * - * @link http://www.php.net/manual/en/yaf-request-http.getquery.php + * @link https://secure.php.net/manual/en/yaf-request-http.getquery.php * * @param string $name the variable name, if not provided returns all * @param mixed $default if this parameter is provide, this will be returned if the variable can not be found @@ -2007,7 +2007,7 @@ class Yaf_Request_Http extends Yaf_Request_Abstract { /** * Retrieve $_REQUEST variable * - * @link http://www.php.net/manual/en/yaf-request-http.getrequest.php + * @link https://secure.php.net/manual/en/yaf-request-http.getrequest.php * * @param string $name the variable name, if not provided returns all * @param mixed $default if this parameter is provide, this will be returned if the variable can not be found @@ -2019,7 +2019,7 @@ class Yaf_Request_Http extends Yaf_Request_Abstract { /** * Retrieve $_POST variable * - * @link http://www.php.net/manual/en/yaf-request-http.getpost.php + * @link https://secure.php.net/manual/en/yaf-request-http.getpost.php * * @param string $name the variable name, if not provided returns all * @param mixed $default if this parameter is provide, this will be returned if the variable can not be found @@ -2031,7 +2031,7 @@ class Yaf_Request_Http extends Yaf_Request_Abstract { /** * Retrieve $_COOKIE variable * - * @link http://www.php.net/manual/en/yaf-request-http.getcookie.php + * @link https://secure.php.net/manual/en/yaf-request-http.getcookie.php * * @param string $name the variable name, if not provided returns all * @param mixed $default if this parameter is provide, this will be returned if the variable can not be found @@ -2043,7 +2043,7 @@ class Yaf_Request_Http extends Yaf_Request_Abstract { /** * Retrieve $_FILES variable * - * @link http://www.php.net/manual/en/yaf-request-http.getfiles.php + * @link https://secure.php.net/manual/en/yaf-request-http.getfiles.php * * @param string $name the variable name, if not provided returns all * @param mixed $default if this parameter is provide, this will be returned if the variable can not be found @@ -2055,7 +2055,7 @@ class Yaf_Request_Http extends Yaf_Request_Abstract { /** * Retrieve variable from client, this method will search the name in $_REQUEST params, if the name is not found, then will search in $_POST, $_GET, $_COOKIE, $_SERVER * - * @link http://www.php.net/manual/en/yaf-request-http.get.php + * @link https://secure.php.net/manual/en/yaf-request-http.get.php * * @param string $name the variable name * @param string $default if this parameter is provide, this will be returned if the variable can not be found @@ -2072,14 +2072,14 @@ class Yaf_Request_Http extends Yaf_Request_Abstract { *

                * This method depends on the request header: HTTP_X_REQUESTED_WITH, some Javascript library doesn't set this header while doing Ajax request *

                - * @link http://www.php.net/manual/en/yaf-request-http.isxmlhttprequest.php + * @link https://secure.php.net/manual/en/yaf-request-http.isxmlhttprequest.php * * @return bool */ public function isXmlHttpRequest(){ } /** - * @link http://www.php.net/manual/en/yaf-request-http.construct.php + * @link https://secure.php.net/manual/en/yaf-request-http.construct.php * * @param string $request_uri * @param string $base_uri @@ -2088,21 +2088,21 @@ class Yaf_Request_Http extends Yaf_Request_Abstract { public function __construct($request_uri, $base_uri){ } /** - * @link http://www.php.net/manual/en/yaf-request-http.clone.php + * @link https://secure.php.net/manual/en/yaf-request-http.clone.php */ private function __clone(){ } } /** * Yaf_Request_Simple is particularly used for test purpose. ie. simulate a spacial request under CLI mode. - * @link http://www.php.net/manual/en/class.yaf-request-simple.php + * @link https://secure.php.net/manual/en/class.yaf-request-simple.php */ class Yaf_Request_Simple extends Yaf_Request_Abstract { /** * Retrieve $_GET variable * - * @link http://www.php.net/manual/en/yaf-request-simple.getquery.php + * @link https://secure.php.net/manual/en/yaf-request-simple.getquery.php * * @param string $name the variable name, if not provided returns all * @param string $default if this parameter is provide, this will be returned if the variable can not be found @@ -2114,7 +2114,7 @@ class Yaf_Request_Simple extends Yaf_Request_Abstract { /** * Retrieve $_REQUEST variable * - * @link http://www.php.net/manual/en/yaf-request-simple.getrequest.php + * @link https://secure.php.net/manual/en/yaf-request-simple.getrequest.php * * @param string $name the variable name, if not provided returns all * @param string $default if this parameter is provide, this will be returned if the variable can not be found @@ -2126,7 +2126,7 @@ class Yaf_Request_Simple extends Yaf_Request_Abstract { /** * Retrieve $_POST variable * - * @link http://www.php.net/manual/en/yaf-request-simple.getpost.php + * @link https://secure.php.net/manual/en/yaf-request-simple.getpost.php * * @param string $name the variable name, if not provided returns all * @param string $default if this parameter is provide, this will be returned if the variable can not be found @@ -2138,7 +2138,7 @@ class Yaf_Request_Simple extends Yaf_Request_Abstract { /** * Retrieve $_Cookie variable * - * @link http://www.php.net/manual/en/yaf-request-simple.getcookie.php + * @link https://secure.php.net/manual/en/yaf-request-simple.getcookie.php * * @param string $name the variable name, if not provided returns all * @param string $default if this parameter is provide, this will be returned if the variable can not be found @@ -2158,7 +2158,7 @@ class Yaf_Request_Simple extends Yaf_Request_Abstract { /** * Retrieve variable from client, this method will search the name in $_REQUEST params, if the name is not found, then will search in $_POST, $_GET, $_COOKIE, $_SERVER * - * @link http://www.php.net/manual/en/yaf-request-simple.get.php + * @link https://secure.php.net/manual/en/yaf-request-simple.get.php * * @param string $name the variable name * @param string $default if this parameter is provide, this will be returned if the variable can not be found @@ -2175,14 +2175,14 @@ class Yaf_Request_Simple extends Yaf_Request_Abstract { *

                * This method depends on the request header: HTTP_X_REQUESTED_WITH, some Javascript library doesn't set this header while doing Ajax request *

                - * @link http://www.php.net/manual/en/yaf-request-simple.isxmlhttprequest.php + * @link https://secure.php.net/manual/en/yaf-request-simple.isxmlhttprequest.php * * @return bool */ public function isXmlHttpRequest(){ } /** - * @link http://www.php.net/manual/en/yaf-request-simple.construct.php + * @link https://secure.php.net/manual/en/yaf-request-simple.construct.php * * @param string $method * @param string $controller @@ -2194,7 +2194,7 @@ class Yaf_Request_Simple extends Yaf_Request_Abstract { public function __construct($method, $controller, $action, $params = null){ } /** - * @link http://www.php.net/manual/en/yaf-request-simple.clone.php + * @link https://secure.php.net/manual/en/yaf-request-simple.clone.php */ private function __clone(){ } } @@ -2203,7 +2203,7 @@ class Yaf_Request_Simple extends Yaf_Request_Abstract { *

                Yaf_Config_Ini enables developers to store configuration data in a familiar INI format and read them in the application by using nested object property syntax. The INI format is specialized to provide both the ability to have a hierarchy of configuration data keys and inheritance between configuration data sections. Configuration data hierarchies are supported by separating the keys with the dot or period character ("."). A section may extend or inherit from another section by following the section name with a colon character (":") and the name of the section from which data are to be inherited.


                * Note: *

                Yaf_Config_Ini utilizes the » parse_ini_file() PHP function. Please review this documentation to be aware of its specific behaviors, which propagate to Yaf_Config_Ini, such as how the special values of "TRUE", "FALSE", "yes", "no", and "NULL" are handled.

                - * @link http://www.php.net/manual/en/class.yaf-config-ini.php + * @link https://secure.php.net/manual/en/class.yaf-config-ini.php */ class Yaf_Config_Ini extends Yaf_Config_Abstract implements Iterator, Traversable, ArrayAccess, Countable { @@ -2239,7 +2239,7 @@ class Yaf_Config_Ini extends Yaf_Config_Abstract implements Iterator, Traversabl public function readonly(){ } /** - * @link http://www.php.net/manual/en/yaf-config-ini.construct.php + * @link https://secure.php.net/manual/en/yaf-config-ini.construct.php * * @param string $config_file path to an INI configure file * @param string $section which section in that INI file you want to be parsed @@ -2249,7 +2249,7 @@ class Yaf_Config_Ini extends Yaf_Config_Abstract implements Iterator, Traversabl public function __construct($config_file, $section = null){ } /** - * @link http://www.php.net/manual/en/yaf-config-ini.isset.php + * @link https://secure.php.net/manual/en/yaf-config-ini.isset.php * @param string $name */ public function __isset($name){ } @@ -2307,7 +2307,7 @@ class Yaf_Config_Ini extends Yaf_Config_Abstract implements Iterator, Traversabl } /** - * @link http://www.php.net/manual/en/class.yaf-config-simple.php + * @link https://secure.php.net/manual/en/class.yaf-config-simple.php */ class Yaf_Config_Simple extends Yaf_Config_Abstract implements Iterator, Traversable, ArrayAccess, Countable { @@ -2342,7 +2342,7 @@ class Yaf_Config_Simple extends Yaf_Config_Abstract implements Iterator, Travers public function readonly(){ } /** - * @link http://www.php.net/manual/en/yaf-config-simple.construct.php + * @link https://secure.php.net/manual/en/yaf-config-simple.construct.php * * @param array $array * @param string $readonly @@ -2351,7 +2351,7 @@ class Yaf_Config_Simple extends Yaf_Config_Abstract implements Iterator, Travers public function __construct(array $array, $readonly = null){ } /** - * @link http://www.php.net/manual/en/yaf-config-simple.isset.php + * @link https://secure.php.net/manual/en/yaf-config-simple.isset.php * @param string $name */ public function __isset($name){ } @@ -2409,11 +2409,11 @@ class Yaf_Config_Simple extends Yaf_Config_Abstract implements Iterator, Travers /** * Yaf_View_Simple is the built-in template engine in Yaf, it is a simple but fast template engine, and only support PHP script template. - * @link http://www.php.net/manual/en/class.yaf-view-simple.php + * @link https://secure.php.net/manual/en/class.yaf-view-simple.php * * @method void|bool eval(string $tpl_str, array $vars = null)

                Render a string template and return the result.

                * - * @link http://www.php.net/manual/en/yaf-view-simple.eval.php + * @link https://secure.php.net/manual/en/yaf-view-simple.eval.php * * @param string $tpl_str string template * @param array $vars @@ -2436,7 +2436,7 @@ class Yaf_View_Simple implements Yaf_View_Interface { protected $_options; /** - * @link http://www.php.net/manual/en/yaf-view-simple.construct.php + * @link https://secure.php.net/manual/en/yaf-view-simple.construct.php * * @param string $template_dir The base directory of the templates, by default, it is APPLICATION . "/views" for Yaf. * @param array $options

                Options for the engine, as of Yaf 2.1.13, you can use short tag @@ -2449,7 +2449,7 @@ class Yaf_View_Simple implements Yaf_View_Interface { final public function __construct($template_dir, array $options = null){ } /** - * @link http://www.php.net/manual/en/yaf-view-simple.isset.php + * @link https://secure.php.net/manual/en/yaf-view-simple.isset.php * * @param string $name */ @@ -2458,7 +2458,7 @@ class Yaf_View_Simple implements Yaf_View_Interface { /** * assign variable to view engine * - * @link http://www.php.net/manual/en/yaf-view-simple.assign.php + * @link https://secure.php.net/manual/en/yaf-view-simple.assign.php * * @param string|array $name A string or an array.
                if is string, then the next argument $value is required. * @param mixed $value mixed value @@ -2467,7 +2467,7 @@ class Yaf_View_Simple implements Yaf_View_Interface { public function assign($name, $value = null){ } /** - * @link http://www.php.net/manual/en/yaf-view-simple.render.php + * @link https://secure.php.net/manual/en/yaf-view-simple.render.php * * @param string $tpl * @param array $tpl_vars @@ -2481,7 +2481,7 @@ class Yaf_View_Simple implements Yaf_View_Interface { /** *

                Render a template and display the result instantly.

                * - * @link http://www.php.net/manual/en/yaf-view-simple.display.php + * @link https://secure.php.net/manual/en/yaf-view-simple.display.php * * @param string $tpl * @param array $tpl_vars @@ -2494,7 +2494,7 @@ class Yaf_View_Simple implements Yaf_View_Interface { /** *

                unlike Yaf_View_Simple::assign(), this method assign a ref value to engine.

                - * @link http://www.php.net/manual/en/yaf-view-simple.assignref.php + * @link https://secure.php.net/manual/en/yaf-view-simple.assignref.php * * @param string $name A string name which will be used to access the value in the template. * @param mixed $value mixed value @@ -2505,7 +2505,7 @@ class Yaf_View_Simple implements Yaf_View_Interface { /** * clear assigned variable - * @link http://www.php.net/manual/en/yaf-view-simple.clear.php + * @link https://secure.php.net/manual/en/yaf-view-simple.clear.php * * @param string $name assigned variable name.
                if empty, will clear all assigned variables. * @@ -2514,7 +2514,7 @@ class Yaf_View_Simple implements Yaf_View_Interface { public function clear($name = null){ } /** - * @link http://www.php.net/manual/en/yaf-view-simple.setscriptpath.php + * @link https://secure.php.net/manual/en/yaf-view-simple.setscriptpath.php * * @param string $template_dir * @@ -2523,7 +2523,7 @@ class Yaf_View_Simple implements Yaf_View_Interface { public function setScriptPath($template_dir){ } /** - * @link http://www.php.net/manual/en/yaf-view-simple.getscriptpath.php + * @link https://secure.php.net/manual/en/yaf-view-simple.getscriptpath.php * * @return string */ @@ -2534,7 +2534,7 @@ class Yaf_View_Simple implements Yaf_View_Interface { *
                * Note: *

                $name parameter can be empty since 2.1.11

                - * @link http://www.php.net/manual/en/yaf-view-simple.get.php + * @link https://secure.php.net/manual/en/yaf-view-simple.get.php * * @param null $name

                the assigned variable name

                *
                @@ -2547,7 +2547,7 @@ class Yaf_View_Simple implements Yaf_View_Interface { /** *

                This is a alternative and easier way to Yaf_View_Simple::assign().

                * - * @link http://www.php.net/manual/en/yaf-view-simple.set.php + * @link https://secure.php.net/manual/en/yaf-view-simple.set.php * * @param string $name A string value name. * @param mixed $value mixed value @@ -2563,14 +2563,14 @@ class Yaf_View_Simple implements Yaf_View_Interface { * Note: *

                it is unnecessary to instance a Yaf_Route_Static, also unnecessary to add it into Yaf_Router's routes stack, since there is always be one in Yaf_Router's routes stack, and always be called at the last time.

                * - * @link http://www.php.net/manual/en/class.yaf-route-static.php + * @link https://secure.php.net/manual/en/class.yaf-route-static.php * */ class Yaf_Route_Static implements Yaf_Route_Interface { /** * @deprecated not_implemented - * @link http://www.php.net/manual/en/yaf-route-static.match.php + * @link https://secure.php.net/manual/en/yaf-route-static.match.php * * @param string $uri * @@ -2579,7 +2579,7 @@ class Yaf_Route_Static implements Yaf_Route_Interface { public function match($uri){ } /** - * @link http://www.php.net/manual/en/yaf-route-static.route.php + * @link https://secure.php.net/manual/en/yaf-route-static.route.php * * @param Yaf_Request_Abstract $request * @@ -2590,7 +2590,7 @@ class Yaf_Route_Static implements Yaf_Route_Interface { /** *

                Yaf_Route_Static::assemble() - Assemble a url * - * @link http://www.php.net/manual/en/yaf-route-static.assemble.php + * @link https://secure.php.net/manual/en/yaf-route-static.assemble.php * * @param array $info * @param array $query @@ -2606,7 +2606,7 @@ class Yaf_Route_Static implements Yaf_Route_Interface { *
                *

                Yaf_Route_Simple::route() will always return TRUE, so it is important put Yaf_Route_Simple in the front of the Route stack, otherwise all the other routes will not be called

                * - * @link http://www.php.net/manual/en/class.yaf-route-simple.php + * @link https://secure.php.net/manual/en/class.yaf-route-simple.php */ final class Yaf_Route_Simple implements Yaf_Route_Interface { @@ -2626,7 +2626,7 @@ final class Yaf_Route_Simple implements Yaf_Route_Interface { /** *

                Yaf_Route_Simple will get route info from query string. and the parameters of this constructor will used as keys while searching for the route info in $_GET.

                * - * @link http://www.php.net/manual/en/yaf-route-simple.construct.php + * @link https://secure.php.net/manual/en/yaf-route-simple.construct.php * * @param string $module_name * @param string $controller_name @@ -2639,7 +2639,7 @@ final class Yaf_Route_Simple implements Yaf_Route_Interface { /** *

                see Yaf_Route_Simple::__construct()

                * - * @link http://www.php.net/manual/en/yaf-route-simple.route.php + * @link https://secure.php.net/manual/en/yaf-route-simple.route.php * * @param Yaf_Request_Abstract $request * @@ -2650,7 +2650,7 @@ final class Yaf_Route_Simple implements Yaf_Route_Interface { /** *

                Yaf_Route_Simple::assemble() - Assemble a url * - * @link http://www.php.net/manual/en/yaf-route-simple.assemble.php + * @link https://secure.php.net/manual/en/yaf-route-simple.assemble.php * * @param array $info * @param array $query @@ -2660,7 +2660,7 @@ final class Yaf_Route_Simple implements Yaf_Route_Interface { } /** - * @link http://www.php.net/manual/en/class.yaf-route-supervar.php + * @link https://secure.php.net/manual/en/class.yaf-route-supervar.php */ final class Yaf_Route_Supervar implements Yaf_Route_Interface { @@ -2672,7 +2672,7 @@ final class Yaf_Route_Supervar implements Yaf_Route_Interface { /** *

                Yaf_Route_Supervar is similar to Yaf_Route_Static, the difference is that Yaf_Route_Supervar will look for path info in query string, and the parameter supervar_name is the key.

                * - * @link http://www.php.net/manual/en/yaf-route-supervar.construct.php + * @link https://secure.php.net/manual/en/yaf-route-supervar.construct.php * * @param string $supervar_name The name of key. * @@ -2681,7 +2681,7 @@ final class Yaf_Route_Supervar implements Yaf_Route_Interface { public function __construct($supervar_name){ } /** - * @link http://www.php.net/manual/en/yaf-route-supervar.route.php + * @link https://secure.php.net/manual/en/yaf-route-supervar.route.php * * @param Yaf_Request_Abstract $request * @@ -2692,7 +2692,7 @@ final class Yaf_Route_Supervar implements Yaf_Route_Interface { /** *

                Yaf_Route_Supervar::assemble() - Assemble a url * - * @link http://www.php.net/manual/en/yaf-route-supervar.assemble.php + * @link https://secure.php.net/manual/en/yaf-route-supervar.assemble.php * * @param array $info * @param array $query @@ -2704,7 +2704,7 @@ final class Yaf_Route_Supervar implements Yaf_Route_Interface { /** *

                For usage, please see the example section of Yaf_Route_Rewrite::__construct()

                * - * @link http://www.php.net/manual/en/class.yaf-route-rewrite.php + * @link https://secure.php.net/manual/en/class.yaf-route-rewrite.php */ final class Yaf_Route_Rewrite extends Yaf_Router implements Yaf_Route_Interface { @@ -2722,7 +2722,7 @@ final class Yaf_Route_Rewrite extends Yaf_Router implements Yaf_Route_Interface protected $_verify; /** - * @link http://www.php.net/manual/en/yaf-route-rewrite.construct.php + * @link https://secure.php.net/manual/en/yaf-route-rewrite.construct.php * * @param string $match A pattern, will be used to match a request uri, if doesn't matched, Yaf_Route_Rewrite will return FALSE. * @param array $route

                When the match pattern matches the request uri, Yaf_Route_Rewrite will use this to decide which m/c/a to routed.

                @@ -2736,7 +2736,7 @@ final class Yaf_Route_Rewrite extends Yaf_Router implements Yaf_Route_Interface public function __construct($match, array $route, array $verify = null, $reverse = null){ } /** - * @link http://www.php.net/manual/en/yaf-route-rewrite.route.php + * @link https://secure.php.net/manual/en/yaf-route-rewrite.route.php * * @param Yaf_Request_Abstract $request * @@ -2747,7 +2747,7 @@ final class Yaf_Route_Rewrite extends Yaf_Router implements Yaf_Route_Interface /** *

                Yaf_Route_Rewrite::assemble() - Assemble a url * - * @link http://www.php.net/manual/en/yaf-route-rewrite.assemble.php + * @link https://secure.php.net/manual/en/yaf-route-rewrite.assemble.php * * @param array $info * @param array $query @@ -2759,7 +2759,7 @@ final class Yaf_Route_Rewrite extends Yaf_Router implements Yaf_Route_Interface /** *

                Yaf_Route_Regex is the most flexible route among the Yaf built-in routes.

                * - * @link http://www.php.net/manual/en/class.yaf-route-regex.php + * @link https://secure.php.net/manual/en/class.yaf-route-regex.php */ final class Yaf_Route_Regex extends Yaf_Router implements Yaf_Route_Interface { @@ -2785,7 +2785,7 @@ final class Yaf_Route_Regex extends Yaf_Router implements Yaf_Route_Interface { protected $_reverse; /** - * @link http://www.php.net/manual/en/yaf-route-regex.construct.php + * @link https://secure.php.net/manual/en/yaf-route-regex.construct.php * * @param string $match A complete Regex pattern, will be used to match a request uri, if doesn't matched, Yaf_Route_Regex will return FALSE. * @param array $route

                When the match pattern matches the request uri, Yaf_Route_Regex will use this to decide which m/c/a to routed.

                @@ -2802,7 +2802,7 @@ final class Yaf_Route_Regex extends Yaf_Router implements Yaf_Route_Interface { /** * Route a incoming request. * - * @link http://www.php.net/manual/en/yaf-route-regex.route.php + * @link https://secure.php.net/manual/en/yaf-route-regex.route.php * * @param Yaf_Request_Abstract $request * @@ -2813,7 +2813,7 @@ final class Yaf_Route_Regex extends Yaf_Router implements Yaf_Route_Interface { /** *

                Yaf_Route_Regex::assemble() - Assemble a url * - * @link http://www.php.net/manual/en/yaf-route-regex.assemble.php + * @link https://secure.php.net/manual/en/yaf-route-regex.assemble.php * * @param array $info * @param array $query @@ -2827,7 +2827,7 @@ final class Yaf_Route_Regex extends Yaf_Router implements Yaf_Route_Interface { *
                *

                If the second parameter of Yaf_Route_Map::__construct() is specified, then only the part before delimiter of URI will used to routing, the part after it is used to routing request parameters (see the example section of Yaf_Route_Map::__construct()).

                * - * @link http://www.php.net/manual/en/class.yaf-route-map.php + * @link https://secure.php.net/manual/en/class.yaf-route-map.php */ final class Yaf_Route_Map implements Yaf_Route_Interface { @@ -2841,7 +2841,7 @@ final class Yaf_Route_Map implements Yaf_Route_Interface { protected $_delimiter; /** - * @link http://www.php.net/manual/en/yaf-route-map.construct.php + * @link https://secure.php.net/manual/en/yaf-route-map.construct.php * * @param bool $controller_prefer Whether the result should considering as controller or action * @param string $delimiter @@ -2849,7 +2849,7 @@ final class Yaf_Route_Map implements Yaf_Route_Interface { public function __construct($controller_prefer = false, $delimiter = ''){ } /** - * @link http://www.php.net/manual/en/yaf-route-map.route.php + * @link https://secure.php.net/manual/en/yaf-route-map.route.php * * @param Yaf_Request_Abstract $request * @@ -2860,7 +2860,7 @@ final class Yaf_Route_Map implements Yaf_Route_Interface { /** *

                Yaf_Route_Map::assemble() - Assemble a url * - * @link http://www.php.net/manual/en/yaf-route-map.assemble.php + * @link https://secure.php.net/manual/en/yaf-route-map.assemble.php * * @param array $info * @param array $query @@ -2870,63 +2870,63 @@ final class Yaf_Route_Map implements Yaf_Route_Interface { } /** - * @link http://www.php.net/manual/en/class.yaf-exception-typeerror.php + * @link https://secure.php.net/manual/en/class.yaf-exception-typeerror.php */ class Yaf_Exception_TypeError extends Yaf_Exception { } /** - * @link http://www.php.net/manual/en/class.yaf-exception-startuperror.php + * @link https://secure.php.net/manual/en/class.yaf-exception-startuperror.php */ class Yaf_Exception_StartupError extends Yaf_Exception { } /** - * @link http://www.php.net/manual/en/class.yaf-exception-routefaild.php + * @link https://secure.php.net/manual/en/class.yaf-exception-routefaild.php */ class Yaf_Exception_RouterFailed extends Yaf_Exception { } /** - * @link http://www.php.net/manual/en/class.yaf-exception-dispatchfaild.php + * @link https://secure.php.net/manual/en/class.yaf-exception-dispatchfaild.php */ class Yaf_Exception_DispatchFailed extends Yaf_Exception { } /** - * @link http://www.php.net/manual/en/class.yaf-exception-loadfaild.php + * @link https://secure.php.net/manual/en/class.yaf-exception-loadfaild.php */ class Yaf_Exception_LoadFailed extends Yaf_Exception { } /** - * @link http://www.php.net/manual/en/class.yaf-exception-loadfaild-module.php + * @link https://secure.php.net/manual/en/class.yaf-exception-loadfaild-module.php */ class Yaf_Exception_LoadFailed_Module extends Yaf_Exception_LoadFailed { } /** - * @link http://www.php.net/manual/en/class.yaf-exception-loadfaild-controller.php + * @link https://secure.php.net/manual/en/class.yaf-exception-loadfaild-controller.php */ class Yaf_Exception_LoadFailed_Controller extends Yaf_Exception_LoadFailed { } /** - * @link http://www.php.net/manual/en/class.yaf-exception-loadfaild-action.php + * @link https://secure.php.net/manual/en/class.yaf-exception-loadfaild-action.php */ class Yaf_Exception_LoadFailed_Action extends Yaf_Exception_LoadFailed { } /** - * @link http://www.php.net/manual/en/class.yaf-exception-loadfaild-view.php + * @link https://secure.php.net/manual/en/class.yaf-exception-loadfaild-view.php */ class Yaf_Exception_LoadFailed_View extends Yaf_Exception_LoadFailed { diff --git a/yaf/yaf_namespace.php b/yaf/yaf_namespace.php index 7ff2cabb..6b24bcc1 100644 --- a/yaf/yaf_namespace.php +++ b/yaf/yaf_namespace.php @@ -27,7 +27,7 @@ namespace Yaf { * \Yaf\Application implements the singleton pattern, and \Yaf\Application can not be serialized or un-serialized which will cause problem when you try to use PHPUnit to write some test case for Yaf.
                * You may use @backupGlobals annotation of PHPUnit to control the backup and restore operations for global variables. thus can solve this problem. *

                - * @link http://www.php.net/manual/en/class.yaf-application.php + * @link https://secure.php.net/manual/en/class.yaf-application.php */ final class Application { @@ -68,7 +68,7 @@ final class Application protected $_err_msg = ""; /** - * @link http://www.php.net/manual/en/yaf-application.construct.php + * @link https://secure.php.net/manual/en/yaf-application.construct.php * * @param string|array $config A ini config file path, or a config array *

                @@ -122,7 +122,7 @@ final class Application * Run a \Yaf\Application, let the \Yaf\Application accept a request, and route the request, dispatch to controller/action, and render response. * return response to client finally. * - * @link http://www.php.net/manual/en/yaf-application.run.php + * @link https://secure.php.net/manual/en/yaf-application.run.php * @throws \Yaf\Exception\StartupError */ public function run() @@ -133,7 +133,7 @@ final class Application * This method is typically used to run \Yaf\Application in a crontab work. * Make the crontab work can also use the autoloader and Bootstrap mechanism. * - * @link http://www.php.net/manual/en/yaf-application.execute.php + * @link https://secure.php.net/manual/en/yaf-application.execute.php * * @param callable $entry a valid callback * @param string $_ parameters will pass to the callback @@ -145,7 +145,7 @@ final class Application /** * Retrieve the \Yaf\Application instance, alternatively, we also could use \Yaf\Dispatcher::getApplication(). * - * @link http://www.php.net/manual/en/yaf-application.app.php + * @link https://secure.php.net/manual/en/yaf-application.app.php * * @return \Yaf\Application|NULL an \Yaf\Application instance, if no \Yaf\Application initialized before, NULL will be returned. */ @@ -156,7 +156,7 @@ final class Application /** * Retrieve environ which was defined in yaf.environ which has a default value "product". * - * @link http://www.php.net/manual/en/yaf-application.environ.php + * @link https://secure.php.net/manual/en/yaf-application.environ.php * * @return string */ @@ -167,7 +167,7 @@ final class Application /** * Run a Bootstrap, all the methods defined in the Bootstrap and named with prefix "_init" will be called according to their declaration order, if the parameter bootstrap is not supplied, Yaf will look for a Bootstrap under application.directory. * - * @link http://www.php.net/manual/en/yaf-application.bootstrap.php + * @link https://secure.php.net/manual/en/yaf-application.bootstrap.php * * @param \Yaf\Bootstrap_Abstract $bootstrap A \Yaf\Bootstrap_Abstract instance * @return \Yaf\Application @@ -177,7 +177,7 @@ final class Application } /** - * @link http://www.php.net/manual/en/yaf-application.getconfig.php + * @link https://secure.php.net/manual/en/yaf-application.getconfig.php * * @return \Yaf\Config_Abstract */ @@ -188,7 +188,7 @@ final class Application /** * Get the modules list defined in config, if no one defined, there will always be a module named "Index". * - * @link http://www.php.net/manual/en/yaf-application.getmodules.php + * @link https://secure.php.net/manual/en/yaf-application.getmodules.php * * @return array */ @@ -197,7 +197,7 @@ final class Application } /** - * @link http://www.php.net/manual/en/yaf-application.getdispatcher.php + * @link https://secure.php.net/manual/en/yaf-application.getdispatcher.php * * @return \Yaf\Dispatcher */ @@ -209,7 +209,7 @@ final class Application * Change the application directory * * @since 2.1.4 - * @link http://www.php.net/manual/en/yaf-application.setappdirectory.php + * @link https://secure.php.net/manual/en/yaf-application.setappdirectory.php * * @param string $directory * @return \Yaf\Application @@ -220,7 +220,7 @@ final class Application /** * @since 2.1.4 - * @link http://www.php.net/manual/en/yaf-application.getappdirectory.php + * @link https://secure.php.net/manual/en/yaf-application.getappdirectory.php * * @return string */ @@ -230,7 +230,7 @@ final class Application /** * @since 2.1.2 - * @link http://www.php.net/manual/en/yaf-application.getlasterrorno.php + * @link https://secure.php.net/manual/en/yaf-application.getlasterrorno.php * * @return int */ @@ -240,7 +240,7 @@ final class Application /** * @since 2.1.2 - * @link http://www.php.net/manual/en/yaf-application.getlasterrormsg.php + * @link https://secure.php.net/manual/en/yaf-application.getlasterrormsg.php * * @return string */ @@ -251,7 +251,7 @@ final class Application /** * * @since 2.1.2 - * @link http://www.php.net/manual/en/yaf-application.clearlasterror.php + * @link https://secure.php.net/manual/en/yaf-application.clearlasterror.php */ public function clearLastError() { @@ -259,7 +259,7 @@ final class Application /** * - * @link http://www.php.net/manual/en/yaf-application.destruct.php + * @link https://secure.php.net/manual/en/yaf-application.destruct.php */ public function __destruct() { @@ -267,7 +267,7 @@ final class Application /** * - * @link http://www.php.net/manual/en/yaf-application.clone.php + * @link https://secure.php.net/manual/en/yaf-application.clone.php */ private function __clone() { @@ -275,7 +275,7 @@ final class Application /** * - * @link http://www.php.net/manual/en/yaf-application.sleep.php + * @link https://secure.php.net/manual/en/yaf-application.sleep.php */ private function __sleep() { @@ -283,7 +283,7 @@ final class Application /** * - * @link http://www.php.net/manual/en/yaf-application.wakeup.php + * @link https://secure.php.net/manual/en/yaf-application.wakeup.php */ private function __wakeup() { @@ -292,7 +292,7 @@ final class Application *

                \Yaf\Dispatcher purpose is to initialize the request environment, route the incoming request, and then dispatch any discovered actions; it aggregates any responses and returns them when the process is complete.


                *

                \Yaf\Dispatcher also implements the Singleton pattern, meaning only a single instance of it may be available at any given time. This allows it to also act as a registry on which the other objects in the dispatch process may draw.

                * - * @link http://www.php.net/manual/en/class.yaf-dispatcher.php + * @link https://secure.php.net/manual/en/class.yaf-dispatcher.php */ final class Dispatcher { @@ -343,28 +343,28 @@ final class Dispatcher protected $_default_action; /** - * @link http://www.php.net/manual/en/yaf-dispatcher.construct.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.construct.php */ private function __construct() { } /** - * @link http://www.php.net/manual/en/yaf-dispatcher.clone.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.clone.php */ private function __clone() { } /** - * @link http://www.php.net/manual/en/yaf-dispatcher.sleep.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.sleep.php */ private function __sleep() { } /** - * @link http://www.php.net/manual/en/yaf-dispatcher.wakeup.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.wakeup.php */ private function __wakeup() { @@ -373,7 +373,7 @@ final class Dispatcher /** * enable view rendering * - * @link http://www.php.net/manual/en/yaf-dispatcher.enableview.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.enableview.php * * @return \Yaf\Dispatcher */ @@ -386,7 +386,7 @@ final class Dispatcher * Note: *

                you can simply return FALSE in a action to prevent the auto-rendering of that action

                * - * @link http://www.php.net/manual/en/yaf-dispatcher.disableview.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.disableview.php * * @return bool */ @@ -397,7 +397,7 @@ final class Dispatcher /** * Initialize view and return it * - * @link http://www.php.net/manual/en/yaf-dispatcher.initview.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.initview.php * * @param string $templates_dir * @param array $options @@ -410,7 +410,7 @@ final class Dispatcher /** * This method provides a solution for that if you want use a custom view engine instead of \Yaf\View\Simple * - * @link http://www.php.net/manual/en/yaf-dispatcher.setview.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.setview.php * * @param \Yaf\View_Interface $view A \Yaf\View_Interface instance * @return \Yaf\Dispatcher @@ -421,7 +421,7 @@ final class Dispatcher /** * - * @link http://www.php.net/manual/en/yaf-dispatcher.setrequest.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.setrequest.php * * @param \Yaf\Request_Abstract $request * @return \Yaf\Dispatcher @@ -433,7 +433,7 @@ final class Dispatcher /** * Retrieve the \Yaf\Application instance. same as \Yaf\Application::app(). * - * @link http://www.php.net/manual/en/yaf-dispatcher.getapplication.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.getapplication.php * @return \Yaf\Application */ public function getApplication() @@ -441,7 +441,7 @@ final class Dispatcher } /** - * @link http://www.php.net/manual/en/yaf-dispatcher.getrouter.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.getrouter.php * * @return \Yaf\Router */ @@ -450,7 +450,7 @@ final class Dispatcher } /** - * @link http://www.php.net/manual/en/yaf-dispatcher.getrequest.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.getrequest.php * * @return \Yaf\Request_Abstract */ @@ -462,7 +462,7 @@ final class Dispatcher *

                Set error handler for Yaf. when application.dispatcher.throwException is off, Yaf will trigger catch-able error while unexpected errors occurred.


                *

                Thus, this error handler will be called while the error raise.

                * - * @link http://www.php.net/manual/en/yaf-dispatcher.seterrorhandler.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.seterrorhandler.php * * @param callable $callback a callable callback * @param int $error_types YAF_ERR_* constants mask @@ -476,7 +476,7 @@ final class Dispatcher /** * Change default module name * - * @link http://www.php.net/manual/en/yaf-dispatcher.setdefaultmodule.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.setdefaultmodule.php * * @param string $module * @return \Yaf\Dispatcher @@ -488,7 +488,7 @@ final class Dispatcher /** * Change default controller name * - * @link http://www.php.net/manual/en/yaf-dispatcher.setdefaultcontroller.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.setdefaultcontroller.php * * @param string $controller * @return \Yaf\Dispatcher @@ -500,7 +500,7 @@ final class Dispatcher /** * Change default action name * - * @link http://www.php.net/manual/en/yaf-dispatcher.setdefaultaction.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.setdefaultaction.php * * @param string $action * @return \Yaf\Dispatcher @@ -510,7 +510,7 @@ final class Dispatcher } /** - * @link http://www.php.net/manual/en/yaf-dispatcher.returnresponse.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.returnresponse.php * * @param bool $flag * @return \Yaf\Dispatcher @@ -524,7 +524,7 @@ final class Dispatcher * Note: *

                you can simply return FALSE in a action to prevent the auto-rendering of that action

                * - * @link http://www.php.net/manual/en/yaf-dispatcher.autorender.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.autorender.php * * @param bool $flag since 2.2.0, if this parameter is not given, then the current state will be set * @return \Yaf\Dispatcher @@ -536,7 +536,7 @@ final class Dispatcher /** * Switch on/off the instant flushing * - * @link http://www.php.net/manual/en/yaf-dispatcher.flushinstantly.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.flushinstantly.php * * @param bool $flag since 2.2.0, if this parameter is not given, then the current state will be set * @return \Yaf\Dispatcher @@ -546,7 +546,7 @@ final class Dispatcher } /** - * @link http://www.php.net/manual/en/yaf-dispatcher.getinstance.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.getinstance.php * * @return \Yaf\Dispatcher */ @@ -564,7 +564,7 @@ final class Dispatcher *
              *

              Routing takes place exactly once, using the values in the request object when dispatch() is called. Dispatching takes place in a loop; a request may either indicate multiple actions to dispatch, or the controller or a plugin may reset the request object to force additional actions to dispatch(see \Yaf\Plugin_Abstract. When all is done, the \Yaf\Dispatcher returns a response.

              * - * @link http://www.php.net/manual/en/yaf-dispatcher.dispatch.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.dispatch.php * * @param \Yaf\Request_Abstract $request * @@ -585,7 +585,7 @@ final class Dispatcher *

              Switch on/off exception throwing while unexpected error occurring. When this is on, Yaf will throwing exceptions instead of triggering catchable errors.


              *

              You can also use application.dispatcher.throwException to achieve the same purpose.

              * - * @link http://www.php.net/manual/en/yaf-dispatcher.throwexception.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.throwexception.php * * @param bool $flag * @return \Yaf\Dispatcher @@ -598,7 +598,7 @@ final class Dispatcher *

              While the application.dispatcher.throwException is On(you can also calling to \Yaf\Dispatcher::throwException(TRUE) to enable it), Yaf will throw \Exception whe error occurs instead of trigger error.


              *

              then if you enable \Yaf\Dispatcher::catchException()(also can enabled by set application.dispatcher.catchException), all uncaught \Exceptions will be caught by ErrorController::error if you have defined one.

              * - * @link http://www.php.net/manual/en/yaf-dispatcher.catchexception.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.catchexception.php * * @param bool $flag * @return \Yaf\Dispatcher @@ -610,7 +610,7 @@ final class Dispatcher /** * Register a plugin(see \Yaf\Plugin_Abstract). Generally, we register plugins in Bootstrap(see \Yaf\Bootstrap_Abstract). * - * @link http://www.php.net/manual/en/yaf-dispatcher.registerplugin.php + * @link https://secure.php.net/manual/en/yaf-dispatcher.registerplugin.php * * @param \Yaf\Plugin_Abstract $plugin * @return \Yaf\Dispatcher @@ -629,7 +629,7 @@ final class Dispatcher *

              Please keep yaf.use_spl_autoload Off unless there is some library have their own autoload mechanism and impossible to rewrite it.

              *
              *

              If you want \Yaf\Loader search some classes(libraries) in the local class directory(which is defined in application.ini, and by default, it is application.directory . "/library"), you should register the class prefix using the \Yaf\Loader::registerLocalNameSpace()

              - * @link http://www.php.net/manual/en/class.yaf-loader.php + * @link https://secure.php.net/manual/en/class.yaf-loader.php * */ class Loader @@ -654,35 +654,35 @@ class Loader protected static $_instance; /** - * @link http://www.php.net/manual/en/yaf-loader.construct.php + * @link https://secure.php.net/manual/en/yaf-loader.construct.php */ private function __construct() { } /** - * @link http://www.php.net/manual/en/yaf-loader.clone.php + * @link https://secure.php.net/manual/en/yaf-loader.clone.php */ private function __clone() { } /** - * @link http://www.php.net/manual/en/yaf-loader.sleep.php + * @link https://secure.php.net/manual/en/yaf-loader.sleep.php */ private function __sleep() { } /** - * @link http://www.php.net/manual/en/yaf-loader.wakeup.php + * @link https://secure.php.net/manual/en/yaf-loader.wakeup.php */ private function __wakeup() { } /** - * @link http://www.php.net/manual/en/yaf-loader.autoload.php + * @link https://secure.php.net/manual/en/yaf-loader.autoload.php * * @param string $class_name * @@ -693,7 +693,7 @@ class Loader } /** - * @link http://www.php.net/manual/en/yaf-loader.getinstance.php + * @link https://secure.php.net/manual/en/yaf-loader.getinstance.php * * @param string $local_library_path * @param string $global_library_path @@ -711,7 +711,7 @@ class Loader *
              * Note: *

              If yaf.library is not configured, then the global library directory is assumed to be the local library directory. in that case, all autoloading will look for local library directory. But if you want your Yaf application be strong, then always register your own classes as local classes.

              - * @link http://www.php.net/manual/en/yaf-loader.registerlocalnamespace.php + * @link https://secure.php.net/manual/en/yaf-loader.registerlocalnamespace.php * * @param string|string[] $name_prefix a string or a array of class name prefix. all class prefix with these prefix will be loaded in local library path. * @@ -722,7 +722,7 @@ class Loader } /** - * @link http://www.php.net/manual/en/yaf-loader.getlocalnamespace.php + * @link https://secure.php.net/manual/en/yaf-loader.getlocalnamespace.php * * @return string */ @@ -731,14 +731,14 @@ class Loader } /** - * @link http://www.php.net/manual/en/yaf-loader.clearlocalnamespace.php + * @link https://secure.php.net/manual/en/yaf-loader.clearlocalnamespace.php */ public function clearLocalNamespace() { } /** - * @link http://www.php.net/manual/en/yaf-loader.islocalname.php + * @link https://secure.php.net/manual/en/yaf-loader.islocalname.php * * @param string $class_name * @@ -749,7 +749,7 @@ class Loader } /** - * @link http://www.php.net/manual/en/yaf-loader.import.php + * @link https://secure.php.net/manual/en/yaf-loader.import.php * * @param string $file * @@ -761,7 +761,7 @@ class Loader /** * @since 2.1.4 - * @link http://www.php.net/manual/en/yaf-loader.setlibrarypath.php + * @link https://secure.php.net/manual/en/yaf-loader.setlibrarypath.php * * @param string $directory * @param bool $global @@ -774,7 +774,7 @@ class Loader /** * @since 2.1.4 - * @link http://www.php.net/manual/en/yaf-loader.getlibrarypath.php + * @link https://secure.php.net/manual/en/yaf-loader.getlibrarypath.php * * @param bool $is_global * @@ -785,7 +785,7 @@ class Loader } }/** *

              All methods of \Yaf\Registry declared as static, making it universally accessible. This provides the ability to get or set any custom data from anyway in your code as necessary.

              - * @link http://www.php.net/manual/en/class.yaf-registry.php + * @link https://secure.php.net/manual/en/class.yaf-registry.php */ final class Registry { @@ -800,14 +800,14 @@ final class Registry protected $_entries; /** - * @link http://www.php.net/manual/en/yaf-registry.construct.php + * @link https://secure.php.net/manual/en/yaf-registry.construct.php */ private function __construct() { } /** - * @link http://www.php.net/manual/en/yaf-registry.clone.php + * @link https://secure.php.net/manual/en/yaf-registry.clone.php */ private function __clone() { @@ -816,7 +816,7 @@ final class Registry /** * Retrieve an item from registry * - * @link http://www.php.net/manual/en/yaf-registry.get.php + * @link https://secure.php.net/manual/en/yaf-registry.get.php * * @param string $name * @@ -829,7 +829,7 @@ final class Registry /** * Check whether an item exists * - * @link http://www.php.net/manual/en/yaf-registry.has.php + * @link https://secure.php.net/manual/en/yaf-registry.has.php * * @param string $name * @@ -840,7 +840,7 @@ final class Registry } /** - * @link http://www.php.net/manual/en/yaf-registry.set.php + * @link https://secure.php.net/manual/en/yaf-registry.set.php * * @param string $name * @param mixed $value @@ -852,7 +852,7 @@ final class Registry } /** - * @link http://www.php.net/manual/en/yaf-registry.del.php + * @link https://secure.php.net/manual/en/yaf-registry.del.php * * @param string $name * @@ -862,7 +862,7 @@ final class Registry { } }/** - * @link http://www.php.net/manual/en/class.yaf-session.php + * @link https://secure.php.net/manual/en/class.yaf-session.php * @version 2.2.9 */ final class Session implements \Iterator, \Traversable, \ArrayAccess, \Countable @@ -882,35 +882,35 @@ final class Session implements \Iterator, \Traversable, \ArrayAccess, \Countable protected $_started = true; /** - * @link http://www.php.net/manual/en/yaf-session.construct.php + * @link https://secure.php.net/manual/en/yaf-session.construct.php */ private function __construct() { } /** - * @link http://www.php.net/manual/en/yaf-session.clone.php + * @link https://secure.php.net/manual/en/yaf-session.clone.php */ private function __clone() { } /** - * @link http://www.php.net/manual/en/yaf-session.sleep.php + * @link https://secure.php.net/manual/en/yaf-session.sleep.php */ private function __sleep() { } /** - * @link http://www.php.net/manual/en/yaf-session.wakeup.php + * @link https://secure.php.net/manual/en/yaf-session.wakeup.php */ private function __wakeup() { } /** - * @link http://www.php.net/manual/en/yaf-session.getinstance.php + * @link https://secure.php.net/manual/en/yaf-session.getinstance.php * * @return \Yaf\Session */ @@ -919,7 +919,7 @@ final class Session implements \Iterator, \Traversable, \ArrayAccess, \Countable } /** - * @link http://www.php.net/manual/en/yaf-session.start.php + * @link https://secure.php.net/manual/en/yaf-session.start.php * * @return \Yaf\Session */ @@ -928,7 +928,7 @@ final class Session implements \Iterator, \Traversable, \ArrayAccess, \Countable } /** - * @link http://www.php.net/manual/en/yaf-session.get.php + * @link https://secure.php.net/manual/en/yaf-session.get.php * * @param string $name * @@ -939,7 +939,7 @@ final class Session implements \Iterator, \Traversable, \ArrayAccess, \Countable } /** - * @link http://www.php.net/manual/en/yaf-session.has.php + * @link https://secure.php.net/manual/en/yaf-session.has.php * * @param string $name * @@ -950,7 +950,7 @@ final class Session implements \Iterator, \Traversable, \ArrayAccess, \Countable } /** - * @link http://www.php.net/manual/en/yaf-session.set.php + * @link https://secure.php.net/manual/en/yaf-session.set.php * * @param string $name * @param mixed $value @@ -962,7 +962,7 @@ final class Session implements \Iterator, \Traversable, \ArrayAccess, \Countable } /** - * @link http://www.php.net/manual/en/yaf-session.del.php + * @link https://secure.php.net/manual/en/yaf-session.del.php * * @param string $name * @@ -1080,7 +1080,7 @@ final class Session implements \Iterator, \Traversable, \ArrayAccess, \Countable *

              Module name must be defined in config, considering application.module="Index,Foo,Bar", in this case, only index, foo and bar can be considered as a module name. if doesn't config, there is only one module named "Index".

              *
              *

              ** See examples by opening the external documentation

              - * @link http://www.php.net/manual/en/class.yaf-router.php + * @link https://secure.php.net/manual/en/class.yaf-router.php */ class Router { @@ -1095,7 +1095,7 @@ class Router protected $_current; /** - * @link http://www.php.net/manual/en/yaf-router.construct.php + * @link https://secure.php.net/manual/en/yaf-router.construct.php */ public function __construct() { @@ -1106,7 +1106,7 @@ class Router *
              *

              the newer route will be called before the older(route stack), and if the newer router return TRUE, the router process will be end. otherwise, the older one will be called.

              * - * @link http://www.php.net/manual/en/yaf-router.addroute.php + * @link https://secure.php.net/manual/en/yaf-router.addroute.php * * @param string $name * @param \Yaf\Route_Interface $route @@ -1120,7 +1120,7 @@ class Router /** *

              Add routes defined by configs into \Yaf\Router's route stack

              * - * @link http://www.php.net/manual/en/yaf-router.addconfig.php + * @link https://secure.php.net/manual/en/yaf-router.addconfig.php * * @param \Yaf\Config_Abstract $config * @@ -1131,7 +1131,7 @@ class Router } /** - * @link http://www.php.net/manual/en/yaf-router.route.php + * @link https://secure.php.net/manual/en/yaf-router.route.php * * @param \Yaf\Request_Abstract $request * @@ -1144,7 +1144,7 @@ class Router /** *

              Retrieve a route by name, see also \Yaf\Router::getCurrentRoute()

              * - * @link http://www.php.net/manual/en/yaf-router.getroute.php + * @link https://secure.php.net/manual/en/yaf-router.getroute.php * * @param string $name * @@ -1155,7 +1155,7 @@ class Router } /** - * @link http://www.php.net/manual/en/yaf-router.getroutes.php + * @link https://secure.php.net/manual/en/yaf-router.getroutes.php * * @return \Yaf\Route_Interface[] */ @@ -1169,7 +1169,7 @@ class Router * Note: *

              You should call this method after the route process finished, since before that, this method will always return NULL.

              * - * @link http://www.php.net/manual/en/yaf-router.getcurrentroute.php + * @link https://secure.php.net/manual/en/yaf-router.getcurrentroute.php * * @return string the name of the effective route. */ @@ -1181,7 +1181,7 @@ class Router *

              User may define their own Bootstrap class by inheriting \Yaf\Bootstrap_Abstract

              *

              Any method declared in Bootstrap class with leading "_init", will be called by \Yaf\Application::bootstrap() one by one according to their defined order

              * - * @link http://www.php.net/manual/en/class.yaf-bootstrap-abstract.php + * @link https://secure.php.net/manual/en/class.yaf-bootstrap-abstract.php */ abstract class Bootstrap_Abstract { @@ -1199,7 +1199,7 @@ abstract class Bootstrap_Abstract * Note: *

              These arguments are directly fetched without filtering, it should be carefully processed before use them.

              * - * @link http://www.php.net/manual/en/class.yaf-controller-abstract.php + * @link https://secure.php.net/manual/en/class.yaf-controller-abstract.php */ abstract class Controller_Abstract { @@ -1235,7 +1235,7 @@ abstract class Controller_Abstract protected $_view; /** - * @link http://www.php.net/manual/en/yaf-controller-abstract.render.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.render.php * * @param string $tpl * @param array $parameters @@ -1247,7 +1247,7 @@ abstract class Controller_Abstract } /** - * @link http://www.php.net/manual/en/yaf-controller-abstract.display.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.display.php * * @param string $tpl * @param array $parameters @@ -1261,7 +1261,7 @@ abstract class Controller_Abstract /** * retrieve current request object * - * @link http://www.php.net/manual/en/yaf-controller-abstract.getrequest.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.getrequest.php * * @return \Yaf\Request_Abstract */ @@ -1272,7 +1272,7 @@ abstract class Controller_Abstract /** * retrieve current response object * - * @link http://www.php.net/manual/en/yaf-controller-abstract.getresponse.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.getresponse.php * * @return \Yaf\Response_Abstract */ @@ -1283,7 +1283,7 @@ abstract class Controller_Abstract /** * get the controller's module name * - * @link http://www.php.net/manual/en/yaf-controller-abstract.getmodulename.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.getmodulename.php * * @return string */ @@ -1294,7 +1294,7 @@ abstract class Controller_Abstract /** * retrieve view engine * - * @link http://www.php.net/manual/en/yaf-controller-abstract.getview.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.getview.php * * @return \Yaf\View_Interface */ @@ -1304,7 +1304,7 @@ abstract class Controller_Abstract /** * @deprecated not_implemented - * @link http://www.php.net/manual/en/yaf-controller-abstract.initview.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.initview.php * * @param array $options * @@ -1315,7 +1315,7 @@ abstract class Controller_Abstract } /** - * @link http://www.php.net/manual/en/yaf-controller-abstract.setviewpath.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.setviewpath.php * * @param string $view_directory * @@ -1326,7 +1326,7 @@ abstract class Controller_Abstract } /** - * @link http://www.php.net/manual/en/yaf-controller-abstract.getviewpath.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.getviewpath.php * * @return string */ @@ -1345,7 +1345,7 @@ abstract class Controller_Abstract *

              \Yaf\Controller_Abstract::forward ( string $controller , string $action [, array $parameters ] )

              *

              \Yaf\Controller_Abstract::forward ( string $action [, array $parameters ] )

              * - * @link http://www.php.net/manual/en/yaf-controller-abstract.forward.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.forward.php * * @param string $module destination module name, if NULL was given, then default module name is assumed * @param string $controller destination controller name @@ -1361,7 +1361,7 @@ abstract class Controller_Abstract /** * redirect to a URL by sending a 302 header * - * @link http://www.php.net/manual/en/yaf-controller-abstract.redirect.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.redirect.php * * @param string $url a location URL * @@ -1372,7 +1372,7 @@ abstract class Controller_Abstract } /** - * @link http://www.php.net/manual/en/yaf-controller-abstract.getinvokeargs.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.getinvokeargs.php * * @return array */ @@ -1381,7 +1381,7 @@ abstract class Controller_Abstract } /** - * @link http://www.php.net/manual/en/yaf-controller-abstract.getinvokearg.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.getinvokearg.php * @param string $name * * @return null|mixed @@ -1393,7 +1393,7 @@ abstract class Controller_Abstract /** *

              \Yaf\Controller_Abstract::__construct() is final, which means users can not override it. but users can define \Yaf\Controller_Abstract::init(), which will be called after controller object is instantiated.

              * - * @link http://www.php.net/manual/en/yaf-controller-abstract.init.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.init.php * */ public function init() @@ -1404,7 +1404,7 @@ abstract class Controller_Abstract * \Yaf\Controller_Abstract::__construct() is final, which means it can not be overridden. You may want to see \Yaf\Controller_Abstract::init() instead. * * @see \Yaf\Controller_Abstract::init() - * @link http://www.php.net/manual/en/yaf-controller-abstract.construct.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.construct.php * * @param \Yaf\Request_Abstract $request * @param \Yaf\Response_Abstract $response @@ -1416,7 +1416,7 @@ abstract class Controller_Abstract } /** - * @link http://www.php.net/manual/en/yaf-controller-abstract.clone.php + * @link https://secure.php.net/manual/en/yaf-controller-abstract.clone.php */ final private function __clone() { @@ -1426,7 +1426,7 @@ abstract class Controller_Abstract *
              *

              Since there should be a entry point which can be called by Yaf (as of PHP 5.3, there is a new magic method __invoke, but Yaf is not only works with PHP 5.3+, Yaf choose another magic method execute), you must implement the abstract method \Yaf\Action_Abstract::execute() in your custom action class.

              * - * @link http://www.php.net/manual/en/class.yaf-action-abstract.php + * @link https://secure.php.net/manual/en/class.yaf-action-abstract.php * */ abstract class Action_Abstract extends \Yaf\Controller_Abstract @@ -1442,7 +1442,7 @@ abstract class Action_Abstract extends \Yaf\Controller_Abstract *
              * Note: *

              The value retrieved from the request is not safe. you should do some filtering work before you use it.

              - * @link http://www.php.net/manual/en/yaf-action-abstract.execute.php + * @link https://secure.php.net/manual/en/yaf-action-abstract.execute.php * * @param mixed ... unlimited number of arguments * @return mixed @@ -1452,7 +1452,7 @@ abstract class Action_Abstract extends \Yaf\Controller_Abstract /** * retrieve current controller object. * - * @link http://www.php.net/manual/en/yaf-action-abstract.getcontroller.php + * @link https://secure.php.net/manual/en/yaf-action-abstract.getcontroller.php * * @return \Yaf\Controller_Abstract */ @@ -1460,7 +1460,7 @@ abstract class Action_Abstract extends \Yaf\Controller_Abstract { } }/** - * @link http://www.php.net/manual/en/class.yaf-config-abstract.php + * @link https://secure.php.net/manual/en/class.yaf-config-abstract.php */ abstract class Config_Abstract { @@ -1475,7 +1475,7 @@ abstract class Config_Abstract protected $_readonly = true; /** - * @link http://www.php.net/manual/en/yaf-config-abstract.get.php + * @link https://secure.php.net/manual/en/yaf-config-abstract.get.php * * @param string $name * @return mixed @@ -1483,7 +1483,7 @@ abstract class Config_Abstract abstract public function get($name = null); /** - * @link http://www.php.net/manual/en/yaf-config-abstract.set.php + * @link https://secure.php.net/manual/en/yaf-config-abstract.set.php * * @param string $name * @param mixed $value @@ -1492,20 +1492,20 @@ abstract class Config_Abstract abstract public function set($name, $value); /** - * @link http://www.php.net/manual/en/yaf-config-abstract.readonly.php + * @link https://secure.php.net/manual/en/yaf-config-abstract.readonly.php * * @return bool */ abstract public function readonly(); /** - * @link http://www.php.net/manual/en/yaf-config-abstract.toarray.php + * @link https://secure.php.net/manual/en/yaf-config-abstract.toarray.php * * @return array */ abstract public function toArray(); }/** - * @link http://www.php.net/manual/en/class.yaf-request-abstract.php + * @link https://secure.php.net/manual/en/class.yaf-request-abstract.php */ abstract class Request_Abstract { @@ -1557,7 +1557,7 @@ abstract class Request_Abstract protected $routed = ""; /** - * @link http://www.php.net/manual/en/yaf-request-abstract.isget.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.isget.php * * @return bool */ @@ -1566,7 +1566,7 @@ abstract class Request_Abstract } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.ispost.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.ispost.php * * @return bool */ @@ -1575,7 +1575,7 @@ abstract class Request_Abstract } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.isput.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.isput.php * * @return bool */ @@ -1584,7 +1584,7 @@ abstract class Request_Abstract } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.ishead.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.ishead.php * * @return bool */ @@ -1593,7 +1593,7 @@ abstract class Request_Abstract } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.isoptions.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.isoptions.php * * @return bool */ @@ -1602,7 +1602,7 @@ abstract class Request_Abstract } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.iscli.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.iscli.php * * @return bool */ @@ -1611,7 +1611,7 @@ abstract class Request_Abstract } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.isdispached.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.isdispached.php * * @return bool */ @@ -1620,7 +1620,7 @@ abstract class Request_Abstract } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.isrouted.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.isrouted.php * * @return bool */ @@ -1630,7 +1630,7 @@ abstract class Request_Abstract /** * - * @link http://www.php.net/manual/en/yaf-request-abstract.isxmlhttprequest.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.isxmlhttprequest.php * * @return bool false */ @@ -1641,7 +1641,7 @@ abstract class Request_Abstract /** * Retrieve $_SERVER variable * - * @link http://www.php.net/manual/en/yaf-request-abstract.getserver.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getserver.php * * @param string $name the variable name, if not provided returns all * @param mixed $default if this parameter is provide, this will be returned if the variable can not be found @@ -1655,7 +1655,7 @@ abstract class Request_Abstract /** * Retrieve $_ENV variable * - * @link http://www.php.net/manual/en/yaf-request-abstract.getenv.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getenv.php * * @param string $name the variable name, if not provided returns all * @param mixed $default if this parameter is provide, this will be returned if the variable can not be found @@ -1668,7 +1668,7 @@ abstract class Request_Abstract /** * - * @link http://www.php.net/manual/en/yaf-request-abstract.getparam.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getparam.php * * @param string $name * @param mixed $default @@ -1681,7 +1681,7 @@ abstract class Request_Abstract /** * - * @link http://www.php.net/manual/en/yaf-request-abstract.getparams.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getparams.php * * @return array */ @@ -1690,7 +1690,7 @@ abstract class Request_Abstract } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.getexception.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getexception.php * * @return \Yaf\Exception */ @@ -1699,7 +1699,7 @@ abstract class Request_Abstract } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.getmoudlename.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getmoudlename.php * * @return string */ @@ -1708,7 +1708,7 @@ abstract class Request_Abstract } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.getcontrollername.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getcontrollername.php * * @return string */ @@ -1717,7 +1717,7 @@ abstract class Request_Abstract } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.getactionname.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getactionname.php * * @return string */ @@ -1726,7 +1726,7 @@ abstract class Request_Abstract } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.setparam.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.setparam.php * * @param string|array $name the variable name, or an array of key=>value pairs * @param string $value @@ -1738,7 +1738,7 @@ abstract class Request_Abstract } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.setmodulename.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.setmodulename.php * * @param string $module * @@ -1749,7 +1749,7 @@ abstract class Request_Abstract } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.setcontrollername.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.setcontrollername.php * * @param string $controller * @@ -1760,7 +1760,7 @@ abstract class Request_Abstract } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.setactionname.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.setactionname.php * * @param string $action * @@ -1771,7 +1771,7 @@ abstract class Request_Abstract } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.getmethod.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getmethod.php * * @return string */ @@ -1780,7 +1780,7 @@ abstract class Request_Abstract } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.getlanguage.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getlanguage.php * * @return string */ @@ -1794,7 +1794,7 @@ abstract class Request_Abstract * Note: *

              generally, you don't need to set this, Yaf will determine it automatically.

              * - * @link http://www.php.net/manual/en/yaf-request-abstract.setbaseuri.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.setbaseuri.php * * @param string $uri base URI * @@ -1805,7 +1805,7 @@ abstract class Request_Abstract } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.getbaseuri.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getbaseuri.php * * @return string */ @@ -1814,7 +1814,7 @@ abstract class Request_Abstract } /** - * @link http://www.php.net/manual/en/yaf-request-abstract.getrequesturi.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.getrequesturi.php * * @return string */ @@ -1824,7 +1824,7 @@ abstract class Request_Abstract /** * @since 2.1.0 - * @link http://www.php.net/manual/en/yaf-request-abstract.setrequesturi.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.setrequesturi.php * * @param string $uri request URI */ @@ -1835,7 +1835,7 @@ abstract class Request_Abstract /** * Set request as dispatched * - * @link http://www.php.net/manual/en/yaf-request-abstract.setdispatched.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.setdispatched.php * * @return bool */ @@ -1846,7 +1846,7 @@ abstract class Request_Abstract /** * Set request as routed * - * @link http://www.php.net/manual/en/yaf-request-abstract.setrouted.php + * @link https://secure.php.net/manual/en/yaf-request-abstract.setrouted.php * * @return \Yaf\Request_Abstract|bool */ @@ -1859,7 +1859,7 @@ abstract class Request_Abstract *

              Plugins are classes. The actual class definition will vary based on the component -- you may need to implement this interface, but the fact remains that the plugin is itself a class.

              *
              *

              A plugin could be loaded into Yaf by using \Yaf\Dispatcher::registerPlugin(), after registered, All the methods which the plugin implemented according to this interface, will be called at the proper time.

              - * @link http://www.php.net/manual/en/class.yaf-plugin-abstract.php + * @link https://secure.php.net/manual/en/class.yaf-plugin-abstract.php */ abstract class Plugin_Abstract { @@ -1867,7 +1867,7 @@ abstract class Plugin_Abstract /** * This is the earliest hook in Yaf plugin hook system, if a custom plugin implement this method, then it will be called before routing a request. * - * @link http://www.php.net/manual/en/yaf-plugin-abstract.routerstartup.php + * @link https://secure.php.net/manual/en/yaf-plugin-abstract.routerstartup.php * * @param \Yaf\Request_Abstract $request * @param \Yaf\Response_Abstract $response @@ -1881,7 +1881,7 @@ abstract class Plugin_Abstract /** * This hook will be trigged after the route process finished, this hook is usually used for login check. * - * @link http://www.php.net/manual/en/yaf-plugin-abstract.routershutdown.php + * @link https://secure.php.net/manual/en/yaf-plugin-abstract.routershutdown.php * * @param \Yaf\Request_Abstract $request * @param \Yaf\Response_Abstract $response @@ -1893,7 +1893,7 @@ abstract class Plugin_Abstract } /** - * @link http://www.php.net/manual/en/yaf-plugin-abstract.dispatchloopstartup.php + * @link https://secure.php.net/manual/en/yaf-plugin-abstract.dispatchloopstartup.php * * @param \Yaf\Request_Abstract $request * @param \Yaf\Response_Abstract $response @@ -1907,7 +1907,7 @@ abstract class Plugin_Abstract /** * This is the latest hook in Yaf plugin hook system, if a custom plugin implement this method, then it will be called after the dispatch loop finished. * - * @link http://www.php.net/manual/en/yaf-plugin-abstract.dispatchloopshutdown.php + * @link https://secure.php.net/manual/en/yaf-plugin-abstract.dispatchloopshutdown.php * * @param \Yaf\Request_Abstract $request * @param \Yaf\Response_Abstract $response @@ -1919,7 +1919,7 @@ abstract class Plugin_Abstract } /** - * @link http://www.php.net/manual/en/yaf-plugin-abstract.predispatch.php + * @link https://secure.php.net/manual/en/yaf-plugin-abstract.predispatch.php * * @param \Yaf\Request_Abstract $request * @param \Yaf\Response_Abstract $response @@ -1931,7 +1931,7 @@ abstract class Plugin_Abstract } /** - * @link http://www.php.net/manual/en/yaf-plugin-abstract.postdispatch.php + * @link https://secure.php.net/manual/en/yaf-plugin-abstract.postdispatch.php * * @param \Yaf\Request_Abstract $request * @param \Yaf\Response_Abstract $response @@ -1943,7 +1943,7 @@ abstract class Plugin_Abstract } /** - * @link http://www.php.net/manual/en/yaf-plugin-abstract.preresponse.php + * @link https://secure.php.net/manual/en/yaf-plugin-abstract.preresponse.php * * @param \Yaf\Request_Abstract $request * @param \Yaf\Response_Abstract $response @@ -1954,7 +1954,7 @@ abstract class Plugin_Abstract { } }/** - * @link http://www.php.net/manual/en/class.yaf-response-abstract.php + * @link https://secure.php.net/manual/en/class.yaf-response-abstract.php */ abstract class Response_Abstract { @@ -1973,28 +1973,28 @@ abstract class Response_Abstract protected $_sendheader; /** - * @link http://www.php.net/manual/en/yaf-response-abstract.construct.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.construct.php */ public function __construct() { } /** - * @link http://www.php.net/manual/en/yaf-response-abstract.destruct.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.destruct.php */ public function __destruct() { } /** - * @link http://www.php.net/manual/en/yaf-response-abstract.clone.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.clone.php */ private function __clone() { } /** - * @link http://www.php.net/manual/en/yaf-response-abstract.tostring.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.tostring.php */ private function __toString() { @@ -2003,7 +2003,7 @@ abstract class Response_Abstract /** * Set content to response * - * @link http://www.php.net/manual/en/yaf-response-abstract.setbody.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.setbody.php * * @param string $content content string * @param string $key

              the content key, you can set a content with a key, if you don't specific, then \Yaf\Response_Abstract::DEFAULT_BODY will be used

              @@ -2020,7 +2020,7 @@ abstract class Response_Abstract /** * append a content to a exists content block * - * @link http://www.php.net/manual/en/yaf-response-abstract.appendbody.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.appendbody.php * * @param string $content content string * @param string $key

              the content key, you can set a content with a key, if you don't specific, then \Yaf\Response_Abstract::DEFAULT_BODY will be used

              @@ -2037,7 +2037,7 @@ abstract class Response_Abstract /** * prepend a content to a exists content block * - * @link http://www.php.net/manual/en/yaf-response-abstract.prependbody.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.prependbody.php * * @param string $content content string * @param string $key

              the content key, you can set a content with a key, if you don't specific, then \Yaf\Response_Abstract::DEFAULT_BODY will be used

              @@ -2054,7 +2054,7 @@ abstract class Response_Abstract /** * Clear existing content * - * @link http://www.php.net/manual/en/yaf-response-abstract.clearbody.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.clearbody.php * * @param string $key

              the content key, you can set a content with a key, if you don't specific, then \Yaf\Response_Abstract::DEFAULT_BODY will be used

              *
              @@ -2070,7 +2070,7 @@ abstract class Response_Abstract /** * Retrieve an existing content * - * @link http://www.php.net/manual/en/yaf-response-abstract.getbody.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.getbody.php * * @param null|string $key

              the content key, if you don't specific, then \Yaf\Response_Abstract::DEFAULT_BODY will be used. if you pass in a NULL, then all contents will be returned as a array

              *
              @@ -2085,7 +2085,7 @@ abstract class Response_Abstract }/** * Yaf provides a ability for developers to use custom view engine instead of build-in engine which is \Yaf\View\Simple. There is a example to explain how to do this, please see \Yaf\Dispatcher::setView() * - * @link http://www.php.net/manual/en/class.yaf-view-interface.php + * @link https://secure.php.net/manual/en/class.yaf-view-interface.php */ interface View_Interface { @@ -2093,7 +2093,7 @@ interface View_Interface /** * Assign values to View engine, then the value can access directly by name in template. * - * @link http://www.php.net/manual/en/yaf-view-interface.assign.php + * @link https://secure.php.net/manual/en/yaf-view-interface.assign.php * * @param string|array $name * @param mixed $value @@ -2104,7 +2104,7 @@ interface View_Interface /** * Render a template and output the result immediately. * - * @link http://www.php.net/manual/en/yaf-view-interface.display.php + * @link https://secure.php.net/manual/en/yaf-view-interface.display.php * * @param string $tpl * @param array $tpl_vars @@ -2113,7 +2113,7 @@ interface View_Interface public function display($tpl, array $tpl_vars = null); /** - * @link http://www.php.net/manual/en/yaf-view-interface.getscriptpath.php + * @link https://secure.php.net/manual/en/yaf-view-interface.getscriptpath.php * * @return string */ @@ -2122,7 +2122,7 @@ interface View_Interface /** * Render a template and return the result. * - * @link http://www.php.net/manual/en/yaf-view-interface.render.php + * @link https://secure.php.net/manual/en/yaf-view-interface.render.php * * @param string $tpl * @param array $tpl_vars @@ -2133,7 +2133,7 @@ interface View_Interface /** * Set the templates base directory, this is usually called by \Yaf\Dispatcher * - * @link http://www.php.net/manual/en/yaf-view-interface.setscriptpath.php + * @link https://secure.php.net/manual/en/yaf-view-interface.setscriptpath.php * * @param string $template_dir An absolute path to the template directory, by default, \Yaf\Dispatcher use application.directory . "/views" as this parameter. */ @@ -2141,7 +2141,7 @@ interface View_Interface }/** * \Yaf\Route_Interface used for developer defined their custom route. * - * @link http://www.php.net/manual/en/class.yaf-route-interface.php + * @link https://secure.php.net/manual/en/class.yaf-route-interface.php */ interface Route_Interface { @@ -2152,7 +2152,7 @@ interface Route_Interface *

              This method would set the route result to the parameter request, by calling \Yaf\Request_Abstract::setControllerName(), \Yaf\Request_Abstract::setActionName() and \Yaf\Request_Abstract::setModuleName().


              *

              This method should also call \Yaf\Request_Abstract::setRouted() to make the request routed at last.

              * - * @link http://www.php.net/manual/en/yaf-route-interface.route.php + * @link https://secure.php.net/manual/en/yaf-route-interface.route.php * * @param \Yaf\Request_Abstract $request * @return bool @@ -2164,7 +2164,7 @@ interface Route_Interface *

              this method returns a url according to the argument info, and append query strings to the url according to the argument query.

              *

              a route should implement this method according to its own route rules, and do a reverse progress.

              * - * @link http://www.php.net/manual/en/yaf-route-interface.assemble.php + * @link https://secure.php.net/manual/en/yaf-route-interface.assemble.php * * @param array $info * @param array $query @@ -2172,7 +2172,7 @@ interface Route_Interface */ public function assemble(array $info, array $query = null); }/** - * @link http://www.php.net/manual/en/class.yaf-exception.php + * @link https://secure.php.net/manual/en/class.yaf-exception.php */ class Exception extends \Exception { @@ -2184,7 +2184,7 @@ class Exception extends \Exception * Note: *

              it is unnecessary to instance a \Yaf\Route_Static, also unnecessary to add it into \Yaf\Router's routes stack, since there is always be one in \Yaf\Router's routes stack, and always be called at the last time.

              * - * @link http://www.php.net/manual/en/class.yaf-route-static.php + * @link https://secure.php.net/manual/en/class.yaf-route-static.php * */ class Route_Static implements \Yaf\Route_Interface @@ -2192,7 +2192,7 @@ class Route_Static implements \Yaf\Route_Interface /** * @deprecated not_implemented - * @link http://www.php.net/manual/en/yaf-route-static.match.php + * @link https://secure.php.net/manual/en/yaf-route-static.match.php * * @param string $uri * @@ -2203,7 +2203,7 @@ class Route_Static implements \Yaf\Route_Interface } /** - * @link http://www.php.net/manual/en/yaf-route-static.route.php + * @link https://secure.php.net/manual/en/yaf-route-static.route.php * * @param \Yaf\Request_Abstract $request * @@ -2216,7 +2216,7 @@ class Route_Static implements \Yaf\Route_Interface /** *

              \Yaf\Route_Static::assemble() - Assemble a url * - * @link http://www.php.net/manual/en/yaf-route-static.assemble.php + * @link https://secure.php.net/manual/en/yaf-route-static.assemble.php * * @param array $info * @param array $query @@ -2255,7 +2255,7 @@ class Http extends \Yaf\Response_Abstract } /** - * @link http://www.php.net/manual/en/yaf-response-abstract.setheader.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.setheader.php * * @param string $name * @param string $value @@ -2269,7 +2269,7 @@ class Http extends \Yaf\Response_Abstract } /** - * @link http://www.php.net/manual/en/yaf-response-abstract.setallheaders.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.setallheaders.php * * @param array $headers * @@ -2280,7 +2280,7 @@ class Http extends \Yaf\Response_Abstract } /** - * @link http://www.php.net/manual/en/yaf-response-abstract.getheader.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.getheader.php * * @param string $name * @@ -2291,7 +2291,7 @@ class Http extends \Yaf\Response_Abstract } /** - * @link http://www.php.net/manual/en/yaf-response-abstract.clearheaders.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.clearheaders.php * * @param string $name * @@ -2302,7 +2302,7 @@ class Http extends \Yaf\Response_Abstract } /** - * @link http://www.php.net/manual/en/yaf-response-abstract.setredirect.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.setredirect.php * * @param string $url * @@ -2315,7 +2315,7 @@ class Http extends \Yaf\Response_Abstract /** * send response * - * @link http://www.php.net/manual/en/yaf-response-abstract.response.php + * @link https://secure.php.net/manual/en/yaf-response-abstract.response.php * * @return bool */ @@ -2346,7 +2346,7 @@ namespace Yaf\Request { use Yaf\Request; /** - * @link http://www.php.net/manual/en/class.yaf-request-http.php + * @link https://secure.php.net/manual/en/class.yaf-request-http.php */ class Http extends \Yaf\Request_Abstract { @@ -2354,7 +2354,7 @@ class Http extends \Yaf\Request_Abstract /** * Retrieve $_GET variable * - * @link http://www.php.net/manual/en/yaf-request-http.getquery.php + * @link https://secure.php.net/manual/en/yaf-request-http.getquery.php * * @param string $name the variable name, if not provided returns all * @param mixed $default if this parameter is provide, this will be returned if the variable can not be found @@ -2368,7 +2368,7 @@ class Http extends \Yaf\Request_Abstract /** * Retrieve $_REQUEST variable * - * @link http://www.php.net/manual/en/yaf-request-http.getrequest.php + * @link https://secure.php.net/manual/en/yaf-request-http.getrequest.php * * @param string $name the variable name, if not provided returns all * @param mixed $default if this parameter is provide, this will be returned if the variable can not be found @@ -2382,7 +2382,7 @@ class Http extends \Yaf\Request_Abstract /** * Retrieve $_POST variable * - * @link http://www.php.net/manual/en/yaf-request-http.getpost.php + * @link https://secure.php.net/manual/en/yaf-request-http.getpost.php * * @param string $name the variable name, if not provided returns all * @param mixed $default if this parameter is provide, this will be returned if the variable can not be found @@ -2396,7 +2396,7 @@ class Http extends \Yaf\Request_Abstract /** * Retrieve $_COOKIE variable * - * @link http://www.php.net/manual/en/yaf-request-http.getcookie.php + * @link https://secure.php.net/manual/en/yaf-request-http.getcookie.php * * @param string $name the variable name, if not provided returns all * @param mixed $default if this parameter is provide, this will be returned if the variable can not be found @@ -2410,7 +2410,7 @@ class Http extends \Yaf\Request_Abstract /** * Retrieve $_FILES variable * - * @link http://www.php.net/manual/en/yaf-request-http.getfiles.php + * @link https://secure.php.net/manual/en/yaf-request-http.getfiles.php * * @param string $name the variable name, if not provided returns all * @param mixed $default if this parameter is provide, this will be returned if the variable can not be found @@ -2424,7 +2424,7 @@ class Http extends \Yaf\Request_Abstract /** * Retrieve variable from client, this method will search the name in $_REQUEST params, if the name is not found, then will search in $_POST, $_GET, $_COOKIE, $_SERVER * - * @link http://www.php.net/manual/en/yaf-request-http.get.php + * @link https://secure.php.net/manual/en/yaf-request-http.get.php * * @param string $name the variable name * @param string $default if this parameter is provide, this will be returned if the variable can not be found @@ -2443,7 +2443,7 @@ class Http extends \Yaf\Request_Abstract *

              * This method depends on the request header: HTTP_X_REQUESTED_WITH, some Javascript library doesn't set this header while doing Ajax request *

              - * @link http://www.php.net/manual/en/yaf-request-http.isxmlhttprequest.php + * @link https://secure.php.net/manual/en/yaf-request-http.isxmlhttprequest.php * * @return bool */ @@ -2452,7 +2452,7 @@ class Http extends \Yaf\Request_Abstract } /** - * @link http://www.php.net/manual/en/yaf-request-http.construct.php + * @link https://secure.php.net/manual/en/yaf-request-http.construct.php * * @param string $request_uri * @param string $base_uri @@ -2463,14 +2463,14 @@ class Http extends \Yaf\Request_Abstract } /** - * @link http://www.php.net/manual/en/yaf-request-http.clone.php + * @link https://secure.php.net/manual/en/yaf-request-http.clone.php */ private function __clone() { } }/** * \Yaf\Request\Simple is particularly used for test purpose. ie. simulate a spacial request under CLI mode. - * @link http://www.php.net/manual/en/class.yaf-request-simple.php + * @link https://secure.php.net/manual/en/class.yaf-request-simple.php */ class Simple extends \Yaf\Request_Abstract { @@ -2478,7 +2478,7 @@ class Simple extends \Yaf\Request_Abstract /** * Retrieve $_GET variable * - * @link http://www.php.net/manual/en/yaf-request-simple.getquery.php + * @link https://secure.php.net/manual/en/yaf-request-simple.getquery.php * * @param string $name the variable name, if not provided returns all * @param string $default if this parameter is provide, this will be returned if the variable can not be found @@ -2492,7 +2492,7 @@ class Simple extends \Yaf\Request_Abstract /** * Retrieve $_REQUEST variable * - * @link http://www.php.net/manual/en/yaf-request-simple.getrequest.php + * @link https://secure.php.net/manual/en/yaf-request-simple.getrequest.php * * @param string $name the variable name, if not provided returns all * @param string $default if this parameter is provide, this will be returned if the variable can not be found @@ -2506,7 +2506,7 @@ class Simple extends \Yaf\Request_Abstract /** * Retrieve $_POST variable * - * @link http://www.php.net/manual/en/yaf-request-simple.getpost.php + * @link https://secure.php.net/manual/en/yaf-request-simple.getpost.php * * @param string $name the variable name, if not provided returns all * @param string $default if this parameter is provide, this will be returned if the variable can not be found @@ -2520,7 +2520,7 @@ class Simple extends \Yaf\Request_Abstract /** * Retrieve $_Cookie variable * - * @link http://www.php.net/manual/en/yaf-request-simple.getcookie.php + * @link https://secure.php.net/manual/en/yaf-request-simple.getcookie.php * * @param string $name the variable name, if not provided returns all * @param string $default if this parameter is provide, this will be returned if the variable can not be found @@ -2544,7 +2544,7 @@ class Simple extends \Yaf\Request_Abstract /** * Retrieve variable from client, this method will search the name in $_REQUEST params, if the name is not found, then will search in $_POST, $_GET, $_COOKIE, $_SERVER * - * @link http://www.php.net/manual/en/yaf-request-simple.get.php + * @link https://secure.php.net/manual/en/yaf-request-simple.get.php * * @param string $name the variable name * @param string $default if this parameter is provide, this will be returned if the variable can not be found @@ -2563,7 +2563,7 @@ class Simple extends \Yaf\Request_Abstract *

              * This method depends on the request header: HTTP_X_REQUESTED_WITH, some Javascript library doesn't set this header while doing Ajax request *

              - * @link http://www.php.net/manual/en/yaf-request-simple.isxmlhttprequest.php + * @link https://secure.php.net/manual/en/yaf-request-simple.isxmlhttprequest.php * * @return bool */ @@ -2572,7 +2572,7 @@ class Simple extends \Yaf\Request_Abstract } /** - * @link http://www.php.net/manual/en/yaf-request-simple.construct.php + * @link https://secure.php.net/manual/en/yaf-request-simple.construct.php * * @param string $method * @param string $controller @@ -2586,7 +2586,7 @@ class Simple extends \Yaf\Request_Abstract } /** - * @link http://www.php.net/manual/en/yaf-request-simple.clone.php + * @link https://secure.php.net/manual/en/yaf-request-simple.clone.php */ private function __clone() { @@ -2599,7 +2599,7 @@ namespace Yaf\Config { *

              \Yaf\Config\Ini enables developers to store configuration data in a familiar INI format and read them in the application by using nested object property syntax. The INI format is specialized to provide both the ability to have a hierarchy of configuration data keys and inheritance between configuration data sections. Configuration data hierarchies are supported by separating the keys with the dot or period character ("."). A section may extend or inherit from another section by following the section name with a colon character (":") and the name of the section from which data are to be inherited.


              * Note: *

              \Yaf\Config\Ini utilizes the » parse_ini_file() PHP function. Please review this documentation to be aware of its specific behaviors, which propagate to \Yaf\Config\Ini, such as how the special values of "TRUE", "FALSE", "yes", "no", and "NULL" are handled.

              - * @link http://www.php.net/manual/en/class.yaf-config-ini.php + * @link https://secure.php.net/manual/en/class.yaf-config-ini.php */ class Ini extends \Yaf\Config_Abstract implements \Iterator, \Traversable, \ArrayAccess, \Countable { @@ -2648,7 +2648,7 @@ class Ini extends \Yaf\Config_Abstract implements \Iterator, \Traversable, \Arra } /** - * @link http://www.php.net/manual/en/yaf-config-ini.construct.php + * @link https://secure.php.net/manual/en/yaf-config-ini.construct.php * * @param string $config_file path to an INI configure file * @param string $section which section in that INI file you want to be parsed @@ -2660,7 +2660,7 @@ class Ini extends \Yaf\Config_Abstract implements \Iterator, \Traversable, \Arra } /** - * @link http://www.php.net/manual/en/yaf-config-ini.isset.php + * @link https://secure.php.net/manual/en/yaf-config-ini.isset.php * @param string $name */ public function __isset($name) @@ -2738,7 +2738,7 @@ class Ini extends \Yaf\Config_Abstract implements \Iterator, \Traversable, \Arra { } }/** - * @link http://www.php.net/manual/en/class.yaf-config-simple.php + * @link https://secure.php.net/manual/en/class.yaf-config-simple.php */ class Simple extends \Yaf\Config_Abstract implements \Iterator, \Traversable, \ArrayAccess, \Countable { @@ -2786,7 +2786,7 @@ class Simple extends \Yaf\Config_Abstract implements \Iterator, \Traversable, \A } /** - * @link http://www.php.net/manual/en/yaf-config-simple.construct.php + * @link https://secure.php.net/manual/en/yaf-config-simple.construct.php * * @param array $array * @param string $readonly @@ -2797,7 +2797,7 @@ class Simple extends \Yaf\Config_Abstract implements \Iterator, \Traversable, \A } /** - * @link http://www.php.net/manual/en/yaf-config-simple.isset.php + * @link https://secure.php.net/manual/en/yaf-config-simple.isset.php * @param string $name */ public function __isset($name) @@ -2879,11 +2879,11 @@ namespace Yaf\View { /** * \Yaf\View\Simple is the built-in template engine in Yaf, it is a simple but fast template engine, and only support PHP script template. - * @link http://www.php.net/manual/en/class.yaf-view-simple.php + * @link https://secure.php.net/manual/en/class.yaf-view-simple.php * * @method void|bool eval(string $tpl_str, array $vars = null)

              Render a string template and return the result.

              * - * @link http://www.php.net/manual/en/yaf-view-simple.eval.php + * @link https://secure.php.net/manual/en/yaf-view-simple.eval.php * * @param string $tpl_str string template * @param array $vars @@ -2907,7 +2907,7 @@ class Simple implements \Yaf\View_Interface protected $_options; /** - * @link http://www.php.net/manual/en/yaf-view-simple.construct.php + * @link https://secure.php.net/manual/en/yaf-view-simple.construct.php * * @param string $template_dir The base directory of the templates, by default, it is APPLICATION . "/views" for Yaf. * @param array $options

              Options for the engine, as of Yaf 2.1.13, you can use short tag @@ -2922,7 +2922,7 @@ class Simple implements \Yaf\View_Interface } /** - * @link http://www.php.net/manual/en/yaf-view-simple.isset.php + * @link https://secure.php.net/manual/en/yaf-view-simple.isset.php * * @param string $name */ @@ -2933,7 +2933,7 @@ class Simple implements \Yaf\View_Interface /** * assign variable to view engine * - * @link http://www.php.net/manual/en/yaf-view-simple.assign.php + * @link https://secure.php.net/manual/en/yaf-view-simple.assign.php * * @param string|array $name A string or an array.
              if is string, then the next argument $value is required. * @param mixed $value mixed value @@ -2944,7 +2944,7 @@ class Simple implements \Yaf\View_Interface } /** - * @link http://www.php.net/manual/en/yaf-view-simple.render.php + * @link https://secure.php.net/manual/en/yaf-view-simple.render.php * * @param string $tpl * @param array $tpl_vars @@ -2960,7 +2960,7 @@ class Simple implements \Yaf\View_Interface /** *

              Render a template and display the result instantly.

              * - * @link http://www.php.net/manual/en/yaf-view-simple.display.php + * @link https://secure.php.net/manual/en/yaf-view-simple.display.php * * @param string $tpl * @param array $tpl_vars @@ -2975,7 +2975,7 @@ class Simple implements \Yaf\View_Interface /** *

              unlike \Yaf\View\Simple::assign(), this method assign a ref value to engine.

              - * @link http://www.php.net/manual/en/yaf-view-simple.assignref.php + * @link https://secure.php.net/manual/en/yaf-view-simple.assignref.php * * @param string $name A string name which will be used to access the value in the template. * @param mixed $value mixed value @@ -2988,7 +2988,7 @@ class Simple implements \Yaf\View_Interface /** * clear assigned variable - * @link http://www.php.net/manual/en/yaf-view-simple.clear.php + * @link https://secure.php.net/manual/en/yaf-view-simple.clear.php * * @param string $name assigned variable name.
              if empty, will clear all assigned variables. * @@ -2999,7 +2999,7 @@ class Simple implements \Yaf\View_Interface } /** - * @link http://www.php.net/manual/en/yaf-view-simple.setscriptpath.php + * @link https://secure.php.net/manual/en/yaf-view-simple.setscriptpath.php * * @param string $template_dir * @@ -3010,7 +3010,7 @@ class Simple implements \Yaf\View_Interface } /** - * @link http://www.php.net/manual/en/yaf-view-simple.getscriptpath.php + * @link https://secure.php.net/manual/en/yaf-view-simple.getscriptpath.php * * @return string */ @@ -3023,7 +3023,7 @@ class Simple implements \Yaf\View_Interface *
              * Note: *

              $name parameter can be empty since 2.1.11

              - * @link http://www.php.net/manual/en/yaf-view-simple.get.php + * @link https://secure.php.net/manual/en/yaf-view-simple.get.php * * @param null $name

              the assigned variable name

              *
              @@ -3038,7 +3038,7 @@ class Simple implements \Yaf\View_Interface /** *

              This is a alternative and easier way to \Yaf\View\Simple::assign().

              * - * @link http://www.php.net/manual/en/yaf-view-simple.set.php + * @link https://secure.php.net/manual/en/yaf-view-simple.set.php * * @param string $name A string value name. * @param mixed $value mixed value @@ -3057,7 +3057,7 @@ namespace Yaf\Route { *
              *

              \Yaf\Route\Simple::route() will always return TRUE, so it is important put \Yaf\Route\Simple in the front of the Route stack, otherwise all the other routes will not be called

              * - * @link http://www.php.net/manual/en/class.yaf-route-simple.php + * @link https://secure.php.net/manual/en/class.yaf-route-simple.php */ final class Simple implements \Yaf\Route_Interface { @@ -3078,7 +3078,7 @@ final class Simple implements \Yaf\Route_Interface /** *

              \Yaf\Route\Simple will get route info from query string. and the parameters of this constructor will used as keys while searching for the route info in $_GET.

              * - * @link http://www.php.net/manual/en/yaf-route-simple.construct.php + * @link https://secure.php.net/manual/en/yaf-route-simple.construct.php * * @param string $module_name * @param string $controller_name @@ -3093,7 +3093,7 @@ final class Simple implements \Yaf\Route_Interface /** *

              see \Yaf\Route\Simple::__construct()

              * - * @link http://www.php.net/manual/en/yaf-route-simple.route.php + * @link https://secure.php.net/manual/en/yaf-route-simple.route.php * * @param \Yaf\Request_Abstract $request * @@ -3106,7 +3106,7 @@ final class Simple implements \Yaf\Route_Interface /** *

              \Yaf\Route\Simple::assemble() - Assemble a url * - * @link http://www.php.net/manual/en/yaf-route-simple.assemble.php + * @link https://secure.php.net/manual/en/yaf-route-simple.assemble.php * * @param array $info * @param array $query @@ -3116,7 +3116,7 @@ final class Simple implements \Yaf\Route_Interface { } }/** - * @link http://www.php.net/manual/en/class.yaf-route-supervar.php + * @link https://secure.php.net/manual/en/class.yaf-route-supervar.php */ final class Supervar implements \Yaf\Route_Interface { @@ -3129,7 +3129,7 @@ final class Supervar implements \Yaf\Route_Interface /** *

              \Yaf\Route\Supervar is similar to \Yaf\Route_Static, the difference is that \Yaf\Route\Supervar will look for path info in query string, and the parameter supervar_name is the key.

              * - * @link http://www.php.net/manual/en/yaf-route-supervar.construct.php + * @link https://secure.php.net/manual/en/yaf-route-supervar.construct.php * * @param string $supervar_name The name of key. * @@ -3140,7 +3140,7 @@ final class Supervar implements \Yaf\Route_Interface } /** - * @link http://www.php.net/manual/en/yaf-route-supervar.route.php + * @link https://secure.php.net/manual/en/yaf-route-supervar.route.php * * @param \Yaf\Request_Abstract $request * @@ -3153,7 +3153,7 @@ final class Supervar implements \Yaf\Route_Interface /** *

              \Yaf\Route\Supervar::assemble() - Assemble a url * - * @link http://www.php.net/manual/en/yaf-route-supervar.assemble.php + * @link https://secure.php.net/manual/en/yaf-route-supervar.assemble.php * * @param array $info * @param array $query @@ -3165,7 +3165,7 @@ final class Supervar implements \Yaf\Route_Interface }/** *

              For usage, please see the example section of \Yaf\Route\Rewrite::__construct()

              * - * @link http://www.php.net/manual/en/class.yaf-route-rewrite.php + * @link https://secure.php.net/manual/en/class.yaf-route-rewrite.php */ final class Rewrite extends \Yaf\Router implements \Yaf\Route_Interface { @@ -3184,7 +3184,7 @@ final class Rewrite extends \Yaf\Router implements \Yaf\Route_Interface protected $_verify; /** - * @link http://www.php.net/manual/en/yaf-route-rewrite.construct.php + * @link https://secure.php.net/manual/en/yaf-route-rewrite.construct.php * * @param string $match A pattern, will be used to match a request uri, if doesn't matched, \Yaf\Route\Rewrite will return FALSE. * @param array $route

              When the match pattern matches the request uri, \Yaf\Route\Rewrite will use this to decide which m/c/a to routed.

              @@ -3200,7 +3200,7 @@ final class Rewrite extends \Yaf\Router implements \Yaf\Route_Interface } /** - * @link http://www.php.net/manual/en/yaf-route-rewrite.route.php + * @link https://secure.php.net/manual/en/yaf-route-rewrite.route.php * * @param \Yaf\Request_Abstract $request * @@ -3213,7 +3213,7 @@ final class Rewrite extends \Yaf\Router implements \Yaf\Route_Interface /** *

              \Yaf\Route\Rewrite::assemble() - Assemble a url * - * @link http://www.php.net/manual/en/yaf-route-rewrite.assemble.php + * @link https://secure.php.net/manual/en/yaf-route-rewrite.assemble.php * * @param array $info * @param array $query @@ -3225,7 +3225,7 @@ final class Rewrite extends \Yaf\Router implements \Yaf\Route_Interface }/** *

              \Yaf\Route\Regex is the most flexible route among the Yaf built-in routes.

              * - * @link http://www.php.net/manual/en/class.yaf-route-regex.php + * @link https://secure.php.net/manual/en/class.yaf-route-regex.php */ final class Regex extends \Yaf\Router implements \Yaf\Route_Interface { @@ -3252,7 +3252,7 @@ final class Regex extends \Yaf\Router implements \Yaf\Route_Interface protected $_reverse; /** - * @link http://www.php.net/manual/en/yaf-route-regex.construct.php + * @link https://secure.php.net/manual/en/yaf-route-regex.construct.php * * @param string $match A complete Regex pattern, will be used to match a request uri, if doesn't matched, \Yaf\Route\Regex will return FALSE. * @param array $route

              When the match pattern matches the request uri, \Yaf\Route\Regex will use this to decide which m/c/a to routed.

              @@ -3271,7 +3271,7 @@ final class Regex extends \Yaf\Router implements \Yaf\Route_Interface /** * Route a incoming request. * - * @link http://www.php.net/manual/en/yaf-route-regex.route.php + * @link https://secure.php.net/manual/en/yaf-route-regex.route.php * * @param \Yaf\Request_Abstract $request * @@ -3284,7 +3284,7 @@ final class Regex extends \Yaf\Router implements \Yaf\Route_Interface /** *

              \Yaf\Route\Regex::assemble() - Assemble a url * - * @link http://www.php.net/manual/en/yaf-route-regex.assemble.php + * @link https://secure.php.net/manual/en/yaf-route-regex.assemble.php * * @param array $info * @param array $query @@ -3298,7 +3298,7 @@ final class Regex extends \Yaf\Router implements \Yaf\Route_Interface *
              *

              If the second parameter of \Yaf\Route\Map::__construct() is specified, then only the part before delimiter of URI will used to routing, the part after it is used to routing request parameters (see the example section of \Yaf\Route\Map::__construct()).

              * - * @link http://www.php.net/manual/en/class.yaf-route-map.php + * @link https://secure.php.net/manual/en/class.yaf-route-map.php */ final class Map implements \Yaf\Route_Interface { @@ -3313,7 +3313,7 @@ final class Map implements \Yaf\Route_Interface protected $_delimiter; /** - * @link http://www.php.net/manual/en/yaf-route-map.construct.php + * @link https://secure.php.net/manual/en/yaf-route-map.construct.php * * @param bool $controller_prefer Whether the result should considering as controller or action * @param string $delimiter @@ -3323,7 +3323,7 @@ final class Map implements \Yaf\Route_Interface } /** - * @link http://www.php.net/manual/en/yaf-route-map.route.php + * @link https://secure.php.net/manual/en/yaf-route-map.route.php * * @param \Yaf\Request_Abstract $request * @@ -3336,7 +3336,7 @@ final class Map implements \Yaf\Route_Interface /** *

              \Yaf\Route\Map::assemble() - Assemble a url * - * @link http://www.php.net/manual/en/yaf-route-map.assemble.php + * @link https://secure.php.net/manual/en/yaf-route-map.assemble.php * * @param array $info * @param array $query @@ -3350,27 +3350,27 @@ namespace Yaf\Exception { use Yaf\Exception; /** - * @link http://www.php.net/manual/en/class.yaf-exception-typeerror.php + * @link https://secure.php.net/manual/en/class.yaf-exception-typeerror.php */ class TypeError extends \Yaf\Exception { }/** - * @link http://www.php.net/manual/en/class.yaf-exception-startuperror.php + * @link https://secure.php.net/manual/en/class.yaf-exception-startuperror.php */ class StartupError extends \Yaf\Exception { }/** - * @link http://www.php.net/manual/en/class.yaf-exception-routefaild.php + * @link https://secure.php.net/manual/en/class.yaf-exception-routefaild.php */ class RouterFailed extends \Yaf\Exception { }/** - * @link http://www.php.net/manual/en/class.yaf-exception-dispatchfaild.php + * @link https://secure.php.net/manual/en/class.yaf-exception-dispatchfaild.php */ class DispatchFailed extends \Yaf\Exception { }/** - * @link http://www.php.net/manual/en/class.yaf-exception-loadfaild.php + * @link https://secure.php.net/manual/en/class.yaf-exception-loadfaild.php */ class LoadFailed extends \Yaf\Exception { @@ -3379,22 +3379,22 @@ namespace Yaf\Exception\LoadFailed { use Yaf\Exception\LoadFailed; /** - * @link http://www.php.net/manual/en/class.yaf-exception-loadfaild-module.php + * @link https://secure.php.net/manual/en/class.yaf-exception-loadfaild-module.php */ class Module extends \Yaf\Exception\LoadFailed { }/** - * @link http://www.php.net/manual/en/class.yaf-exception-loadfaild-controller.php + * @link https://secure.php.net/manual/en/class.yaf-exception-loadfaild-controller.php */ class Controller extends \Yaf\Exception\LoadFailed { }/** - * @link http://www.php.net/manual/en/class.yaf-exception-loadfaild-action.php + * @link https://secure.php.net/manual/en/class.yaf-exception-loadfaild-action.php */ class Action extends \Yaf\Exception\LoadFailed { }/** - * @link http://www.php.net/manual/en/class.yaf-exception-loadfaild-view.php + * @link https://secure.php.net/manual/en/class.yaf-exception-loadfaild-view.php */ class View extends \Yaf\Exception\LoadFailed { diff --git a/yar/yar.php b/yar/yar.php index 4d666cef..7379a3a6 100644 --- a/yar/yar.php +++ b/yar/yar.php @@ -4,7 +4,7 @@ * Class Yar_Server * Date 2018/6/9 下午3:02 * @Author weizhimiao001@lianjia.com - * @link http://php.net/manual/en/class.yar-server.php + * @link https://secure.php.net/manual/en/class.yar-server.php */ class Yar_Server { @@ -16,7 +16,7 @@ class Yar_Server { * * Yar_Server constructor. * @param $obj object An Object, all public methods of its will be registered as RPC services. - * @link http://php.net/manual/en/yar-server.construct.php + * @link https://secure.php.net/manual/en/yar-server.construct.php */ final public function __construct ($obj ) {} @@ -28,7 +28,7 @@ class Yar_Server { * If a HTTP GET request is issued to the uri, * the service information (commented section above) will be printed on the page * @return boolean - * @link http://php.net/manual/en/yar-server.handle.php + * @link https://secure.php.net/manual/en/yar-server.handle.php */ public function handle () {} } @@ -47,7 +47,7 @@ class Yar_Client { * * @param $method string Remote RPC method name. * @param $parameters array Parameters. - * @link http://php.net/manual/en/yar-client.call.php + * @link https://secure.php.net/manual/en/yar-client.call.php */ public function __call ( $method , $parameters ){} @@ -55,7 +55,7 @@ class Yar_Client { * Create a client * Yar_Client constructor. * @param $url string Yar Server URL. - * @link http://php.net/manual/en/yar-client.construct.php + * @link https://secure.php.net/manual/en/yar-client.construct.php */ final public function __construct ( $url ){} @@ -70,7 +70,7 @@ class Yar_Client { * - YAR_OPT_HEADER (Since 2.0.4) * @param $value * @return object Returns $this on success or FALSE on failure. - * @link http://php.net/manual/en/yar-client.setopt.php + * @link https://secure.php.net/manual/en/yar-client.setopt.php */ public function setOpt ($name , $value ){} } @@ -88,7 +88,7 @@ class Yar_Concurrent_Client { * @param $parameters array Parameters * @param array ...$callback A function callback, which will be called while the response return. * @return int - * @link http://php.net/manual/en/yar-concurrent-client.call.php + * @link https://secure.php.net/manual/en/yar-concurrent-client.call.php */ public static function call ( $uri , $method , $parameters, ...$callback ){} @@ -100,7 +100,7 @@ class Yar_Concurrent_Client { * @param $error_callback * If this callback is set, then Yar will call this callback while error occurred. * @return boolean - * @link http://php.net/manual/en/yar-concurrent-client.loop.php + * @link https://secure.php.net/manual/en/yar-concurrent-client.loop.php */ public static function loop ($callback , $error_callback) {} @@ -108,7 +108,7 @@ class Yar_Concurrent_Client { * Clean all registered calls * Clean all registered calls * @return boolean - * @link http://php.net/manual/en/yar-concurrent-client.reset.php + * @link https://secure.php.net/manual/en/yar-concurrent-client.reset.php */ public static function reset (){} } @@ -117,7 +117,7 @@ class Yar_Concurrent_Client { * Class Yar_Server_Exception * Date 2018/6/9 下午3:06 * @Author weizhimiao001@lianjia.com - * @link http://php.net/manual/en/class.yar-server-exception.php + * @link https://secure.php.net/manual/en/class.yar-server-exception.php */ class Yar_Server_Exception extends Exception { @@ -127,7 +127,7 @@ class Yar_Server_Exception extends Exception { * Retrieve exception's type * Get the exception original type threw by server * @return string - * @link http://php.net/manual/en/yar-server-exception.gettype.php + * @link https://secure.php.net/manual/en/yar-server-exception.gettype.php */ public function getType (){} @@ -137,13 +137,13 @@ class Yar_Server_Exception extends Exception { * Class Yar_Client_Exception * Date 2018/6/9 下午3:05 * @Author weizhimiao001@lianjia.com - * @link http://php.net/manual/en/class.yar-client-exception.php + * @link https://secure.php.net/manual/en/class.yar-client-exception.php */ class Yar_Client_Exception extends Exception { /** * Retrieve exception's type * @return string "Yar_Exception_Client". - * @link http://php.net/manual/en/yar-client-exception.gettype.php + * @link https://secure.php.net/manual/en/yar-client-exception.gettype.php */ public function getType (){} } \ No newline at end of file diff --git a/zip/zip.php b/zip/zip.php index bc4fbac2..59a02d74 100644 --- a/zip/zip.php +++ b/zip/zip.php @@ -280,28 +280,28 @@ class ZipArchive { /** * No encryption - * @link http://php.net/manual/en/zip.constants.php + * @link https://secure.php.net/manual/en/zip.constants.php * @since 7.2 */ const EM_NONE = 0; /** * AES 128 encryption - * @link http://php.net/manual/en/zip.constants.php + * @link https://secure.php.net/manual/en/zip.constants.php * @since 7.2 */ const EM_AES_128 = 257; /** * AES 192 encryption - * @link http://php.net/manual/en/zip.constants.php + * @link https://secure.php.net/manual/en/zip.constants.php * @since 7.2 */ const EM_AES_192 = 258; /** * AES 256 encryption - * @link http://php.net/manual/en/zip.constants.php + * @link https://secure.php.net/manual/en/zip.constants.php * @since 7.2 */ const EM_AES_256 = 259; @@ -596,7 +596,7 @@ class ZipArchive { /** * Set the compression method of an entry defined by its name - * http://php.net/manual/en/ziparchive.setcompressionname.php + * https://secure.php.net/manual/en/ziparchive.setcompressionname.php * @param string $name Name of the entry. * @param int $comp_method The compression method. Either ZipArchive::CM_DEFAULT, ZipArchive::CM_STORE or ZipArchive::CM_DEFLATE. * @param int $comp_flags [optional] Compression flags. Currently unused. diff --git a/zmq/zmq.php b/zmq/zmq.php index 7b3f2c51..099b5381 100644 --- a/zmq/zmq.php +++ b/zmq/zmq.php @@ -6,7 +6,7 @@ */ /** * Class ZMQ - * @link http://www.php.net/manual/en/class.zmq.php + * @link https://secure.php.net/manual/en/class.zmq.php */ class ZMQ { @@ -274,7 +274,7 @@ class ZMQ const ERR_ETERM = 156384765; /** * Private constructor to prevent direct initialization. This class holds the constants for ZMQ extension. - * @link http://www.php.net/manual/en/zmq.construct.php + * @link https://secure.php.net/manual/en/zmq.construct.php */ private function __construct() { @@ -282,7 +282,7 @@ class ZMQ } /** * Class ZMQContext - * @link http://www.php.net/manual/en/class.zmqcontext.php + * @link https://secure.php.net/manual/en/class.zmqcontext.php */ class ZMQContext { @@ -290,7 +290,7 @@ class ZMQContext * Constructs a new ZMQ context. The context is used to initialize sockets. * A persistent context is required to initialize persistent sockets. * - * @link http://www.php.net/manual/en/zmqcontext.construct.php + * @link https://secure.php.net/manual/en/zmqcontext.construct.php * * @param int $io_threads Number of io-threads in the context * @param bool $is_persistent Whether the context is persistent. Persistent context is stored over multiple requests and is a requirement for persistent sockets. @@ -302,7 +302,7 @@ class ZMQContext * (PECL zmq >= 1.0.4) * Returns the value of a context option. * - * @link http://www.php.net/manual/en/zmqcontext.getopt.php + * @link https://secure.php.net/manual/en/zmqcontext.getopt.php * * @param string $key An int representing the option. See the ZMQ::CTXOPT_* constants. * @return string|int Returns either a string or an integer depending on key. Throws ZMQContextException on error. @@ -318,7 +318,7 @@ class ZMQContext * and the socket falls back to being non-persistent. * The on_new_socket is called only when a new underlying socket structure is created. * - * @link http://www.php.net/manual/en/zmqcontext.getsocket.php + * @link https://secure.php.net/manual/en/zmqcontext.getsocket.php * * @param int $type ZMQ::SOCKET_* constant to specify socket type. * @param string $persistent_id If persistent_id is specified the socket will be persisted over multiple requests. @@ -334,7 +334,7 @@ class ZMQContext * Whether the context is persistent. * Persistent context is needed for persistent connections as each socket is allocated from a context. * - * @link http://www.php.net/manual/en/zmqcontext.ispersistent.php + * @link https://secure.php.net/manual/en/zmqcontext.ispersistent.php * * @return bool Returns TRUE if the context is persistent and FALSE if the context is non-persistent. */ @@ -346,7 +346,7 @@ class ZMQContext * Sets a ZMQ context option. The type of the value depends on the key. * See ZMQ Constant Types for more information. * - * @link http://www.php.net/manual/en/zmqcontext.setopt.php + * @link https://secure.php.net/manual/en/zmqcontext.setopt.php * * @param int $key One of the ZMQ::CTXOPT_* constants. * @param mixed $value The value of the parameter. @@ -359,7 +359,7 @@ class ZMQContext } /** * Class ZMQSocket - * @link http://www.php.net/manual/en/class.zmqsocket.php + * @link https://secure.php.net/manual/en/class.zmqsocket.php */ class ZMQSocket { @@ -371,7 +371,7 @@ class ZMQSocket * The persistent_id parameter can be used to recall the same socket over multiple requests. * The on_new_socket is called only when a new underlying socket structure is created. * - * @link http://www.php.net/manual/en/zmqsocket.construct.php + * @link https://secure.php.net/manual/en/zmqsocket.construct.php * * @param ZMQContext $context

              ZMQContext to build this object

              * @param int $type

              The type of the socket. See ZMQ::SOCKET_* constants.

              @@ -389,7 +389,7 @@ class ZMQSocket * The endpoint is defined in format transport://address * where transport is one of the following: inproc, ipc, tcp, pgm or epgm. * - * @link http://www.php.net/manual/en/zmqsocket.bind.php + * @link https://secure.php.net/manual/en/zmqsocket.bind.php * * @param string $dsn The bind dsn, for example transport://address. * @param bool $force Tries to bind even if the socket has already been bound to the given endpoint. @@ -406,7 +406,7 @@ class ZMQSocket * The endpoint is defined in format transport://address * where transport is one of the following: inproc, ipc, tcp, pgm or epgm. * - * @link http://www.php.net/manual/en/zmqsocket.connect.php + * @link https://secure.php.net/manual/en/zmqsocket.connect.php * * @param string $dsn The bind dsn, for example transport://address. * @param bool $force Tries to bind even if the socket has already been bound to the given endpoint. @@ -423,7 +423,7 @@ class ZMQSocket * The endpoint is defined in format transport://address * where transport is one of the following: inproc, ipc, tcp, pgm or epgm. * - * @link http://www.php.net/manual/en/zmqsocket.disconnect.php + * @link https://secure.php.net/manual/en/zmqsocket.disconnect.php * * @param string $dsn The bind dsn, for example transport://address. * @@ -436,7 +436,7 @@ class ZMQSocket /** * Returns a list of endpoints where the socket is connected or bound to. * - * @link http://www.php.net/manual/en/zmqsocket.getendpoints.php + * @link https://secure.php.net/manual/en/zmqsocket.getendpoints.php * * @return array contains two sub-arrays: 'connect' and 'bind' * @throws ZMQSocketException @@ -447,7 +447,7 @@ class ZMQSocket /** * Returns the persistent id string assigned of the object and NULL if socket is not persistent. * - * @link http://www.php.net/manual/en/zmqsocket.getpersistentid.php + * @link https://secure.php.net/manual/en/zmqsocket.getpersistentid.php * * @return string|null

              * Returns the persistent id string assigned of the object and NULL if socket is not persistent. @@ -460,7 +460,7 @@ class ZMQSocket * Returns the value of a socket option. * This method is available if ZMQ extension has been compiled against ZMQ version 2.0.7 or higher * - * @link http://www.php.net/manual/en/zmqsocket.getsockopt.php + * @link https://secure.php.net/manual/en/zmqsocket.getsockopt.php * * @since 0MQ 2.0.7 * @param int $key An int representing the option. See the ZMQ::SOCKOPT_* constants. @@ -478,7 +478,7 @@ class ZMQSocket * Return the socket type. * The socket type can be compared against ZMQ::SOCKET_* constants. * - * @link http://www.php.net/manual/en/zmqsocket.getsockettype.php + * @link https://secure.php.net/manual/en/zmqsocket.getsockettype.php * * @return int

              * Returns an integer representing the socket type. The integer can be compared against @@ -491,7 +491,7 @@ class ZMQSocket /** * Check whether the socket is persistent. * - * @link http://www.php.net/manual/en/zmqsocket.ispersistent.php + * @link https://secure.php.net/manual/en/zmqsocket.ispersistent.php * * @return bool

              Returns a boolean based on whether the socket is persistent or not.

              */ @@ -505,7 +505,7 @@ class ZMQSocket * Returns the message. * If ZMQ::MODE_NOBLOCK is used and the operation would block bool false shall be returned. * - * @link http://www.php.net/manual/en/zmqsocket.recv.php + * @link https://secure.php.net/manual/en/zmqsocket.recv.php * @see ZMQSocket::setSockOpt() * * @param int $mode Pass mode flags to receive multipart messages or non-blocking operation. See ZMQ::MODE_* constants. @@ -522,7 +522,7 @@ class ZMQSocket * Returns the array of message parts. * If ZMQ::MODE_NOBLOCK is used and the operation would block bool false shall be returned. * - * @link http://www.php.net/manual/en/zmqsocket.recvmulti.php + * @link https://secure.php.net/manual/en/zmqsocket.recvmulti.php * * @param int $mode Pass mode flags to receive multipart messages or non-blocking operation. See ZMQ::MODE_* constants. * @@ -536,7 +536,7 @@ class ZMQSocket * Send a message using the socket. The operation can block unless ZMQ::MODE_NOBLOCK is used. * If ZMQ::MODE_NOBLOCK is used and the operation would block bool false shall be returned. * - * @link http://www.php.net/manual/en/zmqsocket.send.php + * @link https://secure.php.net/manual/en/zmqsocket.send.php * * @param string $message The message to send * @param int $mode Pass mode flags to receive multipart messages or non-blocking operation. See ZMQ::MODE_* constants. * @@ -551,7 +551,7 @@ class ZMQSocket * Send a multipart message using the socket. The operation can block unless ZMQ::MODE_NOBLOCK is used. * If ZMQ::MODE_NOBLOCK is used and the operation would block bool false shall be returned. * - * @link http://www.php.net/manual/en/zmqsocket.sendmulti.php + * @link https://secure.php.net/manual/en/zmqsocket.sendmulti.php * * @param array $message The message to send - an array of strings * @param int $mode Pass mode flags to receive multipart messages or non-blocking operation. See ZMQ::MODE_* constants. * @@ -566,7 +566,7 @@ class ZMQSocket * Sets a ZMQ socket option. The type of the value depends on the key. * @see ZMQ Constant Types for more information. * - * @link http://www.php.net/manual/en/zmqsocket.setsockopt.php + * @link https://secure.php.net/manual/en/zmqsocket.setsockopt.php * * @param int $key One of the ZMQ::SOCKOPT_* constants. * @param mixed $value The value of the parameter. @@ -582,7 +582,7 @@ class ZMQSocket * The endpoint is defined in format transport://address * where transport is one of the following: inproc, ipc, tcp, pgm or epgm. * - * @link http://www.php.net/manual/en/zmqsocket.unbind.php + * @link https://secure.php.net/manual/en/zmqsocket.unbind.php * * @param string $dsn The previously bound dsn, for example transport://address. * @@ -595,7 +595,7 @@ class ZMQSocket } /** * Class ZMQPoll - * @link http://www.php.net/manual/en/class.zmqpoll.php + * @link https://secure.php.net/manual/en/class.zmqpoll.php */ class ZMQPoll { @@ -605,7 +605,7 @@ class ZMQPoll * The item can be removed from the poll set using the returned string id. * Returns a string id of the added item which can be later used to remove the item. * - * @link http://www.php.net/manual/en/zmqpoll.add.php + * @link https://secure.php.net/manual/en/zmqpoll.add.php * * @param ZMQSocket $entry ZMQSocket object or a PHP stream resource * @param int $type Defines what activity the socket is polled for. See ZMQ::POLL_IN and ZMQ::POLL_OUT constants. @@ -620,7 +620,7 @@ class ZMQPoll * (PECL zmq >= 1.0.4) * Clears all elements from the poll set. * - * @link http://www.php.net/manual/en/zmqpoll.clear.php + * @link https://secure.php.net/manual/en/zmqpoll.clear.php * * @return ZMQPoll Returns the current object. */ @@ -631,7 +631,7 @@ class ZMQPoll * (PECL zmq >= 0.5.0) * Count the items in the poll set. * - * @link http://www.php.net/manual/en/zmqpoll.count.php + * @link https://secure.php.net/manual/en/zmqpoll.count.php * * @return int Returns an integer representing the amount of items in the poll set. */ @@ -644,7 +644,7 @@ class ZMQPoll * Returns an array containing ids for the items that had errors in the last poll. * Empty array is returned if there were no errors. * - * @link http://www.php.net/manual/en/zmqpoll.getlasterrors.php + * @link https://secure.php.net/manual/en/zmqpoll.getlasterrors.php * * @return int[] */ @@ -658,7 +658,7 @@ class ZMQPoll * ZMQPoll::getLastErrors() can be used to check if there were errors. * Returns an int representing amount of items with activity. * - * @link http://www.php.net/manual/en/zmqpoll.poll.php + * @link https://secure.php.net/manual/en/zmqpoll.poll.php * * @param array &$readable Array where readable ZMQSockets/PHP streams are returned. The array will be cleared at the beginning of the operation. * @param array &$writable Array where writable ZMQSockets/PHP streams are returned. The array will be cleared at the beginning of the operation. @@ -676,7 +676,7 @@ class ZMQPoll * The item parameter can be ZMQSocket object, a stream resource or the id returned from ZMQPoll::add() method. * Returns true if the item was removed and false if the object with given id does not exist in the poll set. * - * @link http://www.php.net/manual/en/zmqpoll.remove.php + * @link https://secure.php.net/manual/en/zmqpoll.remove.php * * @param ZMQSocket|string|mixed $item The ZMQSocket object, PHP stream or string id of the item. * @return bool Returns true if the item was removed and false if the object with given id does not exist in the poll set. @@ -687,7 +687,7 @@ class ZMQPoll } /** * Class ZMQDevice - * @link http://www.php.net/manual/en/class.zmqdevice.php + * @link https://secure.php.net/manual/en/class.zmqdevice.php */ class ZMQDevice { @@ -698,7 +698,7 @@ class ZMQDevice * to define above the message and socket layers." -- zguide * Call to this method will prepare the device. Usually devices are very long running processes so running this method from interactive script is not recommended. This method throw ZMQDeviceException if the device cannot be started. * - * @link http://www.php.net/manual/en/zmqdevice.construct.php + * @link https://secure.php.net/manual/en/zmqdevice.construct.php * * @param ZMQSocket $frontend Frontend parameter for the devices. Usually where there messages are coming. * @param ZMQSocket $backend Backend parameter for the devices. Usually where there messages going to. @@ -712,7 +712,7 @@ class ZMQDevice * This method returns the idle callback timeout value. * Added in ZMQ extension version 1.1.0. * - * @link http://www.php.net/manual/en/zmqdevice.getidletimeout.php + * @link https://secure.php.net/manual/en/zmqdevice.getidletimeout.php * * @return int This method returns the idle callback timeout value. */ @@ -723,7 +723,7 @@ class ZMQDevice * Gets the timer callback timeout value. * Added in ZMQ extension version 1.1.0. * - * @link http://www.php.net/manual/en/zmqdevice.gettimertimeout.php + * @link https://secure.php.net/manual/en/zmqdevice.gettimertimeout.php * * @return int This method returns the timer timeout value. */ @@ -735,7 +735,7 @@ class ZMQDevice * Call to this method will block until the device is running. * It is not recommended that devices are used from interactive scripts. * - * @link http://www.php.net/manual/en/zmqdevice.run.php + * @link https://secure.php.net/manual/en/zmqdevice.run.php * * @throws ZMQDeviceException */ @@ -748,7 +748,7 @@ class ZMQDevice * without events. If the callback function returns false or a value that evaluates to false the device is stopped. * The callback function signature is callback (mixed $user_data). * - * @link http://www.php.net/manual/en/zmqdevice.setidlecallback.php + * @link https://secure.php.net/manual/en/zmqdevice.setidlecallback.php * * @param callable $cb_func Callback function to invoke when the device is idle. Returning false or a value that evaluates to false from this function will cause the device to stop. * @param int $timeout How often to invoke the idle callback in milliseconds. The idle callback is invoked periodically when there is no activity on the device. The timeout value guarantees that there is at least this amount of milliseconds between invocations of the callback function. @@ -763,7 +763,7 @@ class ZMQDevice * Sets the idle callback timeout value. The idle callback is invoked periodically when the device is idle. * On success this method returns the current object. * - * @link http://www.php.net/manual/en/zmqdevice.setidletimeout.php + * @link https://secure.php.net/manual/en/zmqdevice.setidletimeout.php * * @param int $timeout The idle callback timeout value in milliseconds * @@ -778,7 +778,7 @@ class ZMQDevice * The callback function signature is callback (mixed $user_data). * Added in ZMQ extension version 1.1.0. * - * @link http://www.php.net/manual/en/zmqdevice.settimercallback.php + * @link https://secure.php.net/manual/en/zmqdevice.settimercallback.php * * @param callable $cb_func Callback function to invoke when the device is idle. Returning false or a value that evaluates to false from this function will cause the device to stop. * @param int $timeout How often to invoke the idle callback in milliseconds. The idle callback is invoked periodically when there is no activity on the device. The timeout value guarantees that there is at least this amount of milliseconds between invocations of the callback function. @@ -793,7 +793,7 @@ class ZMQDevice * Sets the timer callback timeout value. The timer callback is invoked periodically if it's set. * Added in ZMQ extension version 1.1.0. * - * @link http://www.php.net/manual/en/zmqdevice.settimertimeout.php + * @link https://secure.php.net/manual/en/zmqdevice.settimertimeout.php * * @param int $timeout The timer callback timeout value. *