@link and @see tags should use https

This commit is contained in:
Maxim.Kolmakov 2018-10-16 11:28:37 +02:00
parent fcd86cf4b5
commit 890dcf4a42
52 changed files with 1580 additions and 1547 deletions

View File

@ -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
*/

View File

@ -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.
* <p>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.

View File

@ -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 {

View File

@ -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.
* <code> function my_callback($current, $key, $iterator) </code>
* @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)<br>
* 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
*/

View File

@ -3,7 +3,7 @@
/**
* (PHP 5 &gt;= 5.5.5, PECL ZendOpcache &gt;= 7.0.2 )<br/>
* 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 <b>TRUE</b> if the opcode cache for <em>script</em> was
@ -15,7 +15,7 @@ function opcache_compile_file($file) { }
/**
* (PHP 5 &gt;= 5.5.0, PECL ZendOpcache &gt;= 7.0.0 )<br/>
* 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 <p>The path to the script being invalidated.</p>
* @param bool $force [optional] <p> If set to <b>TRUE</b>, the script will be invalidated regardless of whether invalidation is necessary.</p>
* @return boolean
@ -28,7 +28,7 @@ function opcache_invalidate($script, $force = FALSE) { }
/**
* (PHP 5 &gt;= 5.5.0, PECL ZendOpcache &gt;= 7.0.0 )<br/>
* 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 <b>TRUE</b> if the opcode cache was reset, or <b>FALSE</b> if the opcode cache is disabled.
*/
function opcache_reset() { }

View File

@ -138,7 +138,7 @@ function getallheaders () {}
* virtual() is an Apache-specific function which is similar to <!--#include virtual...--> 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 <p>
* The file that the virtual command will be performed on.
* </p>

View File

@ -102,7 +102,7 @@ function cubrid_pconnect ($host, $port, $dbname, $userid = 'PUBLIC', $passwd = '
/**
* (PHP 5, CUBRID &gt;= 8.3.1)<br/>
* 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 <p>
* A character string that contains server connection information.<br />
* Syntax: 'CUBRID:&gt;host&lt;:&gt;port&lt;:&gt;dbname&lt;:&gt;username&lt;:&gt;password&lt;:?&gt;params&lt;'.<br />
@ -968,7 +968,7 @@ function cubrid_get_server_info ($conn_identifier) {}
/**
* (PHP 5, CUBRID &gt;= 8.3.0)<br/>
* 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 <p>
* Connection identifier.
* </p>
@ -996,7 +996,7 @@ function cubrid_get_autocommit ($conn_identifier) {}
/**
* (PHP 5, CUBRID &gt;= 8.3.0)<br/>
* 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 <p>
* Connection identifier.
* </p>
@ -1342,7 +1342,7 @@ function cubrid_lob_size ($lob_identifier) {}
* (PHP 5, CUBRID &gt;= 8.4.1)<br/>
* 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 <p>
* Reqeust identifier.
* </p>

View File

@ -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 <p>Path to the file which will be uploaded.</p>
* @param string $mimetype [optional] <p>Mimetype of the file.</p>
* @param string $postname [optional] <p>Name of the file.</p>
@ -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 &gt;=5.5.0)<br/>
* 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 <p>
* 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()}
* </p>
* @return void
* @since 5.5.0
@ -2144,7 +2144,7 @@ function curl_share_close ($sh) {}
/**
* (PHP 5 &gt;=5.5.0)<br/>
* 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 &gt;=5.5.0)<br/>
* 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 <p>
* 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()}.
* </p>
* @param int $option <table>
*
@ -2234,7 +2234,7 @@ function curl_share_setopt ($sh, $option, $value ) {}
/**
* (PHP 5 &gt;=5.5.0)<br/>
* 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 <p>
* One of the {@link http://curl.haxx.se/libcurl/c/libcurl-errors.html &nbsp;cURL error codes} constants.
* </p>
@ -2246,9 +2246,9 @@ function curl_strerror ($errornum ) {}
/**
* (PHP 5 &gt;=5.5.0)<br/>
* 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 <p>A cURL handle returned by
* {@link http://www.php.net/manual/en/function.curl-init.php curl_init()}.</p>
* {@link https://secure.php.net/manual/en/function.curl-init.php curl_init()}.</p>
* @param string $str <p>
* The URL encoded string to be decoded.
* </p>
@ -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 <p>
* A cURL handle returned by
* {@link http://www.php.net/manual/en/function.curl-init.php curl_init()}.</p>
* {@link https://secure.php.net/manual/en/function.curl-init.php curl_init()}.</p>
* @param string $str <p>
* The string to be encoded.</p>
* @return string|boolean Returns escaped string or FALSE on failure.
@ -2340,12 +2340,12 @@ function curl_escape($ch, $str) {}
/**
* (PHP 5 >= 5.5.0) <br/>
* 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 <p> Path to the file which will be uploaded.</p>
* @param string $mimetype [optional] <p>Mimetype of the file.</p>
* @param string $postname [optional] <p>Name of the file.</p>
* @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 &gt;=5.5.0)<br/>
* 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 <p>
* One of the <b>CURLMOPT_*</b> constants.
@ -2458,7 +2458,7 @@ function curl_multi_setopt ($mh, $option, $value) {}
/**
* (PHP 5 &gt;=5.5.0)<br/>
* 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 <p>
* One of the {@link http://curl.haxx.se/libcurl/c/libcurl-errors.html CURLM error codes} constants.
* </p>
@ -2470,9 +2470,9 @@ function curl_multi_strerror ($errornum) {}
/**
* (PHP 5 &gt;=5.5.0)<br/>
* 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
* <p>A cURL handle returned by {@link http://www.php.net/manual/en/function.curl-init.php curl_init()}.</p>
* <p>A cURL handle returned by {@link https://secure.php.net/manual/en/function.curl-init.php curl_init()}.</p>
* @param int $bitmask <p>One of <b>CURLPAUSE_*</b> constants.</p>
* @return int Returns an error code (<b>CURLE_OK</b> for no error).
* @since 5.5.0
@ -2482,9 +2482,9 @@ function curl_pause ($ch, $bitmask ) {}
/**
* (PHP 5 &gt;=5.5.0)<br/>
* 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 <p>A cURL handle returned by
* {@link www.php.net/manual/en/function.curl-init.php curl_init()}.</p>
* {@link https://secure.php.net/manual/en/function.curl-init.php curl_init()}.</p>
* @return void
* @since 5.5.0
*/

View File

@ -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 <b>FALSE</b> on failure.
* @since 5.2.0
*/

View File

@ -19,11 +19,11 @@ interface DateTimeInterface {
/**
* (PHP 5 &gt;=5.5.0)<br/>
* 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 <p>The date to compare to.</p>
* @param bool $absolute <p>Should the interval be forced to be positive?</p>
* @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 <b>FALSE</b> on failure.
*
*/
@ -32,9 +32,9 @@ interface DateTimeInterface {
/**
* (PHP 5 &gt;=5.5.0)<br/>
* 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 <p>
* 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()}.
* </p>
* @return string
* Returns the formatted date string on success or <b>FALSE</b> on failure.
@ -63,9 +63,9 @@ interface DateTimeInterface {
/**
* (PHP 5 &gt;=5.5.0)<br/>
* 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 <b>FALSE</b> on failure.
*/
public function getTimezone();
@ -73,7 +73,7 @@ interface DateTimeInterface {
/**
* (PHP 5 &gt;=5.5.0)<br/>
* 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 &gt;=5.5.0)<br/>
* @link http://www.php.net/manual/en/datetimeimmutable.construct.php
* @link https://secure.php.net/manual/en/datetimeimmutable.construct.php
* @param string $time [optional]
* <p>A date/time string. Valid formats are explained in {@link www.php.net/manual/en/datetime.formats.php Date and Time Formats}.</p>
* <p>A date/time string. Valid formats are explained in {@link https://secure.php.net/manual/en/datetime.formats.php Date and Time Formats}.</p>
* <p>
* Enter <b>NULL</b> here to obtain the current time when using
* the <em>$timezone</em> parameter.
* </p>
* @param DateTimeZone $timezone [optional] <p>
* 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 <em>$time</em>.
* </p>
* <p>
@ -122,7 +122,7 @@ class DateTimeImmutable implements DateTimeInterface {
/**
* (PHP 5 &gt;=5.5.0)<br/>
* 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 &gt;=5.6.0)<br/>
* 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 &gt;=5.5.0)<br/>
* 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 &gt;=5.5.0)<br/>
* 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 <p>A date/time string. Valid formats are explained in
* {@link http://www.php.net/manual/en/datetime.formats.php Date and Time Formats}.</p>
* {@link https://secure.php.net/manual/en/datetime.formats.php Date and Time Formats}.</p>
* @return static
* Returns the {@link http://www.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
* Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
*/
public function modify($modify) { }
@ -162,22 +162,22 @@ class DateTimeImmutable implements DateTimeInterface {
/**
* (PHP 5 &gt;=5.5.0)<br/>
* 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 <p>Initialization array.</p>
* @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 &gt;=5.5.0)<br/>
* 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 <p>Year of the date.</p>
* @param int $month <p>Month of the date.</p>
* @param int $day <p>Day of the date.</p>
* @return static|bool
* Returns the {@link http://www.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
* Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
*
*/
public function setDate($year, $month, $day) { }
@ -190,67 +190,67 @@ class DateTimeImmutable implements DateTimeInterface {
* @param int $week <p>Week of the date.</p>
* @param int $day [optional] <p>Offset from the first day of the week.</p>
* @return static|bool
* Returns the {@link http://www.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
* Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
*/
public function setISODate($year, $week, $day = 1) { }
/**
* (PHP 5 &gt;=5.5.0)<br/>
* 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 <p> Hour of the time. </p>
* @param int $minute <p> Minute of the time. </p>
* @param int $second [optional] <p> Second of the time. </p>
* @param int $microseconds [optional] <p> Microseconds of the time. </p>
* @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 <b>FALSE</b> on failure.
* Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
*/
public function setTime($hour, $minute, $second = 0, $microseconds = 0) { }
/**
* (PHP 5 &gt;=5.5.0)<br/>
* 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 <p>Unix timestamp representing the date.</p>
* @return static|bool
* Returns the {@link http://www.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
* Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
*/
public function setTimestamp($unixtimestamp) { }
/**
* (PHP 5 &gt;=5.5.0)<br/>
* 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 <p>
* 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.
* </p>
* @return static|bool
* Returns the {@link http://www.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
* Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
*/
public function setTimezone(DateTimeZone $timezone) { }
/**
* (PHP 5 &gt;=5.5.0)<br/>
* 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 <p>
* 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
* </p>
* @return static|bool
* Returns the {@link http://www.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
* Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
*/
public function sub(DateInterval $interval) { }
/**
* (PHP 5 &gt;=5.5.0)<br/>
* 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 <p>The date to compare to.</p>
* @param bool $absolute [optional] <p>Should the interval be forced to be positive?</p>
* @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 <b>FALSE</b> on failure.
*/
public function diff($datetime2, $absolute = false) { }
@ -258,9 +258,9 @@ class DateTimeImmutable implements DateTimeInterface {
/**
* (PHP 5 &gt;=5.5.0)<br/>
* 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 <p>
* 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()}.
* </p>
* @return string
* Returns the formatted date string on success or <b>FALSE</b> on failure.
@ -289,9 +289,9 @@ class DateTimeImmutable implements DateTimeInterface {
/**
* (PHP 5 &gt;=5.5.0)<br/>
* 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 <b>FALSE</b> on failure.
*/
public function getTimezone() { }
@ -299,7 +299,7 @@ class DateTimeImmutable implements DateTimeInterface {
/**
* (PHP 5 &gt;=5.5.0)<br/>
* 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 <a href="http://www.php.net/manual/en/datetime.formats.php">Date and Time Formats</a>.
* @param string $modify A date/time string. Valid formats are explained in <a href="https://secure.php.net/manual/en/datetime.formats.php">Date and Time Formats</a>.
* @return static Returns the DateTime object for method chaining or FALSE on failure.
* @link https://php.net/manual/en/datetime.modify.php
*/

View File

@ -28,7 +28,7 @@ class DOMNode {
* @var int
* @since 5.0
* Gets the type of the node. One of the predefined
* <a href="https://www.php.net/manual/en/dom.constants.php">XML_xxx_NODE</a> constants
* <a href="https://https://secure.php.net/manual/en/dom.constants.php">XML_xxx_NODE</a> 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) {}

View File

@ -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
{

View File

@ -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) {}

View File

@ -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.<br>
* 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.<br>
* 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
*/

View File

@ -72,7 +72,7 @@ function inotify_read( $inotify_instance )
* (PHP &gt;= 5.2.0, PECL inotify &gt;= 0.1.2)<br/>
* Removes the watch <i>$watch_descriptor</i> from the inotify instance <i>$inotify_instance</i>.
*
* @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 <p>resource returned by {@link https://php.net/manual/en/function.inotify-init.php inotify_init()}</p>
* @param int $watch_descriptor <p>watch to remove from the instance</p>

File diff suppressed because it is too large Load Diff

View File

@ -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 <p>
* The regular expression pattern.
* </p>

View File

@ -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

View File

@ -99,7 +99,7 @@ class MemcachePool {
/**
* (PECL memcache &gt;= 2.1.0)<br/>
* 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 <p>Point to the host where memcached is listening for connections.</p.
* @param int $port [optional] <p>
* 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 <b>persistent</b> 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()}.
* </p>
* @param bool $status [optional] <p>
* Controls if the server should be flagged as online. Setting this parameter
@ -235,7 +235,7 @@ class MemcachePool {
/**
* (PECL memcache &gt;= 0.2.0)<br/>
* 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 <b>TRUE</b> on success or <b>FALSE</b> on failure.

View File

@ -1255,7 +1255,7 @@ class Memcached {
/**
* (PECL memcached &gt;= 2.0.0)<br/>
* 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 <p>
* The username to use for authentication.
* </p>

File diff suppressed because it is too large Load Diff

View File

@ -2,7 +2,7 @@
/**
* MongoDB Extension Stub File
* @version 1.1.9
* Documentation taken from http://php.net/manual/en/set.mongodb.php
* Documentation taken from https://secure.php.net/manual/en/set.mongodb.php
* @author Anton Tuyakhov <atuyakhov@gmail.com>
*/
@ -134,7 +134,7 @@ namespace MongoDB {}
/**
* Preselect a MongoDB node based on provided readPreference. This can be useful to gurantee a command runs on a specific server when operating in a mixed version cluster.
* http://php.net/manual/en/mongodb-driver-manager.selectserver.php
* https://secure.php.net/manual/en/mongodb-driver-manager.selectserver.php
* @param ReadPreference $readPreference Optionally, a MongoDB\Driver\ReadPreference to route the command to. If none given, defaults to the Read Preferences set by the MongoDB Connection URI.
* @throws InvalidArgumentException on argument parsing errors.
* @throws ConnectionException if connection to the server fails (for reasons other than authentication).
@ -932,14 +932,14 @@ namespace MongoDB {}
/**
* Class Session
*
* @link http://www.php.net/manual/en/class.mongodb-driver-session.php
* @link https://secure.php.net/manual/en/class.mongodb-driver-session.php
* @since 1.4.0
*/
final class Session
{
/**
* Create a new Session (not used)
* @link http://www.php.net/manual/en/mongodb-driver-session.construct.php
* @link https://secure.php.net/manual/en/mongodb-driver-session.construct.php
* @since 1.4.0
*/
final private function __construct()
@ -948,7 +948,7 @@ namespace MongoDB {}
/**
* Aborts a transaction
* @link http://www.php.net/manual/en/mongodb-driver-session.aborttransaction.php
* @link https://secure.php.net/manual/en/mongodb-driver-session.aborttransaction.php
* @return void
* @since 1.5.0
*/
@ -958,7 +958,7 @@ namespace MongoDB {}
/**
* Advances the cluster time for this session
* @link http://www.php.net/manual/en/mongodb-driver-session.advanceclustertime.php
* @link https://secure.php.net/manual/en/mongodb-driver-session.advanceclustertime.php
* @return void
* @throws \MongoDB\Driver\Exception\InvalidArgumentException On argument parsing errors
* @since 1.4.0
@ -969,7 +969,7 @@ namespace MongoDB {}
/**
* Advances the operation time for this session
* @link http://www.php.net/manual/en/mongodb-driver-session.advanceoperationtime.php
* @link https://secure.php.net/manual/en/mongodb-driver-session.advanceoperationtime.php
* @param \MongoDB\BSON\TimestampInterface $operationTime
* @return void
* @throws \MongoDB\Driver\Exception\InvalidArgumentException On argument parsing errors
@ -980,7 +980,7 @@ namespace MongoDB {}
}
/**
* @link http://www.php.net/manual/en/mongodb-driver-session.committransaction.php
* @link https://secure.php.net/manual/en/mongodb-driver-session.committransaction.php
* @return void
* @throws InvalidArgumentException On argument parsing errors
* @throws CommandException If the server could not commit the transaction (e.g. due to conflicts,
@ -999,7 +999,7 @@ namespace MongoDB {}
* This method closes an existing session. If a transaction was associated with this session, this transaction is also aborted,
* and all its operations are rolled back.
*
* @link http://www.php.net/manual/en/mongodb-driver-session.endsession.php
* @link https://secure.php.net/manual/en/mongodb-driver-session.endsession.php
* @return void
* @throws \MongoDB\Driver\Exception\InvalidArgumentException On argument parsing errors
* @since 1.5.0
@ -1010,7 +1010,7 @@ namespace MongoDB {}
/**
* Returns the cluster time for this session
* @link http://www.php.net/manual/en/mongodb-driver-session.getclustertime.php
* @link https://secure.php.net/manual/en/mongodb-driver-session.getclustertime.php
* @return object|null
* @throws \MongoDB\Driver\Exception\InvalidArgumentException
* @since 1.4.0
@ -1021,7 +1021,7 @@ namespace MongoDB {}
/**
* Returns the logical session ID for this session
* @link http://www.php.net/manual/en/mongodb-driver-session.getlogicalsessionid.php
* @link https://secure.php.net/manual/en/mongodb-driver-session.getlogicalsessionid.php
* @return object Returns the logical session ID for this session
* @throws \MongoDB\Driver\Exception\InvalidArgumentException
* @since 1.4.0
@ -1032,7 +1032,7 @@ namespace MongoDB {}
/**
* Returns the operation time for this session, or NULL if the session has no operation time
* @link http://www.php.net/manual/en/mongodb-driver-session.getoperationtime.php
* @link https://secure.php.net/manual/en/mongodb-driver-session.getoperationtime.php
* @return \MongoDB\BSON\Timestamp|null
* @throws \MongoDB\Driver\Exception\InvalidArgumentException
* @since 1.4.0
@ -1043,7 +1043,7 @@ namespace MongoDB {}
/**
* Starts a transaction
* @link http://www.php.net/manual/en/mongodb-driver-session.starttransaction.php
* @link https://secure.php.net/manual/en/mongodb-driver-session.starttransaction.php
* @param array|object $options
* @return void
* @throws \MongoDB\Driver\Exception\InvalidArgumentException On argument parsing errors
@ -1143,7 +1143,7 @@ namespace MongoDB {}
* Base class for exceptions thrown by the server. The code of this exception and its subclasses will correspond to the original
* error code from the server.
*
* @link http://www.php.net/manual/en/class.mongodb-driver-exception-serverexception.php
* @link https://secure.php.net/manual/en/class.mongodb-driver-exception-serverexception.php
* @since 1.5.0
*/
class ServerException extends RuntimeException implements Exception
@ -1228,7 +1228,7 @@ namespace MongoDB {}
}
/**
* @link http://php.net/manual/en/mongodb.monitoring.php
* @link https://secure.php.net/manual/en/mongodb.monitoring.php
*/
namespace MongoDB\Driver\Monitoring {
@ -1236,7 +1236,7 @@ namespace MongoDB {}
* Registers a new monitoring event subscriber with the driver.
* Registered subscribers will be notified of monitoring events through specific methods.
* Note: If the object is already registered, this function is a no-op.
* @link http://php.net/manual/en/function.mongodb.driver.monitoring.addsubscriber.php
* @link https://secure.php.net/manual/en/function.mongodb.driver.monitoring.addsubscriber.php
* @param $subscriber Subscriber A monitoring event subscriber object to register.
* @return void
* @throws \InvalidArgumentException on argument parsing errors.
@ -1250,7 +1250,7 @@ namespace MongoDB {}
* Unregisters an existing monitoring event subscriber from the driver.
* Unregistered subscribers will no longer be notified of monitoring events.
* Note: If the object is not registered, this function is a no-op.
* @link http://php.net/manual/en/function.mongodb.driver.monitoring.removesubscriber.php
* @link https://secure.php.net/manual/en/function.mongodb.driver.monitoring.removesubscriber.php
* @param $subscriber Subscriber A monitoring event subscriber object to register.
* @throws \InvalidArgumentException on argument parsing errors.
* @since 1.3.0
@ -1263,7 +1263,7 @@ namespace MongoDB {}
* Base interface for event subscribers.
* This is used for type-hinting MongoDB\Driver\Monitoring\addSubscriber() and MongoDB\Driver\Monitoring\removeSubscriber() and should not be implemented directly.
* This interface has no methods. Its only purpose is to be the base interface for all event subscribers.
* @link http://php.net/manual/en/class.mongodb-driver-monitoring-subscriber.php
* @link https://secure.php.net/manual/en/class.mongodb-driver-monitoring-subscriber.php
* @since 1.3.0
*/
interface Subscriber
@ -1272,8 +1272,8 @@ namespace MongoDB {}
/**
* Classes may implement this interface to register an event subscriber that is notified for each started, successful, and failed command event.
* @see http://php.net/manual/en/mongodb.tutorial.apm.php
* @link http://php.net/manual/en/class.mongodb-driver-monitoring-commandsubscriber.php
* @see https://secure.php.net/manual/en/mongodb.tutorial.apm.php
* @link https://secure.php.net/manual/en/class.mongodb-driver-monitoring-commandsubscriber.php
* @since 1.3.0
*/
interface CommandSubscriber extends Subscriber
@ -1282,7 +1282,7 @@ namespace MongoDB {}
/**
* Notification method for a failed command.
* If the subscriber has been registered with MongoDB\Driver\Monitoring\addSubscriber(), the driver will call this method when a command has failed.
* @link http://php.net/manual/en/mongodb-driver-monitoring-commandsubscriber.commandfailed.php
* @link https://secure.php.net/manual/en/mongodb-driver-monitoring-commandsubscriber.commandfailed.php
* @param CommandFailedEvent $event An event object encapsulating information about the failed command.
* @return void
* @throws \InvalidArgumentException on argument parsing errors.
@ -1293,7 +1293,7 @@ namespace MongoDB {}
/**
* Notification method for a started command.
* If the subscriber has been registered with MongoDB\Driver\Monitoring\addSubscriber(), the driver will call this method when a command has started.
* @link http://php.net/manual/en/mongodb-driver-monitoring-commandsubscriber.commandstarted.php
* @link https://secure.php.net/manual/en/mongodb-driver-monitoring-commandsubscriber.commandstarted.php
* @param CommandStartedEvent $event An event object encapsulating information about the started command.
* @return void
* @throws \InvalidArgumentException on argument parsing errors.
@ -1304,7 +1304,7 @@ namespace MongoDB {}
/**
* Notification method for a successful command.
* If the subscriber has been registered with MongoDB\Driver\Monitoring\addSubscriber(), the driver will call this method when a command has succeeded.
* @link http://php.net/manual/en/mongodb-driver-monitoring-commandsubscriber.commandsucceeded.php
* @link https://secure.php.net/manual/en/mongodb-driver-monitoring-commandsubscriber.commandsucceeded.php
* @param CommandSucceededEvent $event An event object encapsulating information about the successful command.
* @return void
* @throws \InvalidArgumentException on argument parsing errors.
@ -1316,14 +1316,14 @@ namespace MongoDB {}
/**
* Encapsulates information about a successful command.
* @link http://php.net/manual/en/class.mongodb-driver-monitoring-commandsucceededevent.php
* @link https://secure.php.net/manual/en/class.mongodb-driver-monitoring-commandsucceededevent.php
* @since 1.3.0
*/
class CommandSucceededEvent
{
/**
* Returns the command name.
* @link http://php.net/manual/en/mongodb-driver-monitoring-commandsucceededevent.getcommandname.php
* @link https://secure.php.net/manual/en/mongodb-driver-monitoring-commandsucceededevent.getcommandname.php
* @return string The command name (e.g. "find", "aggregate").
* @throws \InvalidArgumentException on argument parsing errors.
* @since 1.3.0
@ -1335,7 +1335,7 @@ namespace MongoDB {}
/**
* Returns the command's duration in microseconds
* The command's duration is a calculated value that includes the time to send the message and receive the reply from the server.
* @link http://php.net/manual/en/mongodb-driver-monitoring-commandsucceededevent.getdurationmicros.php
* @link https://secure.php.net/manual/en/mongodb-driver-monitoring-commandsucceededevent.getdurationmicros.php
* @return int the command's duration in microseconds.
* @throws \InvalidArgumentException on argument parsing errors.
* @since 1.3.0
@ -1348,7 +1348,7 @@ namespace MongoDB {}
* Returns the command's operation ID.
* The operation ID is generated by the driver and may be used to link events together such as bulk write operations, which may have been split across several commands at the protocol level.
* Note: Since multiple commands may share the same operation ID, it is not reliable to use this value to associate event objects with each other. The request ID returned by MongoDB\Driver\Monitoring\CommandSucceededEvent::getRequestId() should be used instead.
* @link http://php.net/manual/en/mongodb-driver-monitoring-commandsucceededevent.getoperationid.php
* @link https://secure.php.net/manual/en/mongodb-driver-monitoring-commandsucceededevent.getoperationid.php
* @return string the command's operation ID.
* @throws \InvalidArgumentException on argument parsing errors.
* @since 1.3.0
@ -1360,7 +1360,7 @@ namespace MongoDB {}
/**
* Returns the command reply document.
* The reply document will be converted from BSON to PHP using the default deserialization rules (e.g. BSON documents will be converted to stdClass).
* @link http://php.net/manual/en/mongodb-driver-monitoring-commandsucceededevent.getreply.php
* @link https://secure.php.net/manual/en/mongodb-driver-monitoring-commandsucceededevent.getreply.php
* @return object the command reply document as a stdClass object.
* @throws \InvalidArgumentException on argument parsing errors.
* @since 1.3.0
@ -1372,7 +1372,7 @@ namespace MongoDB {}
/**
* Returns the command's request ID.
* The request ID is generated by the driver and may be used to associate this CommandSucceededEvent with a previous CommandStartedEvent.
* @link http://php.net/manual/en/mongodb-driver-monitoring-commandsucceededevent.getrequestid.php
* @link https://secure.php.net/manual/en/mongodb-driver-monitoring-commandsucceededevent.getrequestid.php
* @return string the command's request ID.
* @throws \InvalidArgumentException on argument parsing errors.
* @since 1.3.0
@ -1383,7 +1383,7 @@ namespace MongoDB {}
/**
* Returns the Server on which the command was executed.
* @link http://php.net/manual/en/mongodb-driver-monitoring-commandsucceededevent.getserver.php
* @link https://secure.php.net/manual/en/mongodb-driver-monitoring-commandsucceededevent.getserver.php
* @return \MongoDB\Driver\Server on which the command was executed.
* @since 1.3.0
*/
@ -1394,14 +1394,14 @@ namespace MongoDB {}
/**
* Encapsulates information about a failed command.
* @link http://php.net/manual/en/class.mongodb-driver-monitoring-commandfailedevent.php
* @link https://secure.php.net/manual/en/class.mongodb-driver-monitoring-commandfailedevent.php
* @since 1.3.0
*/
class CommandFailedEvent
{
/**
* Returns the command name.
* @link http://php.net/manual/en/mongodb-driver-monitoring-commandfailedevent.getcommandname.php
* @link https://secure.php.net/manual/en/mongodb-driver-monitoring-commandfailedevent.getcommandname.php
* @return string The command name (e.g. "find", "aggregate").
* @throws \InvalidArgumentException on argument parsing errors.
* @since 1.3.0
@ -1413,7 +1413,7 @@ namespace MongoDB {}
/**
* Returns the command's duration in microseconds
* The command's duration is a calculated value that includes the time to send the message and receive the reply from the server.
* @link http://php.net/manual/en/mongodb-driver-monitoring-commandfailedevent.getdurationmicros.php
* @link https://secure.php.net/manual/en/mongodb-driver-monitoring-commandfailedevent.getdurationmicros.php
* @return int the command's duration in microseconds.
* @throws \InvalidArgumentException on argument parsing errors.
* @since 1.3.0
@ -1424,7 +1424,7 @@ namespace MongoDB {}
/**
* Returns the Exception associated with the failed command
* @link http://php.net/manual/en/mongodb-driver-monitoring-commandfailedevent.geterror.php
* @link https://secure.php.net/manual/en/mongodb-driver-monitoring-commandfailedevent.geterror.php
* @return \Exception
* @throws \InvalidArgumentException on argument parsing errors.
* @since 1.3.0
@ -1437,7 +1437,7 @@ namespace MongoDB {}
* Returns the command's operation ID.
* The operation ID is generated by the driver and may be used to link events together such as bulk write operations, which may have been split across several commands at the protocol level.
* Note: Since multiple commands may share the same operation ID, it is not reliable to use this value to associate event objects with each other. The request ID returned by MongoDB\Driver\Monitoring\CommandSucceededEvent::getRequestId() should be used instead.
* @link http://php.net/manual/en/mongodb-driver-monitoring-commandfailedevent.getoperationid.php
* @link https://secure.php.net/manual/en/mongodb-driver-monitoring-commandfailedevent.getoperationid.php
* @return string the command's operation ID.
* @throws \InvalidArgumentException on argument parsing errors.
* @since 1.3.0
@ -1449,7 +1449,7 @@ namespace MongoDB {}
/**
* Returns the command reply document.
* The reply document will be converted from BSON to PHP using the default deserialization rules (e.g. BSON documents will be converted to stdClass).
* @link http://php.net/manual/en/mongodb-driver-monitoring-commandfailedevent.getreply.php
* @link https://secure.php.net/manual/en/mongodb-driver-monitoring-commandfailedevent.getreply.php
* @return object the command reply document as a stdClass object.
* @throws \InvalidArgumentException on argument parsing errors.
* @since 1.3.0
@ -1461,7 +1461,7 @@ namespace MongoDB {}
/**
* Returns the command's request ID.
* The request ID is generated by the driver and may be used to associate this CommandSucceededEvent with a previous CommandStartedEvent.
* @link http://php.net/manual/en/mongodb-driver-monitoring-commandfailedevent.getrequestid.php
* @link https://secure.php.net/manual/en/mongodb-driver-monitoring-commandfailedevent.getrequestid.php
* @return string the command's request ID.
* @throws \InvalidArgumentException on argument parsing errors.
* @since 1.3.0
@ -1472,7 +1472,7 @@ namespace MongoDB {}
/**
* Returns the Server on which the command was executed.
* @link http://php.net/manual/en/mongodb-driver-monitoring-commandfailedevent.getserver.php
* @link https://secure.php.net/manual/en/mongodb-driver-monitoring-commandfailedevent.getserver.php
* @return \MongoDB\Driver\Server on which the command was executed.
* @since 1.3.0
*/
@ -1483,7 +1483,7 @@ namespace MongoDB {}
/**
* Encapsulates information about a failed command.
* @link http://php.net/manual/en/class.mongodb-driver-monitoring-commandstartedevent.php
* @link https://secure.php.net/manual/en/class.mongodb-driver-monitoring-commandstartedevent.php
* @since 1.3.0
*/
class CommandStartedEvent
@ -1492,7 +1492,7 @@ namespace MongoDB {}
/**
* Returns the command document
* The reply document will be converted from BSON to PHP using the default deserialization rules (e.g. BSON documents will be converted to stdClass).
* @link http://php.net/manual/en/mongodb-driver-monitoring-commandstartedevent.getcommand.php
* @link https://secure.php.net/manual/en/mongodb-driver-monitoring-commandstartedevent.getcommand.php
* @return string the command document as a stdClass object.
* @throws \InvalidArgumentException on argument parsing errors.
* @since 1.3.0
@ -1504,7 +1504,7 @@ namespace MongoDB {}
/**
* Returns the command name.
* @link http://php.net/manual/en/mongodb-driver-monitoring-commandstartedevent.getcommandname.php
* @link https://secure.php.net/manual/en/mongodb-driver-monitoring-commandstartedevent.getcommandname.php
* @return string The command name (e.g. "find", "aggregate").
* @throws \InvalidArgumentException on argument parsing errors.
* @since 1.3.0
@ -1515,7 +1515,7 @@ namespace MongoDB {}
/**
* Returns the database on which the command was executed.
* @link http://php.net/manual/en/mongodb-driver-monitoring-commandstartedevent.getdatabasename.php
* @link https://secure.php.net/manual/en/mongodb-driver-monitoring-commandstartedevent.getdatabasename.php
* @return string the database on which the command was executed.
* @throws \InvalidArgumentException on argument parsing errors.
* @since 1.3.0
@ -1528,7 +1528,7 @@ namespace MongoDB {}
* Returns the command's operation ID.
* The operation ID is generated by the driver and may be used to link events together such as bulk write operations, which may have been split across several commands at the protocol level.
* Note: Since multiple commands may share the same operation ID, it is not reliable to use this value to associate event objects with each other. The request ID returned by MongoDB\Driver\Monitoring\CommandSucceededEvent::getRequestId() should be used instead.
* @link http://php.net/manual/en/mongodb-driver-monitoring-commandstartedevent.getoperationid.php
* @link https://secure.php.net/manual/en/mongodb-driver-monitoring-commandstartedevent.getoperationid.php
* @return string the command's operation ID.
* @throws \InvalidArgumentException on argument parsing errors.
* @since 1.3.0
@ -1541,7 +1541,7 @@ namespace MongoDB {}
/**
* Returns the command's request ID.
* The request ID is generated by the driver and may be used to associate this CommandSucceededEvent with a previous CommandStartedEvent.
* @link http://php.net/manual/en/mongodb-driver-monitoring-commandstartedevent.getrequestid.php
* @link https://secure.php.net/manual/en/mongodb-driver-monitoring-commandstartedevent.getrequestid.php
* @return string the command's request ID.
* @throws \InvalidArgumentException on argument parsing errors.
* @since 1.3.0
@ -1552,7 +1552,7 @@ namespace MongoDB {}
/**
* Returns the Server on which the command was executed.
* @link http://php.net/manual/en/mongodb-driver-monitoring-commandstartedevent.getserver.php
* @link https://secure.php.net/manual/en/mongodb-driver-monitoring-commandstartedevent.getserver.php
* @return \MongoDB\Driver\Server on which the command was executed.
* @since 1.3.0
*/
@ -1934,7 +1934,7 @@ namespace MongoDB {}
/**
* Returns the increment component of this TimestampInterface
*
* @link http://www.php.net/manual/en/mongodb-bson-timestampinterface.getincrement.php
* @link https://secure.php.net/manual/en/mongodb-bson-timestampinterface.getincrement.php
* @return int
*/
public function getIncrement()
@ -1944,7 +1944,7 @@ namespace MongoDB {}
/**
* Returns the timestamp component of this TimestampInterface
*
* @link http://www.php.net/manual/en/mongodb-bson-timestampinterface.gettimestamp.php
* @link https://secure.php.net/manual/en/mongodb-bson-timestampinterface.gettimestamp.php
* @return int
*/
public function getTimestamp()
@ -2105,14 +2105,14 @@ namespace MongoDB {}
/**
* Interface TimestampInterface
*
* @link http://php.net/manual/en/class.mongodb-bson-timestampinterface.php
* @link https://secure.php.net/manual/en/class.mongodb-bson-timestampinterface.php
* @since 1.3.0
*/
interface TimestampInterface
{
/**
* Returns the increment component of this TimestampInterface
* @link http://www.php.net/manual/en/mongodb-bson-timestampinterface.getincrement.php
* @link https://secure.php.net/manual/en/mongodb-bson-timestampinterface.getincrement.php
* @return int
* @since 1.3.0
*/
@ -2120,7 +2120,7 @@ namespace MongoDB {}
/**
* Returns the timestamp component of this TimestampInterface
* @link http://www.php.net/manual/en/mongodb-bson-timestampinterface.gettimestamp.php
* @link https://secure.php.net/manual/en/mongodb-bson-timestampinterface.gettimestamp.php
* @return int
* @since 1.3.0
*/
@ -2128,7 +2128,7 @@ namespace MongoDB {}
/**
* Returns the string representation of this TimestampInterface
* @link http://www.php.net/manual/en/mongodb-bson-timestampinterface.tostring.php
* @link https://secure.php.net/manual/en/mongodb-bson-timestampinterface.tostring.php
* @return string
* @since 1.3.0
*/

View File

@ -1,7 +1,7 @@
<?php
/**
* Start of mysql_xdevapi extension stubs
* @link http://php.net/manual/en/book.mysql-xdevapi.php
* @link https://secure.php.net/manual/en/book.mysql-xdevapi.php
* @version 0.2 2018-08-09
* @author Jorge Castro C jcastro@eftec.cl
* @todo It only adds the basic features. It misses the rest of features.
@ -15,7 +15,7 @@ define('MYSQLX_LOCK_SKIP_LOCKED',2);
/**
* @link http://php.net/manual/en/function.mysql-xdevapi-getsession.php
* @link https://secure.php.net/manual/en/function.mysql-xdevapi-getsession.php
* @param string $uri The URI to the MySQL server, such as mysqlx://user:password@host.
* @return \mysql_xdevapi\Session
*/
@ -30,7 +30,7 @@ class Collection {
/**
* Adds a document to the collection
* @link http://php.net/manual/en/mysql-xdevapi-collection.add.php
* @link https://secure.php.net/manual/en/mysql-xdevapi-collection.add.php
* @param mixed $document
* @return \mysql_xdevapi\CollectionAdd
*/
@ -38,7 +38,7 @@ class Collection {
/**
* Add or replace collection document
* @link http://php.net/manual/en/mysql-xdevapi-collection.addorreplaceone.php
* @link https://secure.php.net/manual/en/mysql-xdevapi-collection.addorreplaceone.php
* @param string $id
* @param mixed $document
* @return \mysql_xdevapi\Result
@ -46,7 +46,7 @@ class Collection {
public function addOrReplaceOne($id,$document) {}
/**
* @link http://php.net/manual/en/mysql-xdevapi-collection.find.php
* @link https://secure.php.net/manual/en/mysql-xdevapi-collection.find.php
* @param string $search_condition
* @return \mysql_xdevapi\CollectionFind
*/
@ -70,7 +70,7 @@ class Collection {
class Session {
/**
* Get the schema
* @link http://php.net/manual/en/mysql-xdevapi-session.getschema.php
* @link https://secure.php.net/manual/en/mysql-xdevapi-session.getschema.php
* @param string $schema_name name of the schema
* @return \mysql_xdevapi\Schema
*/
@ -78,7 +78,7 @@ class Session {
/**
* Creates a the schema
* @link http://php.net/manual/en/mysql-xdevapi-session.createschema.php
* @link https://secure.php.net/manual/en/mysql-xdevapi-session.createschema.php
* @param string $schema_name name of the schema
* @return \mysql_xdevapi\Schema
* @throws \mysql_xdevapi\Exception
@ -129,7 +129,7 @@ interface CrudOperationSortable {
/**
* Class CollectionFind
* @http://php.net/manual/en/class.mysql-xdevapi-collectionfind.php
* @https://secure.php.net/manual/en/class.mysql-xdevapi-collectionfind.php
* @package mysql_xdevapi
*/
class CollectionFind implements \mysql_xdevapi\Executable
@ -139,14 +139,14 @@ class CollectionFind implements \mysql_xdevapi\Executable
{
/**
* Execute the statement
* @link http://php.net/manual/en/mysql-xdevapi-collectionfind.execute.php
* @link https://secure.php.net/manual/en/mysql-xdevapi-collectionfind.execute.php
* @return \mysql_xdevapi\DocResult
*/
public function execute() {}
/**
* Execute operation with EXCLUSIVE LOCK
* @link http://php.net/manual/en/mysql-xdevapi-collectionfind.lockexclusive.php
* @link https://secure.php.net/manual/en/mysql-xdevapi-collectionfind.lockexclusive.php
* @param mixed $lock_waiting_option MYSQLX_LOCK_*
* @return \mysql_xdevapi\CollectionFind
*/
@ -154,7 +154,7 @@ class CollectionFind implements \mysql_xdevapi\Executable
/**
* Execute operation with SHARED LOCK
* @link http://php.net/manual/en/mysql-xdevapi-collectionfind.lockshared.php
* @link https://secure.php.net/manual/en/mysql-xdevapi-collectionfind.lockshared.php
* @param mixed $lock_waiting_option MYSQLX_LOCK_*
* @return \mysql_xdevapi\CollectionFind
*/
@ -167,7 +167,7 @@ class CollectionFind implements \mysql_xdevapi\Executable
class Schema {
/**
* Get collection from schema
* @link http://php.net/manual/en/mysql-xdevapi-schema.getcollection.php
* @link https://secure.php.net/manual/en/mysql-xdevapi-schema.getcollection.php
* @param string $name name of the collection
* @return \mysql_xdevapi\Collection
*/
@ -175,7 +175,7 @@ class Schema {
/**
* Add collection to schema
* @link http://php.net/manual/en/mysql-xdevapi-schema.createcollection.php
* @link https://secure.php.net/manual/en/mysql-xdevapi-schema.createcollection.php
* @param $name
* @return \mysql_xdevapi\Collection
*/
@ -192,7 +192,7 @@ class Exception extends \RuntimeException implements \Throwable {
/**
* interface BaseResult
* @link http://php.net/manual/en/class.mysql-xdevapi-baseresult.php
* @link https://secure.php.net/manual/en/class.mysql-xdevapi-baseresult.php
* @package mysql_xdevapi
*/
interface BaseResult {
@ -207,14 +207,14 @@ class DocResult implements \mysql_xdevapi\BaseResult , \Traversable {
/**
* Get one row
* @link http://php.net/manual/en/mysql-xdevapi-docresult.fetchone.php
* @link https://secure.php.net/manual/en/mysql-xdevapi-docresult.fetchone.php
* @return object
*/
public function fetchOne() {}
/**
* Get all rows
* @link http://php.net/manual/en/mysql-xdevapi-docresult.fetchall.php
* @link https://secure.php.net/manual/en/mysql-xdevapi-docresult.fetchall.php
* @return array
*/
public function fetchAll() {}
@ -222,21 +222,21 @@ class DocResult implements \mysql_xdevapi\BaseResult , \Traversable {
/**
* Class Result
* @http://php.net/manual/en/class.mysql-xdevapi-result.php
* @https://secure.php.net/manual/en/class.mysql-xdevapi-result.php
* @package mysql_xdevapi
*/
class Result implements \mysql_xdevapi\BaseResult , \Traversable {
/**
* Get generated ids. The id is the type of "00005b650a8b000000000000000e"
* @link http://php.net/manual/en/mysql-xdevapi-result.getgeneratedids.php
* @link https://secure.php.net/manual/en/mysql-xdevapi-result.getgeneratedids.php
* @return string[]
*/
public function getGeneratedIds() {}
/**
* Get affected row count
* @link http://php.net/manual/en/mysql-xdevapi-sqlstatementresult.getaffecteditemscount.php
* @link https://secure.php.net/manual/en/mysql-xdevapi-sqlstatementresult.getaffecteditemscount.php
* @return integer
*/
public function getAffectedItemsCount() {}
@ -245,14 +245,14 @@ class Result implements \mysql_xdevapi\BaseResult , \Traversable {
/**
* Class CollectionAdd
* @link http://php.net/manual/en/class.mysql-xdevapi-collectionadd.php
* @link https://secure.php.net/manual/en/class.mysql-xdevapi-collectionadd.php
* @package mysql_xdevapi
*/
class CollectionAdd {
/**
* Execute the statement
* @link http://php.net/manual/en/mysql-xdevapi-collectionadd.execute.php
* @link https://secure.php.net/manual/en/mysql-xdevapi-collectionadd.execute.php
* @return \mysql_xdevapi\Result
*/
public function execute() {}

View File

@ -121,7 +121,7 @@ class mysqli {
/**
* @var array A list of errors, each as an associative array containing the errno, error, and sqlstate.
* @link http://www.php.net/manual/en/mysqli.error-list.php
* @link https://secure.php.net/manual/en/mysqli.error-list.php
*/
public $error_list;
@ -159,7 +159,7 @@ class mysqli {
/**
* Starts a transaction
* @link http://www.php.net/manual/en/mysqli.begin-transaction.php
* @link https://secure.php.net/manual/en/mysqli.begin-transaction.php
* @param int $flags [optional]
* @param string $name [optional]
* @return bool true on success or false on failure.
@ -621,7 +621,7 @@ class mysqli {
* @param string $escapestr The string to be escaped.
* Characters encoded are NUL (ASCII 0), \n, \r, \, ', ", and Control-Z.
* @return string
* @link http://www.php.net/manual/en/mysqli.real-escape-string.php
* @link https://secure.php.net/manual/en/mysqli.real-escape-string.php
*/
public function escape_string ($escapestr) {}
@ -661,7 +661,7 @@ class mysqli {
/**
* Set a named transaction savepoint
* @link http://www.php.net/manual/en/mysqli.savepoint.php
* @link https://secure.php.net/manual/en/mysqli.savepoint.php
* @param string $name
* @return bool Returns TRUE on success or FALSE on failure.
* @since 5.5.0
@ -699,7 +699,7 @@ class mysqli {
/**
* Used for establishing secure connections using SSL
* @link http://www.php.net/manual/en/mysqli.ssl-set.php
* @link https://secure.php.net/manual/en/mysqli.ssl-set.php
* @param $key <p>
* The path name to the key file.
* </p>
@ -1512,7 +1512,7 @@ class mysqli_stmt {
/**
* (PHP 5)<p>
* Gets the number of affected rows in a previous MySQL operation
* @link http://www.php.net/manual/en/mysqli.affected-rows.php
* @link https://secure.php.net/manual/en/mysqli.affected-rows.php
* @param mysqli $link A link identifier returned by mysqli_connect() or mysqli_init()
* @return int An integer greater than zero indicates the number of rows affected or retrieved.
* Zero indicates that no records where updated for an UPDATE statement,
@ -1522,7 +1522,7 @@ function mysqli_affected_rows ($link) {}
/**
* Turns on or off auto-committing database modifications
* @link http://www.php.net/manual/en/mysqli.autocommit.php
* @link https://secure.php.net/manual/en/mysqli.autocommit.php
* @param mysqli $link A link identifier returned by mysqli_connect() or mysqli_init()
* @param bool $mode Whether to turn on auto-commit or not.
* @return bool
@ -1531,7 +1531,7 @@ function mysqli_autocommit ($link, $mode) {}
/**
* Starts a transaction
* @link http://www.php.net/manual/en/mysqli.begin-transaction.php
* @link https://secure.php.net/manual/en/mysqli.begin-transaction.php
* @param mysqli $link A link identifier returned by mysqli_connect() or mysqli_init()
* @param int $flags [optional]
* @param string $name [optional]
@ -1648,7 +1648,7 @@ function mysqli_error_list ($link) {}
/**
* Returns a list of errors from the last statement executed
* PHP > 5.4.0 </br>
* @link http://docs.php.net/manual/da/mysqli-stmt.error-list.php
* @link https://secure.php.net/manual/en/mysqli-stmt.error-list.php
* @param mysqli_stmt $stmt A statement identifier returned by mysqli_stmt_init().
* @return array A list of errors, each as an associative array containing the errno, error, and sqlstate.
*/
@ -1656,7 +1656,7 @@ function mysqli_stmt_error_list ($stmt) {}
/**
* Returns a string description of the last error
* @link http://docs.php.net/manual/da/mysqli.error.php
* @link https://secure.php.net/manual/en/mysqli.error.php
* @param mysqli $link A link identifier returned by mysqli_connect() or mysqli_init()
* @return string
*/
@ -1682,7 +1682,7 @@ function mysqli_execute ($stmt) {}
/**
* Returns the next field in the result set
* @link http://fr2.php.net/manual/en/mysqli-result.fetch-field.php
* @link https://secure.php.net/manual/en/mysqli-result.fetch-field.php
* @param mysqli_result $result A result set identifier returned by mysqli_query(),
* mysqli_store_result() or mysqli_use_result().
* @return object|bool Returns an object which contains field definition information or FALSE if no field information is available.
@ -1691,7 +1691,7 @@ function mysqli_fetch_field ($result) {}
/**
* Returns an array of objects representing the fields in a result set
* @link http://fr2.php.net/manual/en/mysqli-result.fetch-fields.php
* @link https://secure.php.net/manual/en/mysqli-result.fetch-fields.php
* @param mysqli_result $result A result set identifier returned by mysqli_query(),
* mysqli_store_result() or mysqli_use_result().
* @return array|bool Returns an array of objects which contains field definition information or FALSE if no field information is available.
@ -1700,7 +1700,7 @@ function mysqli_fetch_fields ($result) {}
/**
* Fetch meta-data for a single field
* @link http://fr2.php.net/manual/en/mysqli-result.fetch-field-direct.php
* @link https://secure.php.net/manual/en/mysqli-result.fetch-field-direct.php
* @param mysqli_result $result A result set identifier returned by mysqli_query(),
* mysqli_store_result() or mysqli_use_result().
* @param int $fieldnr The field number. This value must be in the range from 0 to number of fields - 1.
@ -2179,7 +2179,7 @@ function mysqli_reap_async_query ($link) {}
/**
* Set a named transaction savepoint
* @link http://www.php.net/manual/en/mysqli.release-savepoint.php
* @link https://secure.php.net/manual/en/mysqli.release-savepoint.php
* @param mysqli $link A link identifier returned by mysqli_connect() or mysqli_init()
* @param string $name
* @return bool Returns TRUE on success or FALSE on failure.
@ -2197,7 +2197,7 @@ function mysqli_rollback ($link) {}
/**
* Set a named transaction savepoint
* @link http://www.php.net/manual/en/mysqli.savepoint.php
* @link https://secure.php.net/manual/en/mysqli.savepoint.php
* @param mysqli $link A link identifier returned by mysqli_connect() or mysqli_init()
* @param string $name
* @return bool Returns TRUE on success or FALSE on failure.
@ -2417,7 +2417,7 @@ function mysqli_stat ($link) {}
/**
* Used for establishing secure connections using SSL
* @link http://www.php.net/manual/en/mysqli.ssl-set.php
* @link https://secure.php.net/manual/en/mysqli.ssl-set.php
* @param mysqli $link A link identifier returned by mysqli_connect() or mysqli_init()
* @param string $key The path name to the key file
* @param string $cert The path name to the certificate file

View File

@ -779,7 +779,7 @@ function openssl_open($sealed_data, &$open_data, $env_key, $priv_key_id, $method
/**
* Generates a PKCS5 v2 PBKDF2 string, defaults to SHA-1
* @link http://www.php.net/manual/en/function.openssl-pbkdf2.php
* @link https://secure.php.net/manual/en/function.openssl-pbkdf2.php
* @param string $password
* @param string $salt
* @param int $key_length

View File

@ -19,14 +19,14 @@
* Note that this will override and prevent a salt from being automatically generated.
* </p>
* <p>
* If omitted, a random salt will be generated by {@link "http://www.php.net/manual/en/function.password-hash.php" password_hash()} for
* If omitted, a random salt will be generated by {@link "https://secure.php.net/manual/en/function.password-hash.php" password_hash()} for
* each password hashed. This is the intended mode of operation.
* </p>
* </li>
* <li>
* <p>
* <em>cost</em> - which denotes the algorithmic cost that should be used.
* Examples of these values can be found on the {@link "http://www.php.net/manual/en/function.crypt.php crypt()"} page.
* Examples of these values can be found on the {@link "https://secure.php.net/manual/en/function.crypt.php crypt()"} page.
* </p>
* <p>
* If ommitted, a default value of <em>10</em> will be used. This is a good
@ -34,7 +34,7 @@
* </p>
* </li>
* </ul>
* @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 &gt;= 5.5.0, PHP 5)<br/>
*
* 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:
* <ul>
* <li>
* <em>algo</em>, which will match a
* {@link http://www.php.net/manual/en/password.constants.php password algorithm constant}
* {@link https://secure.php.net/manual/en/password.constants.php password algorithm constant}
* </li>
* <li>
* <em>algoName</em>, which has the human readable name of the algorithm
* </li>
* <li>
* <em>options</em>, which includes the options
* provided when calling @link http://www.php.net/manual/en/function.password-hash.php" password_hash()
* provided when calling @link https://secure.php.net/manual/en/function.password-hash.php" password_hash()
* </li>
* </ul>
* @since 5.5.0
@ -143,10 +143,10 @@ function password_get_info ($hash) {}
* (PHP 5 &gt;= 5.5.0, PHP 5)<br/>
*
* 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 <a href="http://www.php.net/manual/en/password.constants.php" class="link">password algorithm constant</a> denoting the algorithm to use when hashing the password.
* @param array $options [optional] <p> An associative array containing options. See the <a href="http://www.php.net/manual/en/password.constants.php" class="link">password algorithm constants</a> for documentation on the supported options for each algorithm.
* @param int $algo A <a href="https://secure.php.net/manual/en/password.constants.php" class="link">password algorithm constant</a> denoting the algorithm to use when hashing the password.
* @param array $options [optional] <p> An associative array containing options. See the <a href="https://secure.php.net/manual/en/password.constants.php" class="link">password algorithm constants</a> for documentation on the supported options for each algorithm.
* If omitted, a random salt will be created and the default cost will be used.
* <b>Warning<b>
* <p>
@ -162,9 +162,9 @@ function password_hash ($password, $algo, $options = null) {}
* (PHP 5 &gt;= 5.5.0, PHP 5)<br/>
*
* 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 <a href="http://www.php.net/manual/en/password.constants.php" class="link">password algorithm constant</a> denoting the algorithm to use when hashing the password.
* @param int $algo A <a href="https://secure.php.net/manual/en/password.constants.php" class="link">password algorithm constant</a> denoting the algorithm to use when hashing the password.
* @param array $options [optional] <p> 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 &gt;= 5.5.0, PHP 5)<br/>
*
* 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.

View File

@ -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){}

View File

@ -62,7 +62,7 @@ define('PTHREADS_ALLOW_HEADERS', 16777216);
* Workers.<br/>
* 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 &gt;= 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 <p>The maximum number of Workers this Pool can create</p>
* @param string $class <p>The class for new Workers</p>
* @param array $ctor <p>An array of arguments to be passed to new Workers</p>
@ -115,7 +115,7 @@ class Pool {
* (PECL pthreads &gt;= 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 &gt;= 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 <p>The maximum number of Workers this Pool can create</p>
* @return void
*/
@ -133,7 +133,7 @@ class Pool {
/**
* (PECL pthreads &gt;= 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 &gt;= 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 <p>the identifier of the Worker executing the object</p>
*/
@ -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 <p>The worker for execution</p>
* @param Threaded $task <p>The task for execution</p>
* @return integer <p>the identifier of the Worker that accepted the object</p>
@ -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 &gt;= 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 <p>The number of items to fetch</p>
* @param boolean $preserve <p>Preserve the keys of members, by default false</p>
* @return array <p>An array of items from the objects property table</p>
@ -184,7 +184,7 @@ class Threaded implements Traversable, Countable, ArrayAccess {
/**
* (PECL pthreads &gt;= 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 <p>Returns the number of properties for this object</p>
*/
public function count() {}
@ -192,7 +192,7 @@ class Threaded implements Traversable, Countable, ArrayAccess {
/**
* (PECL pthreads &gt;= 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 <p>array containing the termination conditions of the referenced object</p>
*/
public function getTerminationInfo() {}
@ -200,7 +200,7 @@ class Threaded implements Traversable, Countable, ArrayAccess {
/**
* (PECL pthreads &gt;= 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 &gt;= 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 &gt;= 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 <p>A boolean indication of state</p>
*/
public function isWaiting() {}
@ -226,7 +226,7 @@ class Threaded implements Traversable, Countable, ArrayAccess {
* (PECL pthreads &gt;= 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 &gt;= 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 &gt;= 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 &gt;= 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 &gt;= 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 &gt;= 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 &gt;= 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 &gt;= 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 &gt;= 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.<br/>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 &gt;= 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 &gt;= 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 <p>A numeric identity</p>
*/
public function getCreatorId() {}
@ -399,7 +399,7 @@ class Thread extends Threaded implements Traversable, Countable, ArrayAccess {
/**
* (PECL pthreads &gt;= 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 <p>An object representing the currently executing Thread</p>
*/
public static function getCurrentThread() {}
@ -407,7 +407,7 @@ class Thread extends Threaded implements Traversable, Countable, ArrayAccess {
/**
* (PECL pthreads &gt;= 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 <p>A numeric identity</p>
*/
public static function getCurrentThreadId() {}
@ -415,7 +415,7 @@ class Thread extends Threaded implements Traversable, Countable, ArrayAccess {
/**
* (PECL pthreads &gt;= 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 <p>A numeric identity</p>
*/
public function getThreadId() {}
@ -423,7 +423,7 @@ class Thread extends Threaded implements Traversable, Countable, ArrayAccess {
/**
* (PECL pthreads &gt;= 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 <p>The return value of the Callable</p>
*/
public static function globally() {}
@ -431,7 +431,7 @@ class Thread extends Threaded implements Traversable, Countable, ArrayAccess {
/**
* (PECL pthreads &gt;= 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 <p>A boolean indication of state</p>
*/
public function isJoined() {}
@ -439,7 +439,7 @@ class Thread extends Threaded implements Traversable, Countable, ArrayAccess {
/**
* (PECL pthreads &gt;= 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 <p>A boolean indication of state</p>
*/
public function isStarted() {}
@ -447,7 +447,7 @@ class Thread extends Threaded implements Traversable, Countable, ArrayAccess {
/**
* (PECL pthreads &gt;= 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 <p>A boolean indication of success</p>
*/
public function join() {}
@ -455,7 +455,7 @@ class Thread extends Threaded implements Traversable, Countable, ArrayAccess {
/**
* (PECL pthreads &gt;= 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 <p>A boolean indication of success</p>
*/
public function kill() {}
@ -463,7 +463,7 @@ class Thread extends Threaded implements Traversable, Countable, ArrayAccess {
/**
* (PECL pthreads &gt;= 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 <b>PTHREADS_INHERIT_ALL</b>
* @return boolean <p>A boolean indication of success</p>
*/
@ -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 &gt;= 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 <p>An numeric value</p>
*/
public function getStacked() {}
@ -496,7 +496,7 @@ class Worker extends Thread implements Traversable, Countable, ArrayAccess {
/**
* (PECL pthreads &gt;= 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 <p>A boolean indication of state</p>
*/
public function isShutdown() {}
@ -504,7 +504,7 @@ class Worker extends Thread implements Traversable, Countable, ArrayAccess {
/**
* (PECL pthreads &gt;= 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 <p>A boolean indication of state</p>
*/
public function isWorking() {}
@ -512,7 +512,7 @@ class Worker extends Thread implements Traversable, Countable, ArrayAccess {
/**
* (PECL pthreads &gt;= 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 &gt;= 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 <p>Threaded object to be executed by the referenced Worker</p>
* @return int <p>The new length of the stack</p>
*/
@ -530,7 +530,7 @@ class Worker extends Thread implements Traversable, Countable, ArrayAccess {
* (PECL pthreads &gt;= 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] <p>Threaded object previously stacked onto Worker</p>
* @return int <p>The new length of the stack</p>
*/
@ -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] <p>Setting lock to true will lock the Mutex for the caller before returning the handle</p>
* @return int <p>A newly created and optionally locked Mutex handle</p>
*/
@ -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 <p>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.</p>
@ -567,7 +567,7 @@ class Mutex {
* Attempt to lock the Mutex for the caller.<br/>
* 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 <p>A handle returned by a previous call to
* {@see Mutex::create()}.</p>
* @return boolean <p>A boolean indication of success.</p>
@ -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 <p>A handle returned by a previous call to
* {@see Mutex::create()}.</p>
* @return boolean <p>A boolean indication of success.</p>
@ -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 <p>A handle returned by a previous call to
* {@see Mutex::create()}.</p>
* @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 &gt;= 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 <p>A handle to a Condition Variable returned by a previous call to
* {@see Cond::create()}</p>
* @return boolean <p>A boolean indication of success.</p>
@ -616,7 +616,7 @@ class Cond {
/**
* (PECL pthreads &gt;= 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 <p>A handle to a Condition Variable</p>
*/
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 <p>A handle to a Condition Variable returned by a previous call to
* {@see Cond::create()}</p>
* @return boolean <p>A boolean indication of success.</p>
@ -636,7 +636,7 @@ class Cond {
/**
* (PECL pthreads &gt;= 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 <p>A handle to a Condition Variable returned by a previous call to
* {@see Cond::create()}</p>
* @return boolean <p>A boolean indication of success.</p>
@ -647,7 +647,7 @@ class Cond {
* (PECL pthreads &gt;= 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 <p>A handle returned by a previous call to
* {@see Cond::create()}.</p>
* @param int $mutex <p>A handle returned by a previous call to

View File

@ -1,14 +1,14 @@
<?php
/**
* Radius constants
* @link http://php.net/manual/en/radius.constants.php
* @link https://secure.php.net/manual/en/radius.constants.php
*/
/** The maximum length of MPPE keys. */
define('RADIUS_MPPE_KEY_LEN ', 16);
/**
* RADIUS Options
* @link http://php.net/manual/en/radius.constants.options.php
* @link https://secure.php.net/manual/en/radius.constants.options.php
*/
/** When set, this option will result in the attribute value being salt-encrypted. */
@ -18,7 +18,7 @@ define('RADIUS_OPTION_SALT', 2);
/**
* RADIUS Packet Types
* @link http://php.net/manual/en/radius.constants.packets.php
* @link https://secure.php.net/manual/en/radius.constants.packets.php
*/
/** An Access-Request, used to authenticate a user against a RADIUS server. Access request packets must include a <b>RADIUS_NAS_IP_ADDRESS</b> or a <b>RADIUS_NAS_IDENTIFIER</b> attribute, must also include a <b>RADIUS_USER_PASSWORD</b>, <b>RADIUS_CHAP_PASSWORD</b> or a <b>RADIUS_STATE</b> attribute, and should include a <b>RADIUS_USER_NAME</b> 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, <b>FALSE</b> on error. This function only fails if insufficient memory is available.
* @since 1.1.0
*/
@ -328,7 +328,7 @@ function radius_acct_open() { }
/**
* <b>radius_add_server()</b> 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 <b>hostname</b> 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 <b>port</b> specifies the UDP port to contact on the server.<br>
@ -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, <b>FALSE</b> 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 <b>TRUE</b> on success or <b>FALSE</b> 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 <b>radius_config()</b>. <b>radius_config()</b> 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 <b>{@see radius_add_server()}</b>.
@ -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 <b>radius_create_request()</b>.<br />
* <b>Note:</b> 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 <b>RADIUS_ACCESS_REQUEST</b> or <b>RADIUS_ACCOUNTING_REQUEST</b>.
* @return bool Returns <b>TRUE</b> on success or <b>FALSE</b> on failure.

View File

@ -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
* <pre>
* $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
* <pre>
* $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
* <pre>
* $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
* <pre>
* $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
* <pre>
* 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
* <pre>
* 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
* <pre>
* 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
* <pre>
* $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
* <pre>
* $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
* <pre>
* $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
* <pre>
* $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
* <pre>
* $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
* <pre>
* 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
* <pre>
* 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
* <pre>
* $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
* <pre>
* $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
* <pre>
* $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
* <pre>
* $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
* <pre>
* $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
* <pre>
* $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
* <pre>
* $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
* <pre>
* $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
* <pre>
@ -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
* <pre>
* $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
* <pre>
* $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
* <pre>
* 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
* <pre>
* $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
* <pre>
* $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
* <pre>
* $redisCluster->script(['127.0.0.1',6379], 'load', $script);

View File

@ -97,7 +97,7 @@ function session_regenerate_id ($delete_old_session = false) {}
/**
* PHP > 5.4.0 <br/>
* 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 () {}

View File

@ -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 {
* <dt>SNMP_VALUE_PLAIN <dd>The return values will be the plain value without the SNMP type hint.
* <dt>SNMP_VALUE_OBJECT <dd>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
* <dl>
* @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
* <p>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
* <p>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 {
* <dt>SNMP_OID_OUTPUT_UCD <dd>system.sysUpTime.sysUpTimeInstance
* <dt>SNMP_OID_OUTPUT_NONE <dd>Undefined
* </dl>
* @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
* <p> 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 <b>FALSE</b> 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;

View File

@ -674,7 +674,7 @@ function socket_send ($socket, $buf, $len, $flags) {}
/**
* (PHP 5 &gt;=5.5.0)<br/>
* 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]

View File

@ -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 {}

View File

@ -363,7 +363,7 @@ final class SolrDocument implements ArrayAccess, Iterator, Serializable {
/**
* (PECL solr &gt;= 0.9.2)<br/>
* Returns an array representation of the document
* @link SolrDocument
* @link https://secure.php.net/manual/en/solrdocument.toarray.php
* @return array <p>
* Returns an array representation of the document.
* </p>

View File

@ -574,7 +574,7 @@ class SolrQuery extends SolrModifiableParams implements Serializable {
/**
* (PECL solr &gt;= 2.2.0)<br/>
* 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 <p>
* Returns true if grouping is enabled
* </p>

View File

@ -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.}<br />
*
* Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}<br />
* @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.<br />
*
* Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}<br />
* @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.<br />
*
* Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}<br />
* @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}<br />
* @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}<br />
* @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). <br />
*
* Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}<br />
* @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){}
* <br />Changes the settings for error handling and logging options.<br />
*
* Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}<br />
* @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.<br />
* ClientBufferMaxKBSize (Default: 10240)<br />
@ -1070,7 +1070,7 @@ function sqlsrv_configure($setting, $value){}
* For a list of configurable settings, see {@link sqlsrv_configure() sqlsrv_configure}.<br />
*
* Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}<br />
* @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){}
* <li>{@link http://msdn.microsoft.com/en-us/library/cc296201.aspx How to: Perform Parameterized Queries}</li>
* <li>{@link http://msdn.microsoft.com/en-us/library/cc296191.aspx How to: Send Data as a Stream}</li>
* <li>{@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}</li></ul>
* @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()){}
* <ul><li>{@link sqlsrv_query() sqlsrv_query}</li>
* <li>{@link http://msdn.microsoft.com/en-us/library/cc296201.aspx How to: Perform Parameterized Queries}</li>
* <li>{@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}</li></ul>
* @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){}
* <li>{@link http://msdn.microsoft.com/en-us/library/cc296201.aspx How to: Perform Parameterized Queries}</li>
* <li>{@link http://msdn.microsoft.com/en-us/library/cc296191.aspx How to: Send Data as a Stream}</li>
* <li>{@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}</li></ul>
* @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}.<br />
*
* Additional Information at {@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}<br />
* @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}<br />
*
* @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}<br />
*
* @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}<br />
*
* @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}<br />
*
* @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}<br />
*
* @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}<br />
*
* @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}<br />
*
* @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}<br />
*
* @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}<br />
*
* @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.<br />
@ -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}<br />
*
* @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:
* <ul><li>CurrentDatabase - The database currently being targeted.</li>
@ -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}<br />
*
* @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}<br />
*
* @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}<br />
*
* @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}<br />
*
* @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){}
* <li>{@link http://msdn.microsoft.com/en-us/library/cc626307.aspx How to: Send and Retrieve UTF-8 Data Using Built-In UTF-8 Support.}</li>
* <li>{@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}</li></ui>
*
* @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){}
* <li>{@link http://msdn.microsoft.com/en-us/library/cc626307.aspx How to: Send and Retrieve UTF-8 Data Using Built-In UTF-8 Support.}</li>
* <li>{@link http://msdn.microsoft.com/en-us/library/cc296152.aspx SQLSRV Driver API Reference}</li></ui>
*
* @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}<br />
*
* @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}<br />
*
* @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}<br />
*
* @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}<br />
*
* @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}<br />
*
* @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}<br />
*
* @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}<br />
*
* @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}<br />
*
* @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.

View File

@ -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 {

View File

@ -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 <p>
* 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.
* </p>
* @param int $flags [optional] <p>
* 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 <p>An image resource, returned by one of the image creation functions,
* such as {@link http://www.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}.</p>
* such as {@link https://secure.php.net/manual/en/function.imagecreatetruecolor.php imagecreatetruecolor()}.</p>
* @param array $affine <p>Array with keys 0 to 5.</p>
* @param array $clip [optional] <p>Array with keys "x", "y", "width" and "height".</p>
* @return resource|bool Return affined image resource on success or FALSE on failure.
@ -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 <p>Array with keys 0 to 5.</p>
* @param array $m2 <p>Array with keys 0 to 5.</p>
* @return array|bool Array with keys 0 to 5 and float values or <b>FALSE</b> on failure.
@ -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 <p> One of <b>IMG_AFFINE_*</b> constants.
* @param mixed $options [optional]
* @return array|bool Array with keys 0 to 5 and float values or <b>FALSE</b> on failure.
@ -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 <p>
* 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()}.
* </p>
* @param array $rect <p>Array with keys "x", "y", "width" and "height".</p>
* @return resource|bool Return cropped image resource on success or FALSE on failure.
@ -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 <p>
* 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()}.
* </p>
* @param int $mode [optional] <p>
* One of <b>IMG_CROP_*</b> 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 <p>
* 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()}.
* </p>
* @param int $mode <p>
* Flip mode, this can be one of the <b>IMG_FLIP_*</b> 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 <p>
* 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()}.
* </p>
* @return bool Returns <b>TRUE</b> if the convertion was complete, or if the source image already is a true color image, otherwise <b>FALSE</b> is returned.
* @since 5.5.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 <p>
* 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()}.
* </p>
* @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 <p>
* 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()}.
* </p>
* @param int $method <p>
* The interpolation method, which can be one of the following:

View File

@ -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,<br>
* 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<br/>
* 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<br>
* some extended information from the image file. Currently, this will <br>
@ -103,7 +103,7 @@ function getimagesizefromstring ($imagedata , array &$imageinfo = null) {}
/**
* PHP > 5.4.0<br/>
* 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.<br>
@ -114,7 +114,7 @@ function stream_set_chunk_size ($fp , $chunk_size) {}
/**
* PHP > 5.4.0<br/>
* 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 <b>FALSE</b> or <b>NULL</b> on failure.
*/

View File

@ -101,7 +101,7 @@ function array_count_values(array $input) { }
/**
* (PHP 5 &gt;=5.5.0)<br/>
* 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 <p>A multi-dimensional array (record set) from which to pull a column of values.</p>
* @param mixed $column <p>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).</p>
* @param mixed $index_key [optional] <p>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.</p>
@ -788,7 +788,7 @@ function assert($assertion, $description) { }
/**
* (PHP 5 &gt;=5.5.0)<br/>
* 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() { }

View File

@ -5,7 +5,7 @@
* The keys of this array are the names of the global variables.
* $GLOBALS has existed since PHP 3.
*
* <p><a href="http://www.php.net/manual/en/reserved.variables.php">http://us2.php.net/manual/en/reserved.variables.php</a>
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">http://us2.php.net/manual/en/reserved.variables.php</a>
*/
$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).
*
* <p><a href="http://www.php.net/manual/en/reserved.variables.php">
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
*/
$_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).
*
* <p><a href="http://www.php.net/manual/en/reserved.variables.php">
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
*/
$_ENV = array();
@ -43,7 +43,7 @@ $HTTP_ENV_VARS = array();
* (which is still available, but deprecated).
* See POST method uploads for more information.
*
* <p><a href="http://www.php.net/manual/en/reserved.variables.php">
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
*/
$_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).
*
* <p><a href="http://www.php.net/manual/en/reserved.variables.php">
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
*/
$_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
*
* <p><a href="http://www.php.net/manual/en/reserved.variables.php">
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
*/
$_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.
*
*
* <p><a href="http://www.php.net/manual/en/reserved.variables.php">
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
*/
$_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).
*
* <p><a href="http://www.php.net/manual/en/reserved.variables.php">
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
*/
$_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.
*
* <p><a href="http://www.php.net/manual/en/reserved.variables.php">
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
*/
$_SESSION = array();
@ -182,7 +182,7 @@ $HTTP_SESSION_VARS = array();
*
* The number of arguments passed to script
*
* <p><a href="http://www.php.net/manual/en/reserved.variables.php">
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
*/
$argc = 0;
@ -192,7 +192,7 @@ $argc = 0;
*
* Array of arguments passed to script
*
* <p><a href="http://www.php.net/manual/en/reserved.variables.php">
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
*/
$argv = array();
@ -202,7 +202,7 @@ $argv = array();
*
* Raw POST data
*
* <p><a href="http://www.php.net/manual/en/reserved.variables.php">
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
*
* @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
*
* <p><a href="http://www.php.net/manual/en/reserved.variables.php">
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
*/
$http_response_header = array();
@ -223,7 +223,7 @@ $http_response_header = array();
* @xglobal $php_errormsg string
* The previous error message
*
* <p><a href="http://www.php.net/manual/en/reserved.variables.php">
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
*/
$php_errormsg = '';

View File

@ -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();
}

View File

@ -1,5 +1,8 @@
<?php
use phpDocumentor\Reflection\DocBlock\Tags\Link;
use phpDocumentor\Reflection\DocBlock\Tags\Reference\Url;
use phpDocumentor\Reflection\DocBlock\Tags\See;
use PHPUnit\Framework\TestCase;
include __DIR__ . '/StubParser.php';
@ -234,6 +237,7 @@ class TestStubs extends TestCase
public function testFunctionPHPDocs(stdClass $function)
{
$this->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");
}
}
}
}
}

View File

@ -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

View File

@ -1,7 +1,7 @@
<?php
/**
* Stubs for WinCache extension by Microsoft (v1.1.0)
* @link http://www.php.net/manual/en/book.wincache.php
* @link https://secure.php.net/manual/en/book.wincache.php
* Windows Cache Extension for PHP is a PHP accelerator that is used to increase
* the speed of PHP applications running on Windows and Windows Server.
* Requirements:
@ -17,7 +17,7 @@
/**
* (PHP 5.2+; PECL wincache &gt;= 1.0.0)<br/>
* 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]
* <p>Controls whether the returned array will contain information about individual
* cache entries along with the file cache summary.</p>
@ -44,7 +44,7 @@ function wincache_fcache_fileinfo($summaryonly = false) {}
/**
* (PHP 5.2+; PECL wincache &gt;= 1.0.0)<br/>
* 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
* <p>The array returned by this function contains the following elements:
* <ul>
@ -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().</p>
* @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]
* <p>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 &gt;= 1.0.0)<br/>
* 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]
* <p>Controls whether the returned array will contain information about individual
* cache entries along with the opcode cache summary.</p>
@ -107,7 +107,7 @@ function wincache_ocache_fileinfo($summaryonly = false) {}
/**
* (PHP 5.2+; PECL wincache &gt;= 1.0.0)<br/>
* 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
* <p>The array returned by this function contains the following elements:
* <ul>
@ -124,7 +124,7 @@ function wincache_ocache_meminfo() {}
* (PHP 5.2+; PECL wincache &gt;= 1.0.0)<br/>
* Refreshes the cache entries for the files, whose names were passed in the input argument.
* <p>If no argument is specified then refreshes all the entries in the cache.</p>
* @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]
* <p>An array of file names for files that need to be refreshed. An absolute
* or relative file paths can be used.</p>
@ -136,7 +136,7 @@ function wincache_refresh_if_changed(array $files) {}
* (PHP 5.2+; PECL wincache &gt;= 1.0.0)<br/>
* 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
* <p>The array returned by this function contains the following elements:
* <ul>
@ -153,7 +153,7 @@ function wincache_rplist_fileinfo() {}
/**
* (PHP 5.2+; PECL wincache &gt;= 1.0.0)<br/>
* 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
* <p>The array returned by this function contains the following elements:
* <ul>
@ -169,7 +169,7 @@ function wincache_rplist_meminfo() {}
/**
* (PHP 5.2+; PECL wincache &gt;= 1.1.0)<br/>
* 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]
* <p>Controls whether the returned array will contain information about individual
* cache entries along with the session cache summary.</p>
@ -199,7 +199,7 @@ function wincache_scache_info($summaryonly = false) {}
/**
* (PHP 5.2+; PECL wincache &gt;= 1.1.0)<br/>
* 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
* <p>The array returned by this function contains the following elements:
* <ul>
@ -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.
* <p>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.</p>
* @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 <p>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 &gt;= 1.1.0)<br/>
* Compares the variable associated with the <em>key</em> with <em>old_value</em>
* and if it matches then assigns the <em>new_value</em> 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 &gt;= 1.1.0)<br/>
* 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 &gt;= 1.1.0)<br/>
* 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 <p>The key that was used to store the variable in the cache.
* key is case sensitive.</p>
* @param int $dec_by <p>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 &gt;= 1.1.0)<br/>
* 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 <p>The key that was used to store the variable in the cache.
* key is case sensitive. key can be an array of keys.</p>
* @return boolean Returns TRUE on success or FALSE on failure.
@ -299,7 +299,7 @@ function wincache_ucache_delete($key) {}
/**
* (PHP 5.2+; PECL wincache &gt;= 1.1.0)<br/>
* 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 &gt;= 1.1.0)<br/>
* 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 <p>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.</p>
@ -326,7 +326,7 @@ function wincache_ucache_get($key, &$success) {}
/**
* (PHP 5.2+; PECL wincache &gt;= 1.1.0)<br/>
* 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 <p>The key that was used to store the variable in the cache.
* key is case sensitive.</p>
* @param int $inc_by <p>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 &gt;= 1.1.0)<br/>
* 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]
* <p>Controls whether the returned array will contain information about
* individual cache entries along with the user cache summary.</p>
@ -378,7 +378,7 @@ function wincache_ucache_info($summaryonly = false, $key) {}
/**
* (PHP 5.2+; PECL wincache &gt;= 1.1.0)<br/>
* 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
* <p>The array returned by this function contains the following elements:
* <ul>
@ -397,7 +397,7 @@ function wincache_ucache_meminfo() {}
* <p>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.</p>
* @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 <p>
* 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 &gt;= 1.1.0)<br/>
* Releases an exclusive lock that was obtained on a given key by using wincache_lock().
* <p>If any other process was blocked waiting for the lock on this key, that process will be able to obtain the lock.</p>
* @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.
*/

View File

@ -9,7 +9,7 @@
* @link https://php.net/manual/en/function.xhprof-enable.php
*
* @param int $flags <p>Optional flags to add additional information to the profiling. See the a
* href="http://php.net/manual/en/xhprof.constants.php">XHprof constants</a> for further
* href="https://secure.php.net/manual/en/xhprof.constants.php">XHprof constants</a> for further
* information about these flags, e.g., <strong>XHPROF_FLAGS_MEMORY</strong> to enable memory
* profiling.</p>
* @param array $options [optional] <p>An array of optional options, namely, the 'ignored_functions' option to pass in functions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -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 (){}
}

View File

@ -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.

View File

@ -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 &gt;= 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 <b>ZMQ::CTXOPT_*</b> 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 <b>ZMQ::SOCKET_*</b> 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 <b>TRUE</b> if the context is persistent and <b>FALSE</b> 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 <b>ZMQ::CTXOPT_*<b> 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 <p>ZMQContext to build this object</p>
* @param int $type <p>The type of the socket. See ZMQ::SOCKET_* constants.</p>
@ -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 <p>
* Returns the persistent id string assigned of the object and <b>NULL</b> 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 <b>ZMQ::SOCKOPT_*</b> 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 <p>
* 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 <p>Returns a boolean based on whether the socket is persistent or not.</p>
*/
@ -505,7 +505,7 @@ class ZMQSocket
* Returns the message.
* If <b>ZMQ::MODE_NOBLOCK</b> 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 <b>ZMQ::MODE_NOBLOCK</b> 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 <b>ZMQ::MODE_NOBLOCK</b> 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 <b>ZMQ::MODE_NOBLOCK</b> 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 <b>ZMQ::SOCKOPT_*</b> 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 <b>ZMQ::POLL_IN</b> and <b>ZMQ::POLL_OUT</b> constants.
@ -620,7 +620,7 @@ class ZMQPoll
* (PECL zmq &gt;= 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 &gt;= 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.
*