Cleanup @since tags with old versions <5.3

This commit is contained in:
Maxim.Kolmakov 2020-01-22 18:26:13 +01:00
parent 4987fd5e3f
commit b1041ca152
81 changed files with 14 additions and 3797 deletions

View File

@ -14,8 +14,6 @@ function zend_version () {}
* @link https://php.net/manual/en/function.func-num-args.php
* @return int the number of arguments passed into the current user-defined
* function.
* @since 4.0
* @since 5.0
*/
function func_num_args () {}
@ -27,8 +25,6 @@ function func_num_args () {}
* zero.
* </p>
* @return mixed the specified argument, or false on error.
* @since 4.0
* @since 5.0
*/
function func_get_arg ($arg_num) {}
@ -37,8 +33,6 @@ function func_get_arg ($arg_num) {}
* @link https://php.net/manual/en/function.func-get-args.php
* @return array an array in which each element is a copy of the corresponding
* member of the current user-defined function's argument list.
* @since 4.0
* @since 5.0
*/
function func_get_args () {}
@ -50,8 +44,6 @@ function func_get_args () {}
* </p>
* @return int The length of the <i>string</i> on success,
* and 0 if the <i>string</i> is empty.
* @since 4.0
* @since 5.0
*/
function strlen ($string) {}
@ -68,8 +60,6 @@ function strlen ($string) {}
* <i>str2</i>; &gt; 0 if <i>str1</i>
* is greater than <i>str2</i>, and 0 if they are
* equal.
* @since 4.0
* @since 5.0
*/
function strcmp ($str1, $str2) {}
@ -89,8 +79,6 @@ function strcmp ($str1, $str2) {}
* <i>str2</i>; &gt; 0 if <i>str1</i>
* is greater than <i>str2</i>, and 0 if they are
* equal.
* @since 4.0
* @since 5.0
*/
function strncmp ($str1, $str2, $len) {}
@ -107,8 +95,6 @@ function strncmp ($str1, $str2, $len) {}
* <i>str2</i>; &gt; 0 if <i>str1</i>
* is greater than <i>str2</i>, and 0 if they are
* equal.
* @since 4.0
* @since 5.0
*/
function strcasecmp ($str1, $str2) {}
@ -127,8 +113,6 @@ function strcasecmp ($str1, $str2) {}
* @return int &lt; 0 if <i>str1</i> is less than
* <i>str2</i>; &gt; 0 if <i>str1</i> is
* greater than <i>str2</i>, and 0 if they are equal.
* @since 4.0.4
* @since 5.0
*/
function strncasecmp ($str1, $str2, $len) {}
@ -150,8 +134,6 @@ function strncasecmp ($str1, $str2, $len) {}
* If the internal pointer for the array points past the end of the
* array contents, <b>each</b> returns
* false.
* @since 4.0
* @since 5.0
* @deprecated 7.2 Use a foreach loop instead.
*/
function each (array &$array) {}
@ -277,8 +259,6 @@ function each (array &$array) {}
* @return int the old error_reporting
* level or the current level if no <i>level</i> parameter is
* given.
* @since 4.0
* @since 5.0
*/
function error_reporting ($level = null) {}
@ -305,8 +285,6 @@ function error_reporting ($level = null) {}
* Case-insensitive constants are stored as lower-case.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function define ($name, $value, $case_insensitive = false) {}
@ -318,8 +296,6 @@ function define ($name, $value, $case_insensitive = false) {}
* </p>
* @return bool true if the named constant given by <i>name</i>
* has been defined, false otherwise.
* @since 4.0
* @since 5.0
*/
function defined ($name) {}
@ -336,8 +312,6 @@ function defined ($name) {}
* <p>
* If <i>object</i> is omitted when inside a class, the
* name of that class is returned.
* @since 4.0
* @since 5.0
*/
function get_class ($object = null) {}
@ -345,7 +319,6 @@ function get_class ($object = null) {}
* the "Late Static Binding" class name
* @link https://php.net/manual/en/function.get-called-class.php
* @return string|false The class name. Returns false if called from outside a class.
* @since 5.3
*/
function get_called_class () {}
@ -363,8 +336,6 @@ function get_called_class () {}
* </p>
* <p>
* If called without parameter outside object, this function returns false.
* @since 4.0
* @since 5.0
*/
function get_parent_class ($object = null) {}
@ -380,8 +351,6 @@ function get_parent_class ($object = null) {}
* @return bool true if the method given by <i>method_name</i>
* has been defined for the given <i>object</i>, false
* otherwise.
* @since 4.0
* @since 5.0
*/
function method_exists ($object, $method_name) {}
@ -396,7 +365,6 @@ function method_exists ($object, $method_name) {}
* </p>
* @return bool true if the property exists, false if it doesn't exist or
* null in case of an error.
* @since 5.1
*/
function property_exists ($class, $property) {}
@ -421,8 +389,6 @@ function trait_exists($traitname, $autoload ) {}
* </p>
* @return bool true if <i>class_name</i> is a defined class,
* false otherwise.
* @since 4.0
* @since 5.0
*/
function class_exists ($class_name, $autoload = true) {}
@ -453,8 +419,6 @@ function interface_exists ($interface_name, $autoload = true) {}
* <p>
* This function will return false for constructs, such as
* <b>include_once</b> and <b>echo</b>.
* @since 4.0
* @since 5.0
*/
function function_exists ($function_name) {}
@ -465,7 +429,6 @@ function function_exists ($function_name) {}
* @param string $alias The alias name for the class.
* @param bool $autoload [optional] Whether to autoload if the original class is not found.
* @return bool true on success or false on failure.
* @since 5.3
*/
function class_alias ($original, $alias, $autoload = TRUE) {}
@ -482,8 +445,6 @@ function class_alias ($original, $alias, $autoload = TRUE) {}
* <p>
* Files that are included or required multiple times only show up once in
* the returned array.
* @since 4.0
* @since 5.0
*/
function get_included_files () {}
@ -491,8 +452,6 @@ function get_included_files () {}
* Alias of <b>get_included_files</b>
* @link https://php.net/manual/en/function.get-required-files.php
* @return string[]
* @since 4.0
* @since 5.0
*/
function get_required_files () {}
@ -512,8 +471,6 @@ function get_required_files () {}
* @return bool This function returns true if the object <i>object</i>,
* belongs to a class which is a subclass of
* <i>class_name</i>, false otherwise.
* @since 4.0
* @since 5.0
*/
function is_subclass_of ($object, $class_name, $allow_string = TRUE) {}
@ -532,8 +489,6 @@ function is_subclass_of ($object, $class_name, $allow_string = TRUE) {}
* </p>
* @return bool <b>TRUE</b> if the object is of this class or has this class as one of
* its parents, <b>FALSE</b> otherwise.
* @since 4.0.4
* @since 5.0
*/
function is_a ($object, $class_name, $allow_string = FALSE) {}
@ -547,8 +502,6 @@ function is_a ($object, $class_name, $allow_string = FALSE) {}
* current scope, with their default value.
* The resulting array elements are in the form of
* varname => value.
* @since 4.0
* @since 5.0
*/
function get_class_vars ($class_name) {}
@ -561,8 +514,6 @@ function get_class_vars ($class_name) {}
* @return array an associative array of defined object accessible non-static properties
* for the specified <i>object</i> in scope. If a property have
* not been assigned a value, it will be returned with a null value.
* @since 4.0
* @since 5.0
*/
function get_object_vars ($object) {}
@ -574,8 +525,6 @@ function get_object_vars ($object) {}
* </p>
* @return array an array of method names defined for the class specified by
* <i>class_name</i>. In case of an error, it returns null.
* @since 4.0
* @since 5.0
*/
function get_class_methods ($class_name) {}
@ -593,8 +542,6 @@ function get_class_methods ($class_name) {}
* </p>
* @return bool This function returns false if wrong <i>error_type</i> is
* specified, true otherwise.
* @since 4.0.4
* @since 5.0
*/
function trigger_error ($error_msg, $error_type = E_USER_NOTICE) {}
@ -603,8 +550,6 @@ function trigger_error ($error_msg, $error_type = E_USER_NOTICE) {}
* @link https://php.net/manual/en/function.user-error.php
* @param string $message
* @param int $error_type [optional]
* @since 4.0
* @since 5.0
*/
function user_error ($message, $error_type = E_USER_NOTICE) {}
@ -641,8 +586,6 @@ function user_error ($message, $error_type = E_USER_NOTICE) {}
* in case of an error such as an invalid callback. If the previous error handler
* was a class method, this function will return an indexed array with the class
* and the method name.
* @since 4.0.4
* @since 5.0
*/
function set_error_handler ($error_handler, $error_types = E_ALL | E_STRICT) {}
@ -650,8 +593,6 @@ function set_error_handler ($error_handler, $error_types = E_ALL | E_STRICT) {}
* Restores the previous error handler function
* @link https://php.net/manual/en/function.restore-error-handler.php
* @return bool This function always returns true.
* @since 4.0.4
* @since 5.0
*/
function restore_error_handler () {}
@ -668,7 +609,6 @@ function restore_error_handler () {}
* </p>
* @return callable|null the name of the previously defined exception handler, or null on error. If
* no previous handler was defined, null is also returned.
* @since 5.0
*/
function set_exception_handler ($exception_handler) {}
@ -676,7 +616,6 @@ function set_exception_handler ($exception_handler) {}
* Restores the previously defined exception handler function
* @link https://php.net/manual/en/function.restore-exception-handler.php
* @return bool This function always returns true.
* @since 5.0
*/
function restore_exception_handler () {}
@ -692,8 +631,6 @@ function restore_exception_handler () {}
* you will not be able to define your own classes using these
* names. There is a list of predefined classes in the Predefined Classes section of
* the appendices.
* @since 4.0
* @since 5.0
*/
function get_declared_classes () {}
@ -702,7 +639,6 @@ function get_declared_classes () {}
* @link https://php.net/manual/en/function.get-declared-interfaces.php
* @return array an array of the names of the declared interfaces in the current
* script.
* @since 5.0
*/
function get_declared_interfaces () {}
@ -724,8 +660,6 @@ function get_declared_traits() {}
* functions will be accessible via $arr["internal"], and
* the user defined ones using $arr["user"] (see example
* below).
* @since 4.0.4
* @since 5.0
*/
function get_defined_functions ($exclude_disabled = FALSE) {}
@ -733,8 +667,6 @@ function get_defined_functions ($exclude_disabled = FALSE) {}
* Returns an array of all defined variables
* @link https://php.net/manual/en/function.get-defined-vars.php
* @return array A multidimensional array with all the variables.
* @since 4.0.4
* @since 5.0
*/
function get_defined_vars () {}
@ -748,8 +680,6 @@ function get_defined_vars () {}
* The function code.
* </p>
* @return string a unique function name as a string, or false on error.
* @since 4.0.1
* @since 5.0
* @deprecated 7.2 Use anonymous functions instead.
*/
function create_function ($args, $code) {}
@ -768,8 +698,6 @@ function create_function ($args, $code) {}
* <p>
* This function will return false and generate an error if
* <i>handle</i> is not a resource.
* @since 4.0.2
* @since 5.0
*/
function get_resource_type ($handle) {}
@ -781,8 +709,6 @@ function get_resource_type ($handle) {}
* mysqli are listed. Defaults to false (return regular extensions).
* </p>
* @return array an indexed array of all the modules names.
* @since 4.0
* @since 5.0
*/
function get_loaded_extensions ($zend_extensions = false) {}
@ -817,8 +743,6 @@ function get_loaded_extensions ($zend_extensions = false) {}
* </p>
* @return bool true if the extension identified by <i>name</i>
* is loaded, false otherwise.
* @since 4.0
* @since 5.0
*/
function extension_loaded ($name) {}
@ -833,8 +757,6 @@ function extension_loaded ($name) {}
* </p>
* @return array an array with all the functions, or false if
* <i>module_name</i> is not a valid extension.
* @since 4.0
* @since 5.0
*/
function get_extension_funcs ($module_name) {}
@ -891,8 +813,6 @@ function get_extension_funcs ($module_name) {}
* </pre>
* </p>
* @return array
* @since 4.1
* @since 5.0
*/
function get_defined_constants ($categorize = false) {}
@ -991,8 +911,6 @@ function get_defined_constants ($categorize = false) {}
* </td>
* </tr>
* </table>
* @since 4.3
* @since 5.0
*/
function debug_backtrace ($options = DEBUG_BACKTRACE_PROVIDE_OBJECT, $limit = 0) {}
@ -1017,7 +935,6 @@ function debug_backtrace ($options = DEBUG_BACKTRACE_PROVIDE_OBJECT, $limit = 0)
* By default (<i>limit</i>=0) it prints all stack frames.
* </p>
* @return void
* @since 5.0
*/
function debug_print_backtrace ($options = 0, $limit = 0) {}
@ -1025,7 +942,6 @@ function debug_print_backtrace ($options = 0, $limit = 0) {}
* Forces collection of any existing garbage cycles
* @link https://php.net/manual/en/function.gc-collect-cycles.php
* @return int number of collected cycles.
* @since 5.3
*/
function gc_collect_cycles () {}
@ -1033,7 +949,6 @@ function gc_collect_cycles () {}
* Returns status of the circular reference collector
* @link https://php.net/manual/en/function.gc-enabled.php
* @return bool true if the garbage collector is enabled, false otherwise.
* @since 5.3
*/
function gc_enabled () {}
@ -1041,7 +956,6 @@ function gc_enabled () {}
* Activates the circular reference collector
* @link https://php.net/manual/en/function.gc-enable.php
* @return void
* @since 5.3
*/
function gc_enable () {}
@ -1049,7 +963,6 @@ function gc_enable () {}
* Deactivates the circular reference collector
* @link https://php.net/manual/en/function.gc-disable.php
* @return void
* @since 5.3
*/
function gc_disable () {}

View File

@ -36,7 +36,6 @@ interface IteratorAggregate extends Traversable {
* @return Traversable An instance of an object implementing <b>Iterator</b> or
* <b>Traversable</b>
* @throws Exception on failure.
* @since 5.0
*/
public function getIterator();
}
@ -52,7 +51,6 @@ interface Iterator extends Traversable {
* Return the current element
* @link https://php.net/manual/en/iterator.current.php
* @return mixed Can return any type.
* @since 5.0
*/
public function current();
@ -60,7 +58,6 @@ interface Iterator extends Traversable {
* Move forward to next element
* @link https://php.net/manual/en/iterator.next.php
* @return void Any returned value is ignored.
* @since 5.0
*/
public function next();
@ -68,7 +65,6 @@ interface Iterator extends Traversable {
* Return the key of the current element
* @link https://php.net/manual/en/iterator.key.php
* @return string|float|int|bool|null scalar on success, or null on failure.
* @since 5.0
*/
public function key();
@ -77,7 +73,6 @@ interface Iterator extends Traversable {
* @link https://php.net/manual/en/iterator.valid.php
* @return bool The return value will be casted to boolean and then evaluated.
* Returns true on success or false on failure.
* @since 5.0
*/
public function valid();
@ -85,7 +80,6 @@ interface Iterator extends Traversable {
* Rewind the Iterator to the first element
* @link https://php.net/manual/en/iterator.rewind.php
* @return void Any returned value is ignored.
* @since 5.0
*/
public function rewind();
}
@ -106,7 +100,6 @@ interface ArrayAccess {
* </p>
* <p>
* The return value will be casted to boolean if non-boolean was returned.
* @since 5.0
*/
public function offsetExists($offset);
@ -117,7 +110,6 @@ interface ArrayAccess {
* The offset to retrieve.
* </p>
* @return mixed Can return all value types.
* @since 5.0
*/
public function offsetGet($offset);
@ -131,7 +123,6 @@ interface ArrayAccess {
* The value to set.
* </p>
* @return void
* @since 5.0
*/
public function offsetSet($offset, $value);
@ -142,7 +133,6 @@ interface ArrayAccess {
* The offset to unset.
* </p>
* @return void
* @since 5.0
*/
public function offsetUnset($offset);
}
@ -157,7 +147,6 @@ interface Serializable {
* String representation of object
* @link https://php.net/manual/en/serializable.serialize.php
* @return string the string representation of the object or null
* @since 5.1
*/
public function serialize();
@ -168,7 +157,6 @@ interface Serializable {
* The string representation of the object.
* </p>
* @return void
* @since 5.1
*/
public function unserialize($serialized);
}
@ -272,7 +260,6 @@ class Exception implements Throwable {
* Tries to clone the Exception, which results in Fatal error.
* @link https://php.net/manual/en/exception.clone.php
* @return void
* @since 5.1
*/
final private function __clone() { }
@ -282,7 +269,6 @@ class Exception implements Throwable {
* @param string $message [optional] The Exception message to throw.
* @param int $code [optional] The Exception code.
* @param Throwable $previous [optional] The previous throwable used for the exception chaining.
* @since 5.1
*/
public function __construct($message = "", $code = 0, Throwable $previous = null) { }
@ -290,7 +276,6 @@ class Exception implements Throwable {
* Gets the Exception message
* @link https://php.net/manual/en/exception.getmessage.php
* @return string the Exception message as a string.
* @since 5.1
*/
final public function getMessage() { }
@ -301,7 +286,6 @@ class Exception implements Throwable {
* <b>Exception</b> but possibly as other type in
* <b>Exception</b> descendants (for example as
* string in <b>PDOException</b>).
* @since 5.1
*/
final public function getCode() { }
@ -309,7 +293,6 @@ class Exception implements Throwable {
* Gets the file in which the exception occurred
* @link https://php.net/manual/en/exception.getfile.php
* @return string the filename in which the exception was created.
* @since 5.1
*/
final public function getFile() { }
@ -317,7 +300,6 @@ class Exception implements Throwable {
* Gets the line in which the exception occurred
* @link https://php.net/manual/en/exception.getline.php
* @return int the line number where the exception was created.
* @since 5.1
*/
final public function getLine() { }
@ -325,7 +307,6 @@ class Exception implements Throwable {
* Gets the stack trace
* @link https://php.net/manual/en/exception.gettrace.php
* @return array the Exception stack trace as an array.
* @since 5.1
*/
final public function getTrace() { }
@ -334,7 +315,6 @@ class Exception implements Throwable {
* @link https://php.net/manual/en/exception.getprevious.php
* @return Exception the previous <b>Exception</b> if available
* or null otherwise.
* @since 5.3
*/
final public function getPrevious() { }
@ -342,7 +322,6 @@ class Exception implements Throwable {
* Gets the stack trace as a string
* @link https://php.net/manual/en/exception.gettraceasstring.php
* @return string the Exception stack trace as a string.
* @since 5.1
*/
final public function getTraceAsString() { }
@ -350,7 +329,6 @@ class Exception implements Throwable {
* String representation of the exception
* @link https://php.net/manual/en/exception.tostring.php
* @return string the string representation of the exception.
* @since 5.1
*/
public function __toString() { }
@ -539,7 +517,6 @@ class ErrorException extends Exception {
* @param string $filename [optional] The filename where the exception is thrown.
* @param int $lineno [optional] The line number where the exception is thrown.
* @param Exception $previous [optional] The previous exception used for the exception chaining.
* @since 5.1
*/
public function __construct($message = "", $code = 0, $severity = 1, $filename = __FILE__, $lineno = __LINE__, $previous = null) { }
@ -547,7 +524,6 @@ class ErrorException extends Exception {
* Gets the exception severity
* @link https://php.net/manual/en/errorexception.getseverity.php
* @return int the severity level of the exception.
* @since 5.1
*/
final public function getSeverity() { }
}
@ -636,7 +612,6 @@ interface Countable {
* </p>
* <p>
* The return value is cast to an integer.
* @since 5.1
*/
public function count();
}

View File

@ -268,7 +268,6 @@ class PDO {
* As <b>PDO::FETCH_INTO</b> but object is provided as a serialized string.
* Available since PHP 5.1.0. Since PHP 5.3.0 the class constructor is never called if this
* flag is set.
* @since 5.1
* @link https://php.net/manual/en/pdo.constants.php#pdo.constants.fetch-serialize
*/
const FETCH_SERIALIZE = 524288;

View File

@ -808,7 +808,6 @@ class Phar extends RecursiveDirectoryIterator implements RecursiveIterator, Seek
* @param bool $allow_links [optional] <p>
* </p>
* @return bool whether the current entry is a directory, but not '.' or '..'
* @since 5.0
*/
public function hasChildren ($allow_links = false) {}
@ -818,7 +817,6 @@ class Phar extends RecursiveDirectoryIterator implements RecursiveIterator, Seek
* @return mixed The filename, file information, or $this depending on the set flags.
* See the FilesystemIterator
* constants.
* @since 5.1
*/
public function getChildren () {}
@ -826,7 +824,6 @@ class Phar extends RecursiveDirectoryIterator implements RecursiveIterator, Seek
* Rewinds back to the beginning
* @link https://php.net/manual/en/filesystemiterator.rewind.php
* @return void No value is returned.
* @since 5.3
*/
public function rewind () {}
@ -834,7 +831,6 @@ class Phar extends RecursiveDirectoryIterator implements RecursiveIterator, Seek
* Move to the next file
* @link https://php.net/manual/en/filesystemiterator.next.php
* @return void No value is returned.
* @since 5.3
*/
public function next () {}
@ -843,7 +839,6 @@ class Phar extends RecursiveDirectoryIterator implements RecursiveIterator, Seek
* @link https://php.net/manual/en/filesystemiterator.key.php
* @return string the pathname or filename depending on the set flags.
* See the FilesystemIterator constants.
* @since 5.3
*/
public function key () {}
@ -852,7 +847,6 @@ class Phar extends RecursiveDirectoryIterator implements RecursiveIterator, Seek
* @link https://php.net/manual/en/filesystemiterator.current.php
* @return mixed The filename, file information, or $this depending on the set flags.
* See the FilesystemIterator constants.
* @since 5.3
*/
public function current () {}
@ -860,7 +854,6 @@ class Phar extends RecursiveDirectoryIterator implements RecursiveIterator, Seek
* Check whether current DirectoryIterator position is a valid file
* @link https://php.net/manual/en/directoryiterator.valid.php
* @return bool <b>TRUE</b> if the position is valid, otherwise <b>FALSE</b>
* @since 5.0
*/
public function valid () {}
@ -871,7 +864,6 @@ class Phar extends RecursiveDirectoryIterator implements RecursiveIterator, Seek
* The zero-based numeric position to seek to.
* </p>
* @return void No value is returned.
* @since 5.3
*/
public function seek ($position) {}
@ -948,7 +940,6 @@ class PharData extends Phar {
* @param bool $allow_links [optional] <p>
* </p>
* @return bool whether the current entry is a directory, but not '.' or '..'
* @since 5.0
*/
public function hasChildren ($allow_links = false) {}
@ -958,7 +949,6 @@ class PharData extends Phar {
* @return mixed The filename, file information, or $this depending on the set flags.
* See the FilesystemIterator
* constants.
* @since 5.1
*/
public function getChildren () {}
@ -967,7 +957,6 @@ class PharData extends Phar {
* Rewinds back to the beginning
* @link https://php.net/manual/en/filesystemiterator.rewind.php
* @return void No value is returned.
* @since 5.3
*/
public function rewind () {}
@ -975,7 +964,6 @@ class PharData extends Phar {
* Move to the next file
* @link https://php.net/manual/en/filesystemiterator.next.php
* @return void No value is returned.
* @since 5.3
*/
public function next () {}
@ -984,7 +972,6 @@ class PharData extends Phar {
* @link https://php.net/manual/en/filesystemiterator.key.php
* @return string the pathname or filename depending on the set flags.
* See the FilesystemIterator constants.
* @since 5.3
*/
public function key () {}
@ -993,7 +980,6 @@ class PharData extends Phar {
* @link https://php.net/manual/en/filesystemiterator.current.php
* @return mixed The filename, file information, or $this depending on the set flags.
* See the FilesystemIterator constants.
* @since 5.3
*/
public function current () {}
@ -1003,7 +989,6 @@ class PharData extends Phar {
* Check whether current DirectoryIterator position is a valid file
* @link https://php.net/manual/en/directoryiterator.valid.php
* @return bool <b>TRUE</b> if the position is valid, otherwise <b>FALSE</b>
* @since 5.0
*/
public function valid () {}
@ -1014,7 +999,6 @@ class PharData extends Phar {
* The zero-based numeric position to seek to.
* </p>
* @return void No value is returned.
* @since 5.3
*/
public function seek ($position) {}

View File

@ -23,7 +23,6 @@ class Reflection {
* The modifiers to get, which is from a numeric value.
* </p>
* @return array An array of modifier names.
* @since 5.0
*/
public static function getModifierNames ($modifiers) {}
@ -40,7 +39,6 @@ class Reflection {
* @return string If the <i>return</i> parameter
* is set to <b>TRUE</b>, then the export is returned as a string,
* otherwise <b>NULL</b> is returned.
* @since 5.0
*/
public static function export (Reflector $reflector, $return = false) {}
@ -57,7 +55,6 @@ interface Reflector {
* Exports
* @link https://php.net/manual/en/reflector.export.php
* @return string
* @since 5.0
* @deprecated 7.4
*/
static function export ();
@ -66,7 +63,6 @@ interface Reflector {
* To string
* @link https://php.net/manual/en/reflector.tostring.php
* @return string
* @since 5.0
*/
function __toString ();
@ -85,14 +81,12 @@ abstract class ReflectionFunctionAbstract implements Reflector {
* Clones function
* @link https://php.net/manual/en/reflectionfunctionabstract.clone.php
* @return void
* @since 5.0
*/
final private function __clone () {}
/**
* To string
* @link https://php.net/manual/en/reflectionfunctionabstract.tostring.php
* @since 5.0
*/
abstract public function __toString ();
@ -100,7 +94,6 @@ abstract class ReflectionFunctionAbstract implements Reflector {
* Checks if function in namespace
* @link https://php.net/manual/en/reflectionfunctionabstract.innamespace.php
* @return bool <b>TRUE</b> if it's in a namespace, otherwise <b>FALSE</b>
* @since 5.3
*/
public function inNamespace () {}
@ -108,7 +101,6 @@ abstract class ReflectionFunctionAbstract implements Reflector {
* Checks if closure
* @link https://php.net/manual/en/reflectionfunctionabstract.isclosure.php
* @return bool <b>TRUE</b> if it's a closure, otherwise <b>FALSE</b>
* @since 5.3
*/
public function isClosure () {}
@ -116,7 +108,6 @@ abstract class ReflectionFunctionAbstract implements Reflector {
* Checks if deprecated
* @link https://php.net/manual/en/reflectionfunctionabstract.isdeprecated.php
* @return bool <b>TRUE</b> if it's deprecated, otherwise <b>FALSE</b>
* @since 5.0
*/
public function isDeprecated () {}
@ -124,7 +115,6 @@ abstract class ReflectionFunctionAbstract implements Reflector {
* Checks if is internal
* @link https://php.net/manual/en/reflectionfunctionabstract.isinternal.php
* @return bool <b>TRUE</b> if it's internal, otherwise <b>FALSE</b>
* @since 5.0
*/
public function isInternal () {}
@ -132,7 +122,6 @@ abstract class ReflectionFunctionAbstract implements Reflector {
* Checks if user defined
* @link https://php.net/manual/en/reflectionfunctionabstract.isuserdefined.php
* @return bool <b>TRUE</b> if it's user-defined, otherwise false;
* @since 5.0
*/
public function isUserDefined () {}
@ -141,7 +130,6 @@ abstract class ReflectionFunctionAbstract implements Reflector {
* @link https://php.net/manual/en/reflectionfunctionabstract.getclosurethis.php
* @return object $this pointer.
* Returns <b>NULL</b> in case of an error.
* @since 5.0
*/
public function getClosureThis () {}
@ -158,7 +146,6 @@ abstract class ReflectionFunctionAbstract implements Reflector {
* Gets doc comment
* @link https://php.net/manual/en/reflectionfunctionabstract.getdoccomment.php
* @return string|false The doc comment if it exists, otherwise <b>FALSE</b>
* @since 5.1
*/
public function getDocComment () {}
@ -166,7 +153,6 @@ abstract class ReflectionFunctionAbstract implements Reflector {
* Gets end line number
* @link https://php.net/manual/en/reflectionfunctionabstract.getendline.php
* @return int|false The ending line number of the user defined function, or <b>FALSE</b> if unknown.
* @since 5.0
*/
public function getEndLine () {}
@ -174,7 +160,6 @@ abstract class ReflectionFunctionAbstract implements Reflector {
* Gets extension info
* @link https://php.net/manual/en/reflectionfunctionabstract.getextension.php
* @return ReflectionExtension The extension information, as a <b>ReflectionExtension</b> object.
* @since 5.0
*/
public function getExtension () {}
@ -182,7 +167,6 @@ abstract class ReflectionFunctionAbstract implements Reflector {
* Gets extension name
* @link https://php.net/manual/en/reflectionfunctionabstract.getextensionname.php
* @return string The extensions name.
* @since 5.0
*/
public function getExtensionName () {}
@ -190,7 +174,6 @@ abstract class ReflectionFunctionAbstract implements Reflector {
* Gets file name
* @link https://php.net/manual/en/reflectionfunctionabstract.getfilename.php
* @return string The file name.
* @since 5.0
*/
public function getFileName () {}
@ -198,7 +181,6 @@ abstract class ReflectionFunctionAbstract implements Reflector {
* Gets function name
* @link https://php.net/manual/en/reflectionfunctionabstract.getname.php
* @return string The name of the function.
* @since 5.0
*/
public function getName () {}
@ -206,7 +188,6 @@ abstract class ReflectionFunctionAbstract implements Reflector {
* Gets namespace name
* @link https://php.net/manual/en/reflectionfunctionabstract.getnamespacename.php
* @return string The namespace name.
* @since 5.3
*/
public function getNamespaceName () {}
@ -230,7 +211,6 @@ abstract class ReflectionFunctionAbstract implements Reflector {
* Gets parameters
* @link https://php.net/manual/en/reflectionfunctionabstract.getparameters.php
* @return ReflectionParameter[] The parameters, as a ReflectionParameter objects.
* @since 5.0
*/
public function getParameters () {}
@ -246,7 +226,6 @@ abstract class ReflectionFunctionAbstract implements Reflector {
* Gets function short name
* @link https://php.net/manual/en/reflectionfunctionabstract.getshortname.php
* @return string The short name of the function.
* @since 5.3
*/
public function getShortName () {}
@ -254,7 +233,6 @@ abstract class ReflectionFunctionAbstract implements Reflector {
* Gets starting line number
* @link https://php.net/manual/en/reflectionfunctionabstract.getstartline.php
* @return int The starting line number.
* @since 5.0
*/
public function getStartLine () {}
@ -262,7 +240,6 @@ abstract class ReflectionFunctionAbstract implements Reflector {
* Gets static variables
* @link https://php.net/manual/en/reflectionfunctionabstract.getstaticvariables.php
* @return array An array of static variables.
* @since 5.0
*/
public function getStaticVariables () {}
@ -278,7 +255,6 @@ abstract class ReflectionFunctionAbstract implements Reflector {
* Checks if returns reference
* @link https://php.net/manual/en/reflectionfunctionabstract.returnsreference.php
* @return bool <b>TRUE</b> if it returns a reference, otherwise <b>FALSE</b>
* @since 5.0
*/
public function returnsReference () {}
@ -317,7 +293,6 @@ class ReflectionFunction extends ReflectionFunctionAbstract implements Reflector
* The name of the function to reflect or a closure.
* </p>
* @throws \ReflectionException if the function does not exist.
* @since 5.0
*/
public function __construct ($name) {}
@ -326,7 +301,6 @@ class ReflectionFunction extends ReflectionFunctionAbstract implements Reflector
* @link https://php.net/manual/en/reflectionfunction.tostring.php
* @return string <b>ReflectionFunction::export</b>-like output for
* the function.
* @since 5.0
*/
public function __toString () {}
@ -343,7 +317,6 @@ class ReflectionFunction extends ReflectionFunctionAbstract implements Reflector
* @return string If the <i>return</i> parameter
* is set to <b>TRUE</b>, then the export is returned as a string,
* otherwise <b>NULL</b> is returned.
* @since 5.0
* @deprecated 7.4
*/
public static function export ($name, $return = null) {}
@ -352,7 +325,6 @@ class ReflectionFunction extends ReflectionFunctionAbstract implements Reflector
* Checks if function is disabled
* @link https://php.net/manual/en/reflectionfunction.isdisabled.php
* @return bool <b>TRUE</b> if it's disable, otherwise <b>FALSE</b>
* @since 5.0
*/
public function isDisabled () {}
@ -365,7 +337,6 @@ class ReflectionFunction extends ReflectionFunctionAbstract implements Reflector
* call_user_func is.
* </p>
* @return mixed
* @since 5.0
*/
public function invoke ($args = null) {}
@ -377,7 +348,6 @@ class ReflectionFunction extends ReflectionFunctionAbstract implements Reflector
* <b>call_user_func_array</b> works.
* </p>
* @return mixed the result of the invoked function
* @since 5.1
*/
public function invokeArgs (array $args) {}
@ -386,7 +356,6 @@ class ReflectionFunction extends ReflectionFunctionAbstract implements Reflector
* @link https://php.net/manual/en/reflectionfunction.getclosure.php
* @return Closure <b>Closure</b>.
* Returns <b>NULL</b> in case of an error.
* @since 5.0
*/
public function getClosure () {}
@ -405,7 +374,6 @@ class ReflectionParameter implements Reflector {
* Clone
* @link https://php.net/manual/en/reflectionparameter.clone.php
* @return void
* @since 5.0
*/
final private function __clone () {}
@ -423,7 +391,6 @@ class ReflectionParameter implements Reflector {
* as opposed to emitting it. Setting to <b>FALSE</b> (the default) will do the opposite.
* </p>
* @return string The exported reflection.
* @since 5.0
* @deprecated 7.4
*/
public static function export ($function, $parameter, $return = null) {}
@ -438,7 +405,6 @@ class ReflectionParameter implements Reflector {
* The parameter.
* </p>
* @throws \ReflectionException if the function or parameter does not exist.
* @since 5.0
*/
public function __construct ($function, $parameter) {}
@ -446,7 +412,6 @@ class ReflectionParameter implements Reflector {
* To string
* @link https://php.net/manual/en/reflectionparameter.tostring.php
* @return string
* @since 5.0
*/
public function __toString () {}
@ -454,7 +419,6 @@ class ReflectionParameter implements Reflector {
* Gets parameter name
* @link https://php.net/manual/en/reflectionparameter.getname.php
* @return string The name of the reflected parameter.
* @since 5.0
*/
public function getName () {}
@ -479,7 +443,6 @@ class ReflectionParameter implements Reflector {
* Checks if passed by reference
* @link https://php.net/manual/en/reflectionparameter.ispassedbyreference.php
* @return bool <b>TRUE</b> if the parameter is passed in by reference, otherwise <b>FALSE</b>
* @since 5.0
*/
public function isPassedByReference () {}
@ -504,7 +467,6 @@ class ReflectionParameter implements Reflector {
* Gets declaring class
* @link https://php.net/manual/en/reflectionparameter.getdeclaringclass.php
* @return ReflectionClass A <b>ReflectionClass</b> object.
* @since 5.0
*/
public function getDeclaringClass () {}
@ -512,7 +474,6 @@ class ReflectionParameter implements Reflector {
* Get class
* @link https://php.net/manual/en/reflectionparameter.getclass.php
* @return ReflectionClass A <b>ReflectionClass</b> object.
* @since 5.0
*/
public function getClass () {}
@ -520,7 +481,6 @@ class ReflectionParameter implements Reflector {
* Checks if parameter expects an array
* @link https://php.net/manual/en/reflectionparameter.isarray.php
* @return bool <b>TRUE</b> if an array is expected, <b>FALSE</b> otherwise.
* @since 5.1
*/
public function isArray () {}
@ -536,7 +496,6 @@ class ReflectionParameter implements Reflector {
* Checks if null is allowed
* @link https://php.net/manual/en/reflectionparameter.allowsnull.php
* @return bool <b>TRUE</b> if <b>NULL</b> is allowed, otherwise <b>FALSE</b>
* @since 5.0
*/
public function allowsNull () {}
@ -631,7 +590,6 @@ class ReflectionMethod extends ReflectionFunctionAbstract implements Reflector {
* @return string If the <i>return</i> parameter
* is set to <b>TRUE</b>, then the export is returned as a string,
* otherwise <b>NULL</b> is returned.
* @since 5.0
* @deprecated 7.4
*/
public static function export ($class, $name, $return = false) {}
@ -646,7 +604,6 @@ class ReflectionMethod extends ReflectionFunctionAbstract implements Reflector {
* Name of the method, or the method FQN in the form 'Foo::bar' if $class argument missing
* </p>
* @throws \ReflectionException if the class or method does not exist.
* @since 5.0
*/
public function __construct ($class, $name) {}
@ -654,7 +611,6 @@ class ReflectionMethod extends ReflectionFunctionAbstract implements Reflector {
* Returns the string representation of the Reflection method object.
* @link https://php.net/manual/en/reflectionmethod.tostring.php
* @return string A string representation of this <b>ReflectionMethod</b> instance.
* @since 5.0
*/
public function __toString () {}
@ -662,7 +618,6 @@ class ReflectionMethod extends ReflectionFunctionAbstract implements Reflector {
* Checks if method is public
* @link https://php.net/manual/en/reflectionmethod.ispublic.php
* @return bool <b>TRUE</b> if the method is public, otherwise <b>FALSE</b>
* @since 5.0
*/
public function isPublic () {}
@ -670,7 +625,6 @@ class ReflectionMethod extends ReflectionFunctionAbstract implements Reflector {
* Checks if method is private
* @link https://php.net/manual/en/reflectionmethod.isprivate.php
* @return bool <b>TRUE</b> if the method is private, otherwise <b>FALSE</b>
* @since 5.0
*/
public function isPrivate () {}
@ -678,7 +632,6 @@ class ReflectionMethod extends ReflectionFunctionAbstract implements Reflector {
* Checks if method is protected
* @link https://php.net/manual/en/reflectionmethod.isprotected.php
* @return bool <b>TRUE</b> if the method is protected, otherwise <b>FALSE</b>
* @since 5.0
*/
public function isProtected () {}
@ -686,7 +639,6 @@ class ReflectionMethod extends ReflectionFunctionAbstract implements Reflector {
* Checks if method is abstract
* @link https://php.net/manual/en/reflectionmethod.isabstract.php
* @return bool <b>TRUE</b> if the method is abstract, otherwise <b>FALSE</b>
* @since 5.0
*/
public function isAbstract () {}
@ -694,7 +646,6 @@ class ReflectionMethod extends ReflectionFunctionAbstract implements Reflector {
* Checks if method is final
* @link https://php.net/manual/en/reflectionmethod.isfinal.php
* @return bool <b>TRUE</b> if the method is final, otherwise <b>FALSE</b>
* @since 5.0
*/
public function isFinal () {}
@ -702,7 +653,6 @@ class ReflectionMethod extends ReflectionFunctionAbstract implements Reflector {
* Checks if method is static
* @link https://php.net/manual/en/reflectionmethod.isstatic.php
* @return bool <b>TRUE</b> if the method is static, otherwise <b>FALSE</b>
* @since 5.0
*/
public function isStatic () {}
@ -710,7 +660,6 @@ class ReflectionMethod extends ReflectionFunctionAbstract implements Reflector {
* Checks if method is a constructor
* @link https://php.net/manual/en/reflectionmethod.isconstructor.php
* @return bool <b>TRUE</b> if the method is a constructor, otherwise <b>FALSE</b>
* @since 5.0
*/
public function isConstructor () {}
@ -718,7 +667,6 @@ class ReflectionMethod extends ReflectionFunctionAbstract implements Reflector {
* Checks if method is a destructor
* @link https://php.net/manual/en/reflectionmethod.isdestructor.php
* @return bool <b>TRUE</b> if the method is a destructor, otherwise <b>FALSE</b>
* @since 5.0
*/
public function isDestructor () {}
@ -781,7 +729,6 @@ class ReflectionMethod extends ReflectionFunctionAbstract implements Reflector {
* </td>
* </tr>
* </table>
* @since 5.0
*/
public function getModifiers () {}
@ -798,7 +745,6 @@ class ReflectionMethod extends ReflectionFunctionAbstract implements Reflector {
* </p>
* @param mixed $_ [optional]
* @return mixed the method result.
* @since 5.0
*/
public function invoke ($object, $parameter = null, $_ = null) {}
@ -813,7 +759,6 @@ class ReflectionMethod extends ReflectionFunctionAbstract implements Reflector {
* The parameters to be passed to the function, as an array.
* </p>
* @return mixed the method result.
* @since 5.1
*/
public function invokeArgs ($object, array $args) {}
@ -822,7 +767,6 @@ class ReflectionMethod extends ReflectionFunctionAbstract implements Reflector {
* @link https://php.net/manual/en/reflectionmethod.getdeclaringclass.php
* @return ReflectionClass A <b>ReflectionClass</b> object of the class that the
* reflected method is part of.
* @since 5.0
*/
public function getDeclaringClass () {}
@ -830,7 +774,6 @@ class ReflectionMethod extends ReflectionFunctionAbstract implements Reflector {
* Gets the method prototype (if there is one).
* @link https://php.net/manual/en/reflectionmethod.getprototype.php
* @return ReflectionMethod A <b>ReflectionMethod</b> instance of the method prototype.
* @since 5.0
*/
public function getPrototype () {}
@ -864,7 +807,6 @@ class ReflectionClass implements Reflector {
* Clones object
* @link https://php.net/manual/en/reflectionclass.clone.php
* @return void
* @since 5.0
*/
final private function __clone () {}
@ -881,7 +823,6 @@ class ReflectionClass implements Reflector {
* @return string If the <i>return</i> parameter
* is set to <b>TRUE</b>, then the export is returned as a string,
* otherwise <b>NULL</b> is returned.
* @since 5.0
* @deprecated 7.4
*/
public static function export ($argument, $return = false) {}
@ -894,7 +835,6 @@ class ReflectionClass implements Reflector {
* reflect, or an object.
* </p>
* @throws \ReflectionException if the class does not exist.
* @since 5.0
*/
public function __construct ($argument) {}
@ -902,7 +842,6 @@ class ReflectionClass implements Reflector {
* Returns the string representation of the ReflectionClass object.
* @link https://php.net/manual/en/reflectionclass.tostring.php
* @return string A string representation of this <b>ReflectionClass</b> instance.
* @since 5.0
*/
public function __toString () {}
@ -910,7 +849,6 @@ class ReflectionClass implements Reflector {
* Gets class name
* @link https://php.net/manual/en/reflectionclass.getname.php
* @return string The class name.
* @since 5.0
*/
public function getName () {}
@ -918,7 +856,6 @@ class ReflectionClass implements Reflector {
* Checks if class is defined internally by an extension, or the core
* @link https://php.net/manual/en/reflectionclass.isinternal.php
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.0
*/
public function isInternal () {}
@ -926,7 +863,6 @@ class ReflectionClass implements Reflector {
* Checks if user defined
* @link https://php.net/manual/en/reflectionclass.isuserdefined.php
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.0
*/
public function isUserDefined () {}
@ -934,7 +870,6 @@ class ReflectionClass implements Reflector {
* Checks if the class is instantiable
* @link https://php.net/manual/en/reflectionclass.isinstantiable.php
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.0
*/
public function isInstantiable () {}
@ -952,7 +887,6 @@ class ReflectionClass implements Reflector {
* @return string|false the filename of the file in which the class has been defined.
* If the class is defined in the PHP core or in a PHP extension, <b>FALSE</b>
* is returned.
* @since 5.0
*/
public function getFileName () {}
@ -960,7 +894,6 @@ class ReflectionClass implements Reflector {
* Gets starting line number
* @link https://php.net/manual/en/reflectionclass.getstartline.php
* @return int The starting line number, as an integer.
* @since 5.0
*/
public function getStartLine () {}
@ -968,7 +901,6 @@ class ReflectionClass implements Reflector {
* Gets end line
* @link https://php.net/manual/en/reflectionclass.getendline.php
* @return int|false The ending line number of the user defined class, or <b>FALSE</b> if unknown.
* @since 5.0
*/
public function getEndLine () {}
@ -976,7 +908,6 @@ class ReflectionClass implements Reflector {
* Gets doc comments
* @link https://php.net/manual/en/reflectionclass.getdoccomment.php
* @return string|false The doc comment if it exists, otherwise <b>FALSE</b>
* @since 5.1
*/
public function getDocComment () {}
@ -985,7 +916,6 @@ class ReflectionClass implements Reflector {
* @link https://php.net/manual/en/reflectionclass.getconstructor.php
* @return ReflectionMethod A <b>ReflectionMethod</b> object reflecting the class' constructor, or <b>NULL</b> if the class
* has no constructor.
* @since 5.0
*/
public function getConstructor () {}
@ -996,7 +926,6 @@ class ReflectionClass implements Reflector {
* Name of the method being checked for.
* </p>
* @return bool <b>TRUE</b> if it has the method, otherwise <b>FALSE</b>
* @since 5.1
*/
public function hasMethod ($name) {}
@ -1008,7 +937,6 @@ class ReflectionClass implements Reflector {
* </p>
* @return ReflectionMethod A <b>ReflectionMethod</b>.
* @throws \ReflectionException if the method does not exist.
* @since 5.0
*/
public function getMethod ($name) {}
@ -1029,7 +957,6 @@ class ReflectionClass implements Reflector {
* so that all methods with <em>any</em> of the given attributes will be returned.
* </p>
* @return ReflectionMethod[] An array of ReflectionMethod objects reflecting each method.
* @since 5.0
*/
public function getMethods ($filter = null) {}
@ -1040,7 +967,6 @@ class ReflectionClass implements Reflector {
* Name of the property being checked for.
* </p>
* @return bool <b>TRUE</b> if it has the property, otherwise <b>FALSE</b>
* @since 5.1
*/
public function hasProperty ($name) {}
@ -1052,7 +978,6 @@ class ReflectionClass implements Reflector {
* </p>
* @return ReflectionProperty A <b>ReflectionProperty</b>.
* @throws ReflectionException If no property exists by that name.
* @since 5.0
*/
public function getProperty ($name) {}
@ -1065,7 +990,6 @@ class ReflectionClass implements Reflector {
* and defaults to all property types.
* </p>
* @return ReflectionProperty[]
* @since 5.0
*/
public function getProperties ($filter = null) {}
@ -1095,7 +1019,6 @@ class ReflectionClass implements Reflector {
* The name of the constant being checked for.
* </p>
* @return bool <b>TRUE</b> if the constant is defined, otherwise <b>FALSE</b>.
* @since 5.1
*/
public function hasConstant ($name) {}
@ -1104,7 +1027,6 @@ class ReflectionClass implements Reflector {
* @link https://php.net/manual/en/reflectionclass.getconstants.php
* @return array An array of constants.
* Constant name in key, constant value in value.
* @since 5.0
*/
public function getConstants () {}
@ -1115,7 +1037,6 @@ class ReflectionClass implements Reflector {
* Name of the constant.
* </p>
* @return mixed Value of the constant.
* @since 5.0
*/
public function getConstant ($name) {}
@ -1124,7 +1045,6 @@ class ReflectionClass implements Reflector {
* @link https://php.net/manual/en/reflectionclass.getinterfaces.php
* @return ReflectionClass[] An associative array of interfaces, with keys as interface
* names and the array values as <b>ReflectionClass</b> objects.
* @since 5.0
*/
public function getInterfaces () {}
@ -1132,7 +1052,6 @@ class ReflectionClass implements Reflector {
* Gets the interface names
* @link https://php.net/manual/en/reflectionclass.getinterfacenames.php
* @return array A numerical array with interface names as the values.
* @since 5.2
*/
public function getInterfaceNames () {}
@ -1147,7 +1066,6 @@ class ReflectionClass implements Reflector {
* Checks if the class is an interface
* @link https://php.net/manual/en/reflectionclass.isinterface.php
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.0
*/
public function isInterface () {}
@ -1193,7 +1111,6 @@ class ReflectionClass implements Reflector {
* Checks if class is abstract
* @link https://php.net/manual/en/reflectionclass.isabstract.php
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.0
*/
public function isAbstract () {}
@ -1201,7 +1118,6 @@ class ReflectionClass implements Reflector {
* Checks if class is final
* @link https://php.net/manual/en/reflectionclass.isfinal.php
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.0
*/
public function isFinal () {}
@ -1210,7 +1126,6 @@ class ReflectionClass implements Reflector {
* @link https://php.net/manual/en/reflectionclass.getmodifiers.php
* @return int bitmask of
* modifier constants.
* @since 5.0
*/
public function getModifiers () {}
@ -1221,7 +1136,6 @@ class ReflectionClass implements Reflector {
* The object being compared to.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.0
*/
public function isInstance ($object) {}
@ -1234,7 +1148,6 @@ class ReflectionClass implements Reflector {
* </p>
* @param mixed $_ [optional]
* @return object
* @since 5.0
*/
public function newInstance ($args = null, $_ = null) {}
/**
@ -1260,7 +1173,6 @@ class ReflectionClass implements Reflector {
* Gets parent class
* @link https://php.net/manual/en/reflectionclass.getparentclass.php
* @return ReflectionClass|false
* @since 5.0
*/
public function getParentClass () {}
@ -1271,7 +1183,6 @@ class ReflectionClass implements Reflector {
* The class name being checked against.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.0
*/
public function isSubclassOf ($class) {}
@ -1279,7 +1190,6 @@ class ReflectionClass implements Reflector {
* Gets static properties
* @link https://php.net/manual/en/reflectionclass.getstaticproperties.php
* @return array The static properties, as an array.
* @since 5.0
*/
public function getStaticProperties () {}
@ -1292,7 +1202,6 @@ class ReflectionClass implements Reflector {
* @param string $default [optional] <p>
* </p>
* @return mixed The value of the static property.
* @since 5.1
*/
public function getStaticPropertyValue ($name, $default = null) {}
@ -1306,7 +1215,6 @@ class ReflectionClass implements Reflector {
* New property value.
* </p>
* @return void No value is returned.
* @since 5.1
*/
public function setStaticPropertyValue ($name, $value) {}
@ -1318,7 +1226,6 @@ class ReflectionClass implements Reflector {
* if the property doesn't have a default value. The function does not distinguish
* between static and non static properties and does not take visibility modifiers
* into account.
* @since 5.0
*/
public function getDefaultProperties () {}
@ -1326,7 +1233,6 @@ class ReflectionClass implements Reflector {
* Checks if iterateable
* @link https://php.net/manual/en/reflectionclass.isiterateable.php
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.0
*/
public function isIterateable () {}
@ -1344,7 +1250,6 @@ class ReflectionClass implements Reflector {
* The interface name.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.0
*/
public function implementsInterface ($interface) {}
@ -1353,7 +1258,6 @@ class ReflectionClass implements Reflector {
* @link https://php.net/manual/en/reflectionclass.getextension.php
* @return ReflectionExtension A <b>ReflectionExtension</b> object representing the extension which defined the class,
* or <b>NULL</b> for user-defined classes.
* @since 5.0
*/
public function getExtension () {}
@ -1361,7 +1265,6 @@ class ReflectionClass implements Reflector {
* Gets the name of the extension which defined the class
* @link https://php.net/manual/en/reflectionclass.getextensionname.php
* @return string|false The name of the extension which defined the class, or <b>FALSE</b> for user-defined classes.
* @since 5.0
*/
public function getExtensionName () {}
@ -1369,7 +1272,6 @@ class ReflectionClass implements Reflector {
* Checks if in namespace
* @link https://php.net/manual/en/reflectionclass.innamespace.php
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.3
*/
public function inNamespace () {}
@ -1377,7 +1279,6 @@ class ReflectionClass implements Reflector {
* Gets namespace name
* @link https://php.net/manual/en/reflectionclass.getnamespacename.php
* @return string The namespace name.
* @since 5.3
*/
public function getNamespaceName () {}
@ -1385,7 +1286,6 @@ class ReflectionClass implements Reflector {
* Gets short name
* @link https://php.net/manual/en/reflectionclass.getshortname.php
* @return string The class short name.
* @since 5.3
*/
public function getShortName () {}
@ -1411,7 +1311,6 @@ class ReflectionObject extends ReflectionClass implements Reflector {
* @return string If the <i>return</i> parameter
* is set to <b>TRUE</b>, then the export is returned as a string,
* otherwise <b>NULL</b> is returned.
* @since 5.0
* @deprecated 7.4
*/
public static function export ($argument, $return = null) {}
@ -1422,7 +1321,6 @@ class ReflectionObject extends ReflectionClass implements Reflector {
* @param object $argument <p>
* An object instance.
* </p>
* @since 5.0
*/
public function __construct ($argument) {}
@ -1447,7 +1345,6 @@ class ReflectionProperty implements Reflector {
* Clone
* @link https://php.net/manual/en/reflectionproperty.clone.php
* @return void
* @since 5.0
*/
final private function __clone () {}
@ -1463,7 +1360,6 @@ class ReflectionProperty implements Reflector {
* as opposed to emitting it. Setting to <b>FALSE</b> (the default) will do the opposite.
* </p>
* @return string
* @since 5.0
* @deprecated 7.4
*/
public static function export ($class, $name, $return = null) {}
@ -1478,7 +1374,6 @@ class ReflectionProperty implements Reflector {
* The name of the property being reflected.
* </p>
* @throws \ReflectionException if the class or property does not exist.
* @since 5.0
*/
public function __construct ($class, $name) {}
@ -1486,7 +1381,6 @@ class ReflectionProperty implements Reflector {
* To string
* @link https://php.net/manual/en/reflectionproperty.tostring.php
* @return string
* @since 5.0
*/
public function __toString () {}
@ -1494,7 +1388,6 @@ class ReflectionProperty implements Reflector {
* Gets property name
* @link https://php.net/manual/en/reflectionproperty.getname.php
* @return string The name of the reflected property.
* @since 5.0
*/
public function getName () {}
@ -1508,7 +1401,6 @@ class ReflectionProperty implements Reflector {
* instead.
* </p>
* @return mixed The current value of the property.
* @since 5.0
*/
public function getValue ($object = null) {}
@ -1524,7 +1416,6 @@ class ReflectionProperty implements Reflector {
* The new value.
* </p>
* @return void No value is returned.
* @since 5.0
*/
public function setValue ($objectOrValue, $value) {}
@ -1532,7 +1423,6 @@ class ReflectionProperty implements Reflector {
* Checks if property is public
* @link https://php.net/manual/en/reflectionproperty.ispublic.php
* @return bool <b>TRUE</b> if the property is public, <b>FALSE</b> otherwise.
* @since 5.0
*/
public function isPublic () {}
@ -1540,7 +1430,6 @@ class ReflectionProperty implements Reflector {
* Checks if property is private
* @link https://php.net/manual/en/reflectionproperty.isprivate.php
* @return bool <b>TRUE</b> if the property is private, <b>FALSE</b> otherwise.
* @since 5.0
*/
public function isPrivate () {}
@ -1548,7 +1437,6 @@ class ReflectionProperty implements Reflector {
* Checks if property is protected
* @link https://php.net/manual/en/reflectionproperty.isprotected.php
* @return bool <b>TRUE</b> if the property is protected, <b>FALSE</b> otherwise.
* @since 5.0
*/
public function isProtected () {}
@ -1556,7 +1444,6 @@ class ReflectionProperty implements Reflector {
* Checks if property is static
* @link https://php.net/manual/en/reflectionproperty.isstatic.php
* @return bool <b>TRUE</b> if the property is static, <b>FALSE</b> otherwise.
* @since 5.0
*/
public function isStatic () {}
@ -1565,7 +1452,6 @@ class ReflectionProperty implements Reflector {
* @link https://php.net/manual/en/reflectionproperty.isdefault.php
* @return bool <b>TRUE</b> if the property was declared at compile-time, or <b>FALSE</b> if
* it was created at run-time.
* @since 5.0
*/
public function isDefault () {}
@ -1573,7 +1459,6 @@ class ReflectionProperty implements Reflector {
* Gets modifiers
* @link https://php.net/manual/en/reflectionproperty.getmodifiers.php
* @return int A numeric representation of the modifiers.
* @since 5.0
*/
public function getModifiers () {}
@ -1581,7 +1466,6 @@ class ReflectionProperty implements Reflector {
* Gets declaring class
* @link https://php.net/manual/en/reflectionproperty.getdeclaringclass.php
* @return ReflectionClass A <b>ReflectionClass</b> object.
* @since 5.0
*/
public function getDeclaringClass () {}
@ -1589,7 +1473,6 @@ class ReflectionProperty implements Reflector {
* Gets doc comment
* @link https://php.net/manual/en/reflectionproperty.getdoccomment.php
* @return string|false The doc comment if it exists, otherwise <b>FALSE</b>
* @since 5.1
*/
public function getDocComment () {}
@ -1600,7 +1483,6 @@ class ReflectionProperty implements Reflector {
* <b>TRUE</b> to allow accessibility, or <b>FALSE</b>.
* </p>
* @return void No value is returned.
* @since 5.3
*/
public function setAccessible ($accessible) {}
@ -1642,7 +1524,6 @@ class ReflectionExtension implements Reflector {
* Clones
* @link https://php.net/manual/en/reflectionextension.clone.php
* @return void No value is returned, if called a fatal error will occur.
* @since 5.0
*/
final private function __clone () {}
@ -1659,7 +1540,6 @@ class ReflectionExtension implements Reflector {
* @return string If the <i>return</i> parameter
* is set to <b>TRUE</b>, then the export is returned as a string,
* otherwise <b>NULL</b> is returned.
* @since 5.0
* @deprecated 7.4
*/
public static function export ($name, $return = false) {}
@ -1671,7 +1551,6 @@ class ReflectionExtension implements Reflector {
* Name of the extension.
* </p>
* @throws \ReflectionException if the extension does not exist.
* @since 5.0
*/
public function __construct ($name) {}
@ -1680,7 +1559,6 @@ class ReflectionExtension implements Reflector {
* @link https://php.net/manual/en/reflectionextension.tostring.php
* @return string the exported extension as a string, in the same way as the
* <b>ReflectionExtension::export</b>.
* @since 5.0
*/
public function __toString () {}
@ -1688,7 +1566,6 @@ class ReflectionExtension implements Reflector {
* Gets extension name
* @link https://php.net/manual/en/reflectionextension.getname.php
* @return string The extensions name.
* @since 5.0
*/
public function getName () {}
@ -1696,7 +1573,6 @@ class ReflectionExtension implements Reflector {
* Gets extension version
* @link https://php.net/manual/en/reflectionextension.getversion.php
* @return string The version of the extension.
* @since 5.0
*/
public function getVersion () {}
@ -1706,7 +1582,6 @@ class ReflectionExtension implements Reflector {
* @return ReflectionFunction[] An associative array of <b>ReflectionFunction</b> objects,
* for each function defined in the extension with the keys being the function
* names. If no function are defined, an empty array is returned.
* @since 5.0
*/
public function getFunctions () {}
@ -1714,7 +1589,6 @@ class ReflectionExtension implements Reflector {
* Gets constants
* @link https://php.net/manual/en/reflectionextension.getconstants.php
* @return array An associative array with constant names as keys.
* @since 5.0
*/
public function getConstants () {}
@ -1723,7 +1597,6 @@ class ReflectionExtension implements Reflector {
* @link https://php.net/manual/en/reflectionextension.getinientries.php
* @return array An associative array with the ini entries as keys,
* with their defined values as values.
* @since 5.0
*/
public function getINIEntries () {}
@ -1733,7 +1606,6 @@ class ReflectionExtension implements Reflector {
* @return ReflectionClass[] An array of <b>ReflectionClass</b> objects, one
* for each class within the extension. If no classes are defined,
* an empty array is returned.
* @since 5.0
*/
public function getClasses () {}
@ -1742,7 +1614,6 @@ class ReflectionExtension implements Reflector {
* @link https://php.net/manual/en/reflectionextension.getclassnames.php
* @return array An array of class names, as defined in the extension.
* If no classes are defined, an empty array is returned.
* @since 5.0
*/
public function getClassNames () {}
@ -1752,7 +1623,6 @@ class ReflectionExtension implements Reflector {
* @return array An associative array with dependencies as keys and
* either Required, Optional
* or Conflicts as the values.
* @since 5.0
*/
public function getDependencies () {}
@ -1760,7 +1630,6 @@ class ReflectionExtension implements Reflector {
* Gets extension info
* @link https://php.net/manual/en/reflectionextension.info.php
* @return string Information about the extension.
* @since 5.0
*/
public function info () {}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -7,7 +7,6 @@
* Return available SPL classes
* @link https://php.net/manual/en/function.spl-classes.php
* @return array
* @since 5.0
*/
function spl_classes () {}
@ -103,7 +102,6 @@ function spl_autoload_call ($class_name) {}
* method.
* </p>
* @return array An array on success, or false on error.
* @since 5.1
*/
function class_parents ($class, $autoload = null) {}
@ -119,7 +117,6 @@ function class_parents ($class, $autoload = null) {}
* method.
* </p>
* @return array An array on success, or false on error.
* @since 5.1
*/
function class_implements ($class, $autoload = null) {}
@ -129,7 +126,6 @@ function class_implements ($class, $autoload = null) {}
* @param object $obj
* @return string A string that is unique for each object and is always the same for
* the same object.
* @since 5.2
*/
function spl_object_hash ($obj) {}
@ -143,7 +139,6 @@ function spl_object_hash ($obj) {}
* Whether to use the iterator element keys as index.
* </p>
* @return array An array containing the elements of the iterator.
* @since 5.1
*/
function iterator_to_array ($iterator, $use_keys = true) {}
@ -154,7 +149,6 @@ function iterator_to_array ($iterator, $use_keys = true) {}
* The iterator being counted.
* </p>
* @return int The number of elements in iterator.
* @since 5.1
*/
function iterator_count ($iterator) {}
@ -173,7 +167,6 @@ function iterator_count ($iterator) {}
* Arguments to pass to the callback function.
* </p>
* @return int the iteration count.
* @since 5.1
*/
function iterator_apply ($iterator, $function, array $args = null) {}

View File

@ -744,7 +744,6 @@ function sqlite_fetch_array ($result, $result_type = SQLITE_BOTH, $decode_binary
* @param array $ctor_params [optional]
* @param bool $decode_binary [optional]
* @return object
* @since 5.0
*/
function sqlite_fetch_object ($result, $class_name = null, array $ctor_params = null, $decode_binary = null) {}
@ -953,7 +952,6 @@ function sqlite_next ($result) {}
* <blockquote><p><b>Note</b>: </p><p>This function cannot be used with
* unbuffered result handles.</p></blockquote>
* @return bool true on success, or false if there are no more previous rows.
* @since 5.0
*/
function sqlite_prev ($result) {}
@ -968,7 +966,6 @@ function sqlite_prev ($result) {}
* unbuffered result handles.</p></blockquote>
* @return bool <b>TRUE</b> if there are more rows available from the
* result handle, or <b>FALSE</b> otherwise.
* @since 5.0
*/
function sqlite_valid ($result) {}
@ -993,7 +990,6 @@ function sqlite_has_more ($result) {}
* </p>
* @return bool <b>TRUE</b> if there are more previous rows available from the
* result handle, or <b>FALSE</b> otherwise.
* @since 5.0
*/
function sqlite_has_prev ($result) {}
@ -1154,7 +1150,6 @@ function sqlite_create_function ($dbhandle, $function_name, $callback, $num_args
* explaining why the database could not be opened if there was an error.
* </p>
* @return SQLiteDatabase a SQLiteDatabase object on success, &null; on error.
* @since 5.0
*/
function sqlite_factory ($filename, $mode = null, &$error_message = null) {}
@ -1202,7 +1197,6 @@ function sqlite_udf_decode_binary ($data) {}
* this function.
* </p>
* @return array|false an array of column data types; false on error.
* @since 5.0
*/
function sqlite_fetch_column_types ($dbhandle, $table_name, $result_type = null) {}

View File

@ -56,7 +56,6 @@ class SimpleXMLElement implements Traversable, ArrayAccess, Countable {
* returns a string on success and false on error. If the
* parameter is specified, it returns true if the file was written
* successfully and false otherwise.
* @since 5.2
*/
public function saveXML ($filename = null) {}
@ -68,7 +67,6 @@ class SimpleXMLElement implements Traversable, ArrayAccess, Countable {
* </p>
* @return SimpleXMLElement[] an array of SimpleXMLElement objects or <b>FALSE</b> in
* case of an error.
* @since 5.2
*/
public function xpath ($path) {}
@ -85,7 +83,6 @@ class SimpleXMLElement implements Traversable, ArrayAccess, Countable {
* <i>prefix</i> will not return any results.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.2
*/
public function registerXPathNamespace ($prefix, $ns) {}
@ -212,7 +209,6 @@ class SimpleXMLElement implements Traversable, ArrayAccess, Countable {
* Counts the children of an element
* @link https://php.net/manual/en/simplexmlelement.count.php
* @return int the number of elements of an element.
* @since 5.3
*/
public function count () {}
@ -260,7 +256,6 @@ class SimpleXMLIterator extends SimpleXMLElement implements RecursiveIterator, C
* Rewind to the first element
* @link https://php.net/manual/en/simplexmliterator.rewind.php
* @return void No value is returned.
* @since 5.1
*/
public function rewind () {}
@ -268,7 +263,6 @@ class SimpleXMLIterator extends SimpleXMLElement implements RecursiveIterator, C
* Check whether the current element is valid
* @link https://php.net/manual/en/simplexmliterator.valid.php
* @return bool <b>TRUE</b> if the current element is valid, otherwise <b>FALSE</b>
* @since 5.1
*/
public function valid () {}
@ -276,7 +270,6 @@ class SimpleXMLIterator extends SimpleXMLElement implements RecursiveIterator, C
* Returns the current element
* @link https://php.net/manual/en/simplexmliterator.current.php
* @return mixed the current element as a <b>SimpleXMLIterator</b> object or <b>NULL</b> on failure.
* @since 5.1
*/
public function current () {}
@ -284,7 +277,6 @@ class SimpleXMLIterator extends SimpleXMLElement implements RecursiveIterator, C
* Return current key
* @link https://php.net/manual/en/simplexmliterator.key.php
* @return mixed the XML tag name of the element referenced by the current <b>SimpleXMLIterator</b> object or <b>FALSE</b>
* @since 5.1
*/
public function key () {}
@ -292,7 +284,6 @@ class SimpleXMLIterator extends SimpleXMLElement implements RecursiveIterator, C
* Move to next element
* @link https://php.net/manual/en/simplexmliterator.next.php
* @return void No value is returned.
* @since 5.1
*/
public function next () {}
@ -300,7 +291,6 @@ class SimpleXMLIterator extends SimpleXMLElement implements RecursiveIterator, C
* Checks whether the current element has sub elements.
* @link https://php.net/manual/en/simplexmliterator.haschildren.php
* @return bool <b>TRUE</b> if the current element has sub-elements, otherwise <b>FALSE</b>
* @since 5.1
*/
public function hasChildren () {}
@ -309,7 +299,6 @@ class SimpleXMLIterator extends SimpleXMLElement implements RecursiveIterator, C
* @link https://php.net/manual/en/simplexmliterator.getchildren.php
* @return SimpleXMLIterator a <b>SimpleXMLIterator</b> object containing
* the sub-elements of the current element.
* @since 5.1
*/
public function getChildren () {}
@ -325,7 +314,6 @@ class SimpleXMLIterator extends SimpleXMLElement implements RecursiveIterator, C
* Counts the children of an element
* @link https://php.net/manual/en/simplexmlelement.count.php
* @return int the number of elements of an element.
* @since 5.3
*/
public function count () {}
@ -364,7 +352,6 @@ class SimpleXMLIterator extends SimpleXMLElement implements RecursiveIterator, C
* </p>
* @return SimpleXMLElement an object of class SimpleXMLElement with
* properties containing the data held within the XML document, or <b>FALSE</b> on failure.
* @since 5.0
*/
function simplexml_load_file ($filename, $class_name = "SimpleXMLElement", $options = 0, $ns = "", $is_prefix = false) {}
@ -393,7 +380,6 @@ function simplexml_load_file ($filename, $class_name = "SimpleXMLElement", $opti
* </p>
* @return SimpleXMLElement an object of class SimpleXMLElement with
* properties containing the data held within the xml document, or <b>FALSE</b> on failure.
* @since 5.0
*/
function simplexml_load_string ($data, $class_name = "SimpleXMLElement", $options = 0, $ns = "", $is_prefix = false) {}
@ -410,7 +396,6 @@ function simplexml_load_string ($data, $class_name = "SimpleXMLElement", $option
* SimpleXMLElement class.
* </p>
* @return SimpleXMLElement a SimpleXMLElement or <b>FALSE</b> on failure.
* @since 5.0
*/
function simplexml_import_dom (DOMNode $node, $class_name = "SimpleXMLElement") {}

View File

@ -5,8 +5,6 @@
* apache_child_terminate() will register the Apache process executing the current PHP request for termination once execution of PHP code is completed. It may be used to terminate a process after a script with high memory consumption has been run as memory will usually only be freed internally but not given back to the operating system.
* @link https://php.net/manual/en/function.apache-child-terminate.php
* @return bool <b>TRUE</b> if PHP is running as an Apache 1 module, the Apache version is non-multithreaded, and the child_terminate PHP directive is enabled (disabled by default). If these conditions are not met, <b>FALSE</b> is returned and an error of level <b>E_WARNING</b> is generated.
* @since 4.0.5
* @since 5.0
*/
function apache_child_terminate () {}
@ -14,8 +12,6 @@ function apache_child_terminate () {}
* Get a list of loaded Apache modules
* @link https://php.net/manual/en/function.apache-get-modules.php
* @return array of loaded Apache modules.
* @since 4.3.2
* @since 5.0
*/
function apache_get_modules () {}
@ -23,8 +19,6 @@ function apache_get_modules () {}
* Fetch the Apache version
* @link https://php.net/manual/en/function.apache-get-version.php
* @return string|false the Apache version on success or <b>FALSE</b> on failure.
* @since 4.3.2
* @since 5.0
*/
function apache_get_version () {}
@ -40,8 +34,6 @@ function apache_get_version () {}
* Whether to get the top-level variable available to all Apache layers.
* </p>
* @return string|false The value of the Apache environment variable on success, or <b>FALSE</b> on failure.
* @since 4.3
* @since 5.0
*/
function apache_getenv ( $variable, $walk_to_top = false ) {}
@ -54,8 +46,6 @@ function apache_getenv ( $variable, $walk_to_top = false ) {}
* The filename (URI) that's being requested.
* </p>
* @return object of related URI information.
* @since 4.0
* @since 5.0
*/
function apache_lookup_uri ( $filename ) {}
@ -71,8 +61,6 @@ function apache_lookup_uri ( $filename ) {}
* The value of the note.
* </p>
* @return string|false If called with one argument, it returns the current value of note note_name. If called with two arguments, it sets the value of note note_name to note_value and returns the previous value of note note_name. If the note cannot be retrieved, <b>FALSE</b> is returned.
* @since 4.0
* @since 5.0
*/
function apache_note ( $note_name, $note_value = '' ) {}
@ -80,8 +68,6 @@ function apache_note ( $note_name, $note_value = '' ) {}
* Fetches all HTTP request headers from the current request
* @link https://php.net/manual/en/function.apache-request-headers.php
* @return array|false An associative array of all the HTTP headers in the current request, or <b>FALSE</b on failure.
* @since 4.3
* @since 5.0
*/
function apache_request_headers () {}
@ -91,7 +77,6 @@ function apache_request_headers () {}
* This function requires Apache 1.
* @link https://php.net/manual/en/function.apache-reset-timeout.php
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.1
*/
function apache_reset_timeout () {}
@ -99,8 +84,6 @@ function apache_reset_timeout () {}
* Fetch all HTTP response headers
* @link https://php.net/manual/en/function.apache-response-headers.php
* @return array|false An array of all Apache response headers on success or <b>FALSE</b> on failure.
* @since 4.3
* @since 5.0
*/
function apache_response_headers () {}
@ -118,8 +101,6 @@ function apache_response_headers () {}
* Whether to set the top-level variable available to all Apache layers.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.2
* @since 5.0
*/
function apache_setenv ( $variable, $value, $walk_to_top = false ) {}
@ -128,8 +109,6 @@ function apache_setenv ( $variable, $value, $walk_to_top = false ) {}
* This function is an alias for apache_request_headers(). Please read the apache_request_headers() documentation for more information on how this function works.
* @link https://php.net/manual/en/function.getallheaders.php
* @return array|false An associative array of all the HTTP headers in the current request, or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function getallheaders () {}
@ -143,7 +122,5 @@ function getallheaders () {}
* The file that the virtual command will be performed on.
* </p>
* @return bool Performs the virtual command on success, or returns FALSE on failure.
* @since 4.0
* @since 5.0
*/
function virtual ( $filename ) {}

View File

@ -16,8 +16,6 @@
* this has not been set.
* </p>
* @return string The sum of the two operands, as a string.
* @since 4.0
* @since 5.0
* @since 7.0
*/
function bcadd ($left_operand, $right_operand, $scale = 0) {}
@ -38,8 +36,6 @@ function bcadd ($left_operand, $right_operand, $scale = 0) {}
* this has not been set.
* </p>
* @return string The result of the subtraction, as a string.
* @since 4.0
* @since 5.0
* @since 7.0
*/
function bcsub ($left_operand, $right_operand, $scale = 0) {}
@ -60,8 +56,6 @@ function bcsub ($left_operand, $right_operand, $scale = 0) {}
* this has not been set.
* </p>
* @return string the result as a string.
* @since 4.0
* @since 5.0
* @since 7.0
*/
function bcmul ($left_operand, $right_operand, $scale = 0) {}
@ -83,8 +77,6 @@ function bcmul ($left_operand, $right_operand, $scale = 0) {}
* </p>
* @return string|null the result of the division as a string, or <b>NULL</b> if
* <i>divisor</i> is 0.
* @since 4.0
* @since 5.0
* @since 7.0
*/
function bcdiv ($dividend, $divisor, $scale = 0) {}
@ -106,8 +98,6 @@ function bcdiv ($dividend, $divisor, $scale = 0) {}
* </p>
* @return string|null the modulus as a string, or <b>NULL</b> if
* <i>divisor</i> is 0.
* @since 4.0
* @since 5.0
* @since 7.0
* @since 7.2 scale param added, dividend/divisor no longer truncated
*/
@ -131,8 +121,6 @@ function bcmod ($dividend, $divisor, $scale = 0) {}
* this has not been set.
* </p>
* @return string the result as a string.
* @since 4.0
* @since 5.0
* @since 7.0
*/
function bcpow ($base, $exponent, $scale = 0) {}
@ -146,8 +134,6 @@ function bcpow ($base, $exponent, $scale = 0) {}
* @param int $scale [optional]
* @return string the square root as a string, or <b>NULL</b> if
* <i>operand</i> is negative.
* @since 4.0
* @since 5.0
* @since 7.0
*/
function bcsqrt ($operand, $scale = null) {}
@ -159,8 +145,6 @@ function bcsqrt ($operand, $scale = null) {}
* The scale factor.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
* @since 7.0
*/
function bcscale ($scale) {}
@ -182,8 +166,6 @@ function bcscale ($scale) {}
* @return int 0 if the two operands are equal, 1 if the
* <i>left_operand</i> is larger than the
* <i>right_operand</i>, -1 otherwise.
* @since 4.0
* @since 5.0
* @since 7.0
*/
function bccomp ($left_operand, $right_operand, $scale = 0) {}
@ -209,7 +191,6 @@ function bccomp ($left_operand, $right_operand, $scale = 0) {}
* </p>
* @return string|null the result as a string, or <b>NULL</b> if <i>modulus</i>
* is 0 or <i>exponent</i> is negative.
* @since 5.0
* @since 7.0
*/
function bcpowmod ($base, $exponent, $modulus, $scale = 0) {}

View File

@ -13,8 +13,6 @@
* </p>
* @return resource If the open fails, <b>bzopen</b> returns <b>FALSE</b>, otherwise
* it returns a pointer to the newly opened file.
* @since 4.0.4
* @since 5.0
*/
function bzopen ($filename, $mode) {}
@ -31,8 +29,6 @@ function bzopen ($filename, $mode) {}
* uncompressed bytes will be read at a time.
* </p>
* @return string the uncompressed data, or <b>FALSE</b> on error.
* @since 4.0.4
* @since 5.0
*/
function bzread ($bz, $length = 1024) {}
@ -52,8 +48,6 @@ function bzread ($bz, $length = 1024) {}
* <i>data</i> is reached, whichever comes first.
* </p>
* @return int the number of bytes written, or <b>FALSE</b> on error.
* @since 4.0.4
* @since 5.0
*/
function bzwrite ($bz, $data, $length = null) {}
@ -65,8 +59,6 @@ function bzwrite ($bz, $data, $length = null) {}
* successfully opened by <b>bzopen</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.4
* @since 5.0
*/
function bzflush ($bz) {}
@ -78,8 +70,6 @@ function bzflush ($bz) {}
* successfully opened by <b>bzopen</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.4
* @since 5.0
*/
function bzclose ($bz) {}
@ -91,8 +81,6 @@ function bzclose ($bz) {}
* successfully opened by <b>bzopen</b>.
* </p>
* @return int the error number as an integer.
* @since 4.0.4
* @since 5.0
*/
function bzerrno ($bz) {}
@ -104,8 +92,6 @@ function bzerrno ($bz) {}
* successfully opened by <b>bzopen</b>.
* </p>
* @return string a string containing the error message.
* @since 4.0.4
* @since 5.0
*/
function bzerrstr ($bz) {}
@ -119,8 +105,6 @@ function bzerrstr ($bz) {}
* @return array an associative array, with the error code in the
* errno entry, and the error message in the
* errstr entry.
* @since 4.0.4
* @since 5.0
*/
function bzerror ($bz) {}
@ -145,8 +129,6 @@ function bzerror ($bz) {}
* output is the same.
* </p>
* @return mixed The compressed string, or an error number if an error occurred.
* @since 4.0.4
* @since 5.0
*/
function bzcompress ($source, $blocksize = 4, $workfactor = 0) {}
@ -166,7 +148,5 @@ function bzcompress ($source, $blocksize = 4, $workfactor = 0) {}
* information about this feature.
* </p>
* @return mixed The decompressed string, or an error number if an error occurred.
* @since 4.0.4
* @since 5.0
*/
function bzdecompress ($source, $small = 0) {}

View File

@ -9,8 +9,6 @@
* A julian day number as integer
* </p>
* @return string The gregorian date as a string in the form "month/day/year"
* @since 4.0
* @since 5.0
*/
function jdtogregorian ($julianday) {}
@ -27,8 +25,6 @@ function jdtogregorian ($julianday) {}
* The year as a number between -4714 and 9999
* </p>
* @return int The julian day for the given gregorian date as an integer.
* @since 4.0
* @since 5.0
*/
function gregoriantojd ($month, $day, $year) {}
@ -39,8 +35,6 @@ function gregoriantojd ($month, $day, $year) {}
* A julian day number as integer
* </p>
* @return string The julian date as a string in the form "month/day/year"
* @since 4.0
* @since 5.0
*/
function jdtojulian ($julianday) {}
@ -57,8 +51,6 @@ function jdtojulian ($julianday) {}
* The year as a number between -4713 and 9999
* </p>
* @return int The julian day for the given julian date as an integer.
* @since 4.0
* @since 5.0
*/
function juliantojd ($month, $day, $year) {}
@ -78,8 +70,6 @@ function juliantojd ($month, $day, $year) {}
* <b>CAL_JEWISH_ADD_GERESHAYIM</b>.
* </p>
* @return string The jewish date as a string in the form "month/day/year"
* @since 4.0
* @since 5.0
*/
function jdtojewish ($juliandaycount, $hebrew = false, $fl = 0) {}
@ -96,8 +86,6 @@ function jdtojewish ($juliandaycount, $hebrew = false, $fl = 0) {}
* The year as a number between 1 and 9999
* </p>
* @return int The julian day for the given jewish date as an integer.
* @since 4.0
* @since 5.0
*/
function jewishtojd ($month, $day, $year) {}
@ -106,8 +94,6 @@ function jewishtojd ($month, $day, $year) {}
* @link https://php.net/manual/en/function.jdtofrench.php
* @param int $juliandaycount
* @return string The french revolution date as a string in the form "month/day/year"
* @since 4.0
* @since 5.0
*/
function jdtofrench ($juliandaycount) {}
@ -124,8 +110,6 @@ function jdtofrench ($juliandaycount) {}
* The year as a number between 1 and 14
* </p>
* @return int The julian day for the given french revolution date as an integer.
* @since 4.0
* @since 5.0
*/
function frenchtojd ($month, $day, $year) {}
@ -163,8 +147,6 @@ function frenchtojd ($month, $day, $year) {}
* </tr>
* </table>
* @return mixed The gregorian weekday as either an integer or string.
* @since 4.0
* @since 5.0
*/
function jddayofweek ($julianday, $mode = CAL_DOW_DAYNO) {}
@ -174,8 +156,6 @@ function jddayofweek ($julianday, $mode = CAL_DOW_DAYNO) {}
* @param int $julianday
* @param int $mode
* @return string The month name for the given Julian Day and <i>calendar</i>.
* @since 4.0
* @since 5.0
*/
function jdmonthname ($julianday, $mode) {}
@ -186,8 +166,6 @@ function jdmonthname ($julianday, $mode) {}
* The year as a number between 1970 an 2037
* </p>
* @return int The easter date as a unix timestamp.
* @since 4.0
* @since 5.0
*/
function easter_date ($year = null) {}
@ -205,8 +183,6 @@ function easter_date ($year = null) {}
* </p>
* @return int The number of days after March 21st that the Easter Sunday
* is in the given <i>year</i>.
* @since 4.0
* @since 5.0
*/
function easter_days ($year = null, $method = CAL_EASTER_DEFAULT) {}
@ -217,8 +193,6 @@ function easter_days ($year = null, $method = CAL_EASTER_DEFAULT) {}
* A unix timestamp to convert.
* </p>
* @return int A julian day number as integer.
* @since 4.0
* @since 5.0
*/
function unixtojd ($timestamp = 0) {}
@ -229,8 +203,6 @@ function unixtojd ($timestamp = 0) {}
* A julian day number between 2440588 and 2465342.
* </p>
* @return int The unix timestamp for the start of the given julian day.
* @since 4.0
* @since 5.0
*/
function jdtounix ($jday) {}
@ -257,8 +229,6 @@ function jdtounix ($jday) {}
* on the <i>calendar</i>
* </p>
* @return int A Julian Day number.
* @since 4.1
* @since 5.0
*/
function cal_to_jd ($calendar, $month, $day, $year) {}
@ -274,8 +244,6 @@ function cal_to_jd ($calendar, $month, $day, $year) {}
* @return array an array containing calendar information like month, day, year,
* day of week, abbreviated and full names of weekday and month and the
* date in string form "month/day/year".
* @since 4.1
* @since 5.0
*/
function cal_from_jd ($jd, $calendar) {}
@ -292,8 +260,6 @@ function cal_from_jd ($jd, $calendar) {}
* Year in the selected calendar
* </p>
* @return int The length in days of the selected month in the given calendar
* @since 4.1
* @since 5.0
*/
function cal_days_in_month ($calendar, $month, $year) {}
@ -305,8 +271,6 @@ function cal_days_in_month ($calendar, $month, $year) {}
* information about all calendars is returned.
* </p>
* @return array
* @since 4.1
* @since 5.0
*/
function cal_info ($calendar = -1) {}

View File

@ -8,8 +8,6 @@
* </p>
* @return bool <b>TRUE</b> if every character in <i>text</i> is either
* a letter or a digit, <b>FALSE</b> otherwise.
* @since 4.0.4
* @since 5.0
*/
function ctype_alnum ($text) {}
@ -21,8 +19,6 @@ function ctype_alnum ($text) {}
* </p>
* @return bool <b>TRUE</b> if every character in <i>text</i> is
* a letter from the current locale, <b>FALSE</b> otherwise.
* @since 4.0.4
* @since 5.0
*/
function ctype_alpha ($text) {}
@ -34,8 +30,6 @@ function ctype_alpha ($text) {}
* </p>
* @return bool <b>TRUE</b> if every character in <i>text</i> is
* a control character from the current locale, <b>FALSE</b> otherwise.
* @since 4.0.4
* @since 5.0
*/
function ctype_cntrl ($text) {}
@ -47,8 +41,6 @@ function ctype_cntrl ($text) {}
* </p>
* @return bool <b>TRUE</b> if every character in the string
* <i>text</i> is a decimal digit, <b>FALSE</b> otherwise.
* @since 4.0.4
* @since 5.0
*/
function ctype_digit ($text) {}
@ -60,8 +52,6 @@ function ctype_digit ($text) {}
* </p>
* @return bool <b>TRUE</b> if every character in <i>text</i> is
* a lowercase letter in the current locale.
* @since 4.0.4
* @since 5.0
*/
function ctype_lower ($text) {}
@ -74,8 +64,6 @@ function ctype_lower ($text) {}
* @return bool <b>TRUE</b> if every character in <i>text</i> is
* printable and actually creates visible output (no white space), <b>FALSE</b>
* otherwise.
* @since 4.0.4
* @since 5.0
*/
function ctype_graph ($text) {}
@ -89,16 +77,12 @@ function ctype_graph ($text) {}
* will actually create output (including blanks). Returns <b>FALSE</b> if
* <i>text</i> contains control characters or characters
* that do not have any output or control function at all.
* @since 4.0.4
* @since 5.0
*/
function ctype_print ($text) {}
/**
* Check for any printable character which is not whitespace or an
* @since 4.0.4
* @since 5.0
alphanumeric character
* alphanumeric character
* @link https://php.net/manual/en/function.ctype-punct.php
* @param string $text <p>
* The tested string.
@ -118,8 +102,6 @@ function ctype_punct ($text) {}
* creates some sort of white space, <b>FALSE</b> otherwise. Besides the
* blank character this also includes tab, vertical tab, line feed,
* carriage return and form feed characters.
* @since 4.0.4
* @since 5.0
*/
function ctype_space ($text) {}
@ -131,8 +113,6 @@ function ctype_space ($text) {}
* </p>
* @return bool <b>TRUE</b> if every character in <i>text</i> is
* an uppercase letter in the current locale.
* @since 4.0.4
* @since 5.0
*/
function ctype_upper ($text) {}
@ -145,7 +125,5 @@ function ctype_upper ($text) {}
* @return bool <b>TRUE</b> if every character in <i>text</i> is
* a hexadecimal 'digit', that is a decimal digit or a character from
* [A-Fa-f] , <b>FALSE</b> otherwise.
* @since 4.0.4
* @since 5.0
*/
function ctype_xdigit ($text) {}

View File

@ -78,8 +78,6 @@ class CURLFile {
* curl_setopt function.
* </p>
* @return resource|false a cURL handle on success, false on errors.
* @since 4.0.2
* @since 5.0
*/
function curl_init ($url = null) {}
@ -88,7 +86,6 @@ function curl_init ($url = null) {}
* @link https://php.net/manual/en/function.curl-copy-handle.php
* @param resource $ch
* @return resource a new cURL handle.
* @since 5.0
*/
function curl_copy_handle ($ch) {}
@ -138,8 +135,6 @@ function curl_copy_handle ($ch) {}
* <td>protocols</td>
* <td>An array of protocols names supported by cURL</td>
* </tr>
* @since 4.0.2
* @since 5.0
*/
function curl_version ($age = null) {}
@ -2108,8 +2103,6 @@ function curl_version ($age = null) {}
*
* </table>
* @return bool true on success or false on failure.
* @since 4.0.2
* @since 5.0
*/
function curl_setopt ($ch, $option, $value) {}
@ -2262,8 +2255,6 @@ function curl_unescape ($ch, $str) {}
* @param resource $ch
* @return string|bool true on success or false on failure. However, if the CURLOPT_RETURNTRANSFER
* option is set, it will return the result on success, false on failure.
* @since 4.0.2
* @since 5.0
*/
function curl_exec ($ch) {}
@ -2297,8 +2288,6 @@ function curl_exec ($ch) {}
* "upload_content_length"
* "starttransfer_time"
* "redirect_time"
* @since 4.0.4
* @since 5.0
*/
function curl_getinfo ($ch, $opt = null) {}
@ -2308,8 +2297,6 @@ function curl_getinfo ($ch, $opt = null) {}
* @param resource $ch
* @return string the error message or '' (the empty string) if no
* error occurred.
* @since 4.0.3
* @since 5.0
*/
function curl_error ($ch) {}
@ -2319,8 +2306,6 @@ function curl_error ($ch) {}
* @param resource $ch
* @return int the error number or 0 (zero) if no error
* occurred.
* @since 4.0.3
* @since 5.0
*/
function curl_errno ($ch) {}
@ -2355,8 +2340,6 @@ function curl_file_create($filename, $mimetype = '', $postname = '') {}
* @link https://php.net/manual/en/function.curl-close.php
* @param resource $ch
* @return void
* @since 4.0.2
* @since 5.0
*/
function curl_close ($ch) {}
@ -2364,7 +2347,6 @@ function curl_close ($ch) {}
* Returns a new cURL multi handle
* @link https://php.net/manual/en/function.curl-multi-init.php
* @return resource|false a cURL multi handle resource on success, false on failure.
* @since 5.0
*/
function curl_multi_init () {}
@ -2375,7 +2357,6 @@ function curl_multi_init () {}
* @param resource $ch
* @return int 0 on success, or one of the CURLM_XXX errors
* code.
* @since 5.0
*/
function curl_multi_add_handle ($mh, $ch) {}
@ -2385,7 +2366,6 @@ function curl_multi_add_handle ($mh, $ch) {}
* @param resource $mh
* @param resource $ch
* @return int|false On success, returns one of the CURLM_XXX error codes, false on failure.
* @since 5.0
*/
function curl_multi_remove_handle ($mh, $ch) {}
@ -2398,7 +2378,6 @@ function curl_multi_remove_handle ($mh, $ch) {}
* </p>
* @return int On success, returns the number of descriptors contained in,
* the descriptor sets. On failure, this function will return -1 on a select failure or timeout (from the underlying select system call).
* @since 5.0
*/
function curl_multi_select ($mh, $timeout = 1.0) {}
@ -2503,7 +2482,6 @@ function curl_reset ($ch) {}
* This only returns errors regarding the whole multi stack. There might still have
* occurred problems on individual transfers even when this function returns
* CURLM_OK.
* @since 5.0
*/
function curl_multi_exec ($mh, &$still_running) {}
@ -2512,7 +2490,6 @@ function curl_multi_exec ($mh, &$still_running) {}
* @link https://php.net/manual/en/function.curl-multi-getcontent.php
* @param resource $ch
* @return string Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set.
* @since 5.0
*/
function curl_multi_getcontent ($ch) {}
@ -2524,7 +2501,6 @@ function curl_multi_getcontent ($ch) {}
* Number of messages that are still in the queue
* </p>
* @return array On success, returns an associative array for the message, false on failure.
* @since 5.0
*/
function curl_multi_info_read ($mh, &$msgs_in_queue = null) {}
@ -2533,7 +2509,6 @@ function curl_multi_info_read ($mh, &$msgs_in_queue = null) {}
* @link https://php.net/manual/en/function.curl-multi-close.php
* @param resource $mh
* @return void
* @since 5.0
*/
function curl_multi_close ($mh) {}

View File

@ -68,7 +68,6 @@ define ('CURLOPT_NOPROGRESS', 43);
/**
* @link https://php.net/manual/en/curl.constants.php
* @since 5.3
*/
define ('CURLOPT_PROGRESSFUNCTION', 20056);
define ('CURLOPT_NOBODY', 44);
@ -129,13 +128,11 @@ define ('CURLOPT_COOKIE', 10022);
/**
* @link https://php.net/manual/en/curl.constants.php
* @since 5.1
*/
define ('CURLOPT_COOKIESESSION', 96);
/**
* @link https://php.net/manual/en/curl.constants.php
* @since 5.1
*/
define ('CURLOPT_AUTOREFERER', 58);
define ('CURLOPT_SSLCERT', 10025);
@ -462,55 +459,46 @@ define ('CURLMSG_DONE', 1);
/**
* @link https://php.net/manual/en/curl.constants.php
* @since 5.1
*/
define ('CURLOPT_FTPSSLAUTH', 129);
/**
* @link https://php.net/manual/en/curl.constants.php
* @since 5.1
*/
define ('CURLFTPAUTH_DEFAULT', 0);
/**
* @link https://php.net/manual/en/curl.constants.php
* @since 5.1
*/
define ('CURLFTPAUTH_SSL', 1);
/**
* @link https://php.net/manual/en/curl.constants.php
* @since 5.1
*/
define ('CURLFTPAUTH_TLS', 2);
/**
* @link https://php.net/manual/en/curl.constants.php
* @since 5.2
*/
define ('CURLOPT_FTP_SSL', 119);
/**
* @link https://php.net/manual/en/curl.constants.php
* @since 5.2
*/
define ('CURLFTPSSL_NONE', 0);
/**
* @link https://php.net/manual/en/curl.constants.php
* @since 5.2
*/
define ('CURLFTPSSL_TRY', 1);
/**
* @link https://php.net/manual/en/curl.constants.php
* @since 5.2
*/
define ('CURLFTPSSL_CONTROL', 2);
/**
* @link https://php.net/manual/en/curl.constants.php
* @since 5.2
*/
define ('CURLFTPSSL_ALL', 3);
define ('CURLOPT_FTP_FILEMETHOD', 138);
@ -1328,7 +1316,6 @@ define("CURL_TIMECOND_NONE",0);
define("CURLAUTH_NONE",0);
define("CURLE_SSL_CACERT_BADFILE",77);
/**
* @since 5.3
*/
define("CURLE_SSH",79);
define("CURLFTPSSL_CCC_ACTIVE",2);

View File

@ -15,8 +15,6 @@
* </p>
* @return int|false a timestamp on success, false otherwise. Previous to PHP 5.1.0,
* this function would return -1 on failure.
* @since 4.0
* @since 5.0
*/
function strtotime ($time, $now = 'time()') {}
@ -286,8 +284,6 @@ function strtotime ($time, $now = 'time()') {}
* @return string|false a formatted date string. If a non-numeric value is used for
* timestamp, false is returned and an
* E_WARNING level error is emitted.
* @since 4.0
* @since 5.0
*/
function date ($format, $timestamp = 'time()') {}
@ -383,7 +379,6 @@ function date ($format, $timestamp = 'time()') {}
* As idate always returns an integer and
* as they can't start with a "0", idate may return
* fewer digits than you would expect. See the example below.
* @since 5.0
*/
function idate ($format, $timestamp = null) {}
@ -398,8 +393,6 @@ function idate ($format, $timestamp = null) {}
* @return string|false a formatted date string. If a non-numeric value is used for
* timestamp, false is returned and an
* E_WARNING level error is emitted.
* @since 4.0
* @since 5.0
*/
function gmdate ($format, $timestamp = null) {}
@ -453,8 +446,6 @@ function gmdate ($format, $timestamp = null) {}
* given.
* If the arguments are invalid, the function returns false (before PHP 5.1
* it returned -1).
* @since 4.0
* @since 5.0
*/
function mktime ($hour = null, $minute = null, $second = null, $month = null, $day = null, $year = null, $is_dst = -1) {}
@ -484,8 +475,6 @@ function mktime ($hour = null, $minute = null, $second = null, $month = null, $d
* doesn't influence the result.
* </p>
* @return int a integer Unix timestamp.
* @since 4.0
* @since 5.0
*/
function gmmktime ($hour = null, $minute = null, $second = null, $month = null, $day = null, $year = null, $is_dst = null) {}
@ -504,8 +493,6 @@ function gmmktime ($hour = null, $minute = null, $second = null, $month = null,
* The year is between 1 and 32767 inclusive.
* </p>
* @return bool true if the date given is valid; otherwise returns false.
* @since 4.0
* @since 5.0
*/
function checkdate ($month, $day, $year) {}
@ -766,8 +753,6 @@ function checkdate ($month, $day, $year) {}
* local time if no timestamp is given. Month and weekday names and
* other language-dependent strings respect the current locale set
* with setlocale.
* @since 4.0
* @since 5.0
*/
function strftime ($format, $timestamp = null) {}
@ -783,8 +768,6 @@ function strftime ($format, $timestamp = null) {}
* local time if no timestamp is given. Month and weekday names and
* other language dependent strings respect the current locale set
* with setlocale.
* @since 4.0
* @since 5.0
*/
function gmstrftime ($format, $timestamp = null) {}
@ -792,8 +775,6 @@ function gmstrftime ($format, $timestamp = null) {}
* Return current Unix timestamp
* @link https://php.net/manual/en/function.time.php
* @return int <p>Returns the current time measured in the number of seconds since the Unix Epoch (January 1 1970 00:00:00 GMT).</p>
* @since 4.0
* @since 5.0
*/
function time () {}
@ -812,8 +793,6 @@ function time () {}
* <p>
* "tm_sec" - seconds
* @return array
* @since 4.0
* @since 5.0
*/
function localtime ($timestamp = null, $is_associative = null) {}
@ -895,8 +874,6 @@ function localtime ($timestamp = null, $is_associative = null) {}
* </td>
* </tr>
* </table>
* @since 4.0
* @since 5.0
*/
function getdate ($timestamp = null) {}
@ -910,7 +887,6 @@ function getdate ($timestamp = null) {}
* Time zone of the time.
* </p>
* @return DateTime|false DateTime object on success or false on failure.
* @since 5.2
*/
function date_create ($time = null, DateTimeZone $timezone = null ) {}
@ -952,7 +928,6 @@ function date_create_immutable_from_format ($format, $time, DateTimeZone $timezo
* @param DateTimeZone $timezone [optional] A DateTimeZone object representing the desired time zone.
* @return DateTime|false <p> Returns a new
* {@see DateTime} instance or <b>FALSE</b> on failure.</p>
* @since 5.3
*/
function date_create_from_format ($format, $time, $timezone = null) {}
@ -964,7 +939,6 @@ function date_create_from_format ($format, $time, $timezone = null) {}
* </p>
* @return array|false array with information about the parsed date
* on success or false on failure.
* @since 5.2
*/
function date_parse ($date) {}
@ -978,7 +952,6 @@ function date_parse ($date) {}
* String representing the date.
* </p>
* @return array associative array with detailed info about given date.
* @since 5.3
*/
function date_parse_from_format ($format, $date) {}
@ -987,7 +960,6 @@ function date_parse_from_format ($format, $date) {}
* {@see DateTime::getLastErrors}
* @link https://php.net/manual/en/function.date-get-last-errors.php
* @return array <p>Returns array containing info about warnings and errors.</p>
* @since 5.3
*/
function date_get_last_errors () {}
@ -998,7 +970,6 @@ function date_get_last_errors () {}
* @param $object
* @param $format
* @return string|false formatted date string on success or <b>FALSE</b> on failure.
* @since 5.2
*/
function date_format ($object, $format) {}
@ -1011,7 +982,6 @@ function date_format ($object, $format) {}
* @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 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
*/
function date_modify ($object, $modify) {}
@ -1025,7 +995,6 @@ function date_modify ($object, $modify) {}
* {@see DateInterval} object</p>
* @return DateTime|false <p>Returns the
* {@see DateTime} object for method chaining or <b>FALSE</b> on failure.</p>
* @since 5.3
*/
function date_add ($object, $interval) {}
@ -1040,7 +1009,6 @@ function date_add ($object, $interval) {}
* {@see DateInterval} object</p>
* @return DateTime|false <p>Returns the
* {@see DateTime} object for method chaining or <b>FALSE</b> on failure.</p>
* @since 5.3
*/
function date_sub ($object, $interval) {}
@ -1058,7 +1026,6 @@ function date_sub ($object, $interval) {}
* {@see DateTimeZone} object on success
* or <b>FALSE</b> on failure.
* </p>
* @since 5.2
*/
function date_timezone_get ($object) {}
@ -1073,7 +1040,6 @@ function date_timezone_get ($object) {}
* {@see DateTimeZone} object representing the desired time zone.</p>
* @return DateTime|false <p>Returns the
* {@see DateTime} object for method chaining or <b>FALSE</b> on failure.</p>
* @since 5.2
*/
function date_timezone_set ($object, $timezone) {}
@ -1084,7 +1050,6 @@ function date_timezone_set ($object, $timezone) {}
* @param $object <p>Procedural style only: A {@see DateTime} object
* returned by {@see date_create()}</p>
* @return int|false <p>Returns the timezone offset in seconds from UTC on success or <b>FALSE</b> on failure.</p>
* @since 5.2
*/
function date_offset_get ($object) {}
@ -1096,7 +1061,6 @@ function date_offset_get ($object) {}
* @param DateTime $object2 The date to compare to
* @param bool $absolute [optional] Whether to return absolute difference.
* @return DateInterval|false The DateInterval object representing the difference between the two dates or FALSE on failure.
* @since 5.3
*/
function date_diff ($object, $object2, $absolute = false) {}
@ -1110,7 +1074,6 @@ function date_diff ($object, $object2, $absolute = false) {}
* @param $microseconds [optional]
* @return DateTime|false <p>Returns the
* {@see DateTime} object for method chaining or <b>FALSE</b> on failure.</p>
* @since 5.2
*/
function date_time_set ($object, $hour, $minute, $second = 0, $microseconds = 0) {}
@ -1128,7 +1091,6 @@ function date_time_set ($object, $hour, $minute, $second = 0, $microseconds = 0)
* Returns the
* {@see DateTime} object for method chaining or <b>FALSE</b> on failure.
* </p>
* @since 5.2
*/
function date_date_set ($object, $year, $month, $day) {}
@ -1143,7 +1105,6 @@ function date_date_set ($object, $year, $month, $day) {}
* @return DateTime|false <p>
* Returns the {@see DateTime} object for method chaining or <strong><code>FALSE</code></strong> on failure.
* </p>
* @since 5.2
*/
function date_isodate_set ($object, $year, $week, $day = 1) {}
@ -1156,7 +1117,6 @@ function date_isodate_set ($object, $year, $week, $day = 1) {}
* @param int $unixtimestamp <p>Unix timestamp representing the date.</p>
* @return DateTime|false
* {@see DateTime} object for call chaining or <b>FALSE</b> on failure
* @since 5.3
*/
function date_timestamp_set ($object, $unixtimestamp) {}
@ -1166,7 +1126,6 @@ function date_timestamp_set ($object, $unixtimestamp) {}
* @link https://php.net/manual/en/function.date-timestamp-get.php
* @param DateTimeInterface $object
* @return int <p>Returns the Unix timestamp representing the date.</p>
* @since 5.3
*/
function date_timestamp_get ($object) {}
@ -1178,7 +1137,6 @@ function date_timestamp_get ($object) {}
* (e.g. CET).
* </p>
* @return DateTimeZone|false DateTimeZone object on success or false on failure.
* @since 5.1
*/
function timezone_open ($timezone) {}
@ -1188,7 +1146,6 @@ function timezone_open ($timezone) {}
* @param $object <p>The
* {@see DateTimeZone} for which to get a name.</p>
* @return string One of the timezone names in the list of timezones.
* @since 5.1
*/
function timezone_name_get ($object) {}
@ -1224,7 +1181,6 @@ function timezone_name_from_abbr ($abbr, $gmtOffset = null, $isdst = null) {}
* {@see timezone_open()}</p>
* @param $datetime <p>DateTime that contains the date/time to compute the offset from.</p>
* @return int|false <p>Returns time zone offset in seconds on success or <b>FALSE</b> on failure.</p>
* @since 5.1
*/
function timezone_offset_get ($object, $datetime) {}
@ -1238,7 +1194,6 @@ function timezone_offset_get ($object, $datetime) {}
* @param int $timestamp_begin [optional] <p>Begin timestamp</p>
* @param int $timestamp_end [optional] <p>End timestamp</p>
* @return array|false <p>Returns numerically indexed array containing associative array with all transitions on success or FALSE on failure.</p>
* @since 5.2
*/
function timezone_transitions_get ($object, $timestamp_begin, $timestamp_end) {}
@ -1247,7 +1202,6 @@ function timezone_transitions_get ($object, $timestamp_begin, $timestamp_end) {}
* @link https://php.net/manual/en/function.timezone-location-get.php
* @param $object <p>Procedural style only: A {@see DateTimeZone} object returned by {@see timezone_open()}
* @return array <p>Array containing location information about timezone.</p>
* @since 5.3
*/
function timezone_location_get ($object) {}
@ -1259,7 +1213,6 @@ function timezone_location_get ($object) {}
* @param string $country [optional] A two-letter ISO 3166-1 compatible country code.
* @return array|false Returns array on success or FALSE on failure.
* Note: This option is only used when what is set to DateTimeZone::PER_COUNTRY.
* @since 5.1
*/
function timezone_identifiers_list ($what = DateTimeZone::ALL, $country = null) {}
@ -1269,7 +1222,6 @@ function timezone_identifiers_list ($what = DateTimeZone::ALL, $country = null)
* {@see DateTimeZone::listAbbreviations}
* @link https://php.net/manual/en/function.timezone-abbreviations-list.php
* @return array|false Array on success or <b>FALSE</b> on failure.
* @since 5.2
*/
function timezone_abbreviations_list () {}
@ -1277,7 +1229,6 @@ function timezone_abbreviations_list () {}
* Gets the version of the timezonedb
* @link https://php.net/manual/en/function.timezone-version-get.php
* @return string a string.
* @since 5.3
*/
function timezone_version_get () {}
@ -1291,7 +1242,6 @@ function timezone_version_get () {}
* {@see DateInterval}.</p>
* @return DateInterval
* <p>Returns a new DateInterval instance.</p>
* @since 5.3
*/
function date_interval_create_from_date_string ($time) {}
@ -1301,7 +1251,6 @@ function date_interval_create_from_date_string ($time) {}
* @param $object
* @param $format
* @return DateInterval
* @since 5.3
*/
function date_interval_format ($object, $format) {}
@ -1316,7 +1265,6 @@ function date_interval_format ($object, $format) {}
* @return bool This function returns false if the
* timezone_identifier isn't valid, or true
* otherwise.
* @since 5.1
*/
function date_default_timezone_set ($timezone_identifier) {}
@ -1324,7 +1272,6 @@ function date_default_timezone_set ($timezone_identifier) {}
* Gets the default timezone used by all date/time functions in a script
* @link https://php.net/manual/en/function.date-default-timezone-get.php
* @return string a string.
* @since 5.1
*/
function date_default_timezone_get () {}
@ -1374,7 +1321,6 @@ function date_default_timezone_get () {}
* @param float $gmt_offset [optional]
* @return mixed the sunrise time in a specified format on
* success or false on failure.
* @since 5.0
*/
function date_sunrise ($timestamp, $format = null, $latitude = null, $longitude = null, $zenith = null, $gmt_offset = null) {}
@ -1424,7 +1370,6 @@ function date_sunrise ($timestamp, $format = null, $latitude = null, $longitude
* @param float $gmt_offset [optional]
* @return mixed the sunset time in a specified format on
* success or false on failure.
* @since 5.0
*/
function date_sunset ($timestamp, $format = null, $latitude = null, $longitude = null, $zenith = null, $gmt_offset = null) {}

View File

@ -677,7 +677,6 @@ class DateInterval {
/**
* Representation of date period.
* @link https://php.net/manual/en/class.dateperiod.php
* @since 5.3
*/
class DatePeriod implements Traversable {
const EXCLUDE_START_DATE = 1;
@ -724,7 +723,6 @@ class DatePeriod implements Traversable {
* @param DateTimeInterface $end
* @param int $options Can be set to DatePeriod::EXCLUDE_START_DATE.
* @link https://php.net/manual/en/dateperiod.construct.php
* @since 5.3
*/
public function __construct (DateTimeInterface $start, DateInterval $interval, DateTimeInterface $end, $options=0) {}
@ -734,7 +732,6 @@ class DatePeriod implements Traversable {
* @param int $recurrences Number of recurrences
* @param int $options Can be set to DatePeriod::EXCLUDE_START_DATE.
* @link https://php.net/manual/en/dateperiod.construct.php
* @since 5.3
*/
public function __construct (DateTimeInterface $start, DateInterval $interval, $recurrences, $options=0) {}
@ -742,7 +739,6 @@ class DatePeriod implements Traversable {
* @param string $isostr String containing the ISO interval.
* @param int $options Can be set to DatePeriod::EXCLUDE_START_DATE.
* @link https://php.net/manual/en/dateperiod.construct.php
* @since 5.3
*/
public function __construct ($isostr, $options=0) {}

View File

@ -118,8 +118,6 @@
* </p>
* @param mixed $_ [optional]
* @return resource a positive handle on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function dba_open ($path, $mode, $handler = null, $_ = null) {}
@ -143,8 +141,6 @@ function dba_open ($path, $mode, $handler = null, $_ = null) {}
* </p>
* @param mixed $_ [optional]
* @return resource a positive handle on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function dba_popen ($path, $mode, $handler = null, $_ = null) {}
@ -156,8 +152,6 @@ function dba_popen ($path, $mode, $handler = null, $_ = null) {}
* <b>dba_popen</b>.
* </p>
* @return void No value is returned.
* @since 4.0
* @since 5.0
*/
function dba_close ($handle) {}
@ -172,8 +166,6 @@ function dba_close ($handle) {}
* <b>dba_popen</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function dba_delete ($key, $handle) {}
@ -188,8 +180,6 @@ function dba_delete ($key, $handle) {}
* <b>dba_popen</b>.
* </p>
* @return bool <b>TRUE</b> if the key exists, <b>FALSE</b> otherwise.
* @since 4.0
* @since 5.0
*/
function dba_exists ($key, $handle) {}
@ -210,8 +200,6 @@ function dba_exists ($key, $handle) {}
* </p>
* @return string|false the associated string if the key/data pair is found, <b>FALSE</b>
* otherwise.
* @since 4.0
* @since 5.0
*/
function dba_fetch ($key, $handle) {}
@ -233,8 +221,6 @@ function dba_fetch ($key, $handle) {}
* </p>
* @return string|false the associated string if the key/data pair is found, <b>FALSE</b>
* otherwise.
* @since 4.0
* @since 5.0
*/
function dba_fetch ($key, $skip, $handle) {}
@ -254,8 +240,6 @@ function dba_fetch ($key, $skip, $handle) {}
* <b>dba_popen</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function dba_insert ($key, $value, $handle) {}
@ -273,8 +257,6 @@ function dba_insert ($key, $value, $handle) {}
* <b>dba_popen</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function dba_replace ($key, $value, $handle) {}
@ -286,8 +268,6 @@ function dba_replace ($key, $value, $handle) {}
* <b>dba_popen</b>.
* </p>
* @return string the key on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function dba_firstkey ($handle) {}
@ -299,8 +279,6 @@ function dba_firstkey ($handle) {}
* <b>dba_popen</b>.
* </p>
* @return string the key on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function dba_nextkey ($handle) {}
@ -312,8 +290,6 @@ function dba_nextkey ($handle) {}
* <b>dba_popen</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function dba_optimize ($handle) {}
@ -325,8 +301,6 @@ function dba_optimize ($handle) {}
* <b>dba_popen</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function dba_sync ($handle) {}
@ -344,8 +318,6 @@ function dba_sync ($handle) {}
* <p>
* When the internal cdb library is used you will see
* cdb and cdb_make.
* @since 4.3
* @since 5.0
*/
function dba_handlers ($full_info = false) {}
@ -353,8 +325,6 @@ function dba_handlers ($full_info = false) {}
* List all open database files
* @link https://php.net/manual/en/function.dba-list.php
* @return array An associative array, in the form resourceid =&gt; filename.
* @since 4.3
* @since 5.0
*/
function dba_list () {}
@ -367,7 +337,6 @@ function dba_list () {}
* @return array|false an array of the form array(0 =&gt; group, 1 =&gt;
* value_name). This function will return <b>FALSE</b> if
* <i>key</i> is <b>NULL</b> or <b>FALSE</b>.
* @since 5.0
*/
function dba_key_split ($key) {}

View File

@ -5,7 +5,6 @@
/**
* Gets a <b>DOMElement</b> object from a <b>SimpleXMLElement</b> object
* @since 5.0
* @link https://php.net/manual/en/function.dom-import-simplexml.php
* @param SimpleXMLElement $node <p>
* The <b>SimpleXMLElement</b> node.

File diff suppressed because it is too large Load Diff

View File

@ -75,8 +75,6 @@
* the header names and the array values are the values associated with
* those headers. If no data can be returned,
* <b>exif_read_data</b> will return <b>FALSE</b>.
* @since 4.2
* @since 5.0
*/
function exif_read_data ($stream, $sections = null, $arrays = false, $thumbnail = false) {}
@ -87,8 +85,6 @@ function exif_read_data ($stream, $sections = null, $arrays = false, $thumbnail
* @param $sections [optional]
* @param $arrays [optional]
* @param $thumbnail [optional]
* @since 4.0.1
* @since 5.0
* @deprecated 7.2 Use {@see exif_read_data()} instead.
*/
function read_exif_data ($filename, $sections = null, $arrays = false, $thumbnail = false) {}
@ -101,8 +97,6 @@ function read_exif_data ($filename, $sections = null, $arrays = false, $thumbnai
* </p>
* @return string|false the header name, or <b>FALSE</b> if <i>index</i> is
* not a defined EXIF tag id.
* @since 4.2
* @since 5.0
*/
function exif_tagname ($index) {}
@ -126,8 +120,6 @@ function exif_tagname ($index) {}
* </p>
* @return string|false the embedded thumbnail, or <b>FALSE</b> if the image contains no
* thumbnail.
* @since 4.2
* @since 5.0
*/
function exif_thumbnail ($stream, &$width = null, &$height = null, &$imagetype = null) {}
@ -144,8 +136,6 @@ function exif_thumbnail ($stream, &$width = null, &$height = null, &$imagetype =
* <b>exif_imagetype</b> will emit an <b>E_NOTICE</b>
* and return <b>FALSE</b> if it is unable to read enough bytes from the file to
* determine the image type.
* @since 4.3
* @since 5.0
*/
function exif_imagetype ($filename) {}

View File

@ -161,8 +161,6 @@ function finfo_buffer ($finfo ,$string, $options = FILEINFO_NONE, $context = NUL
* </p>
* @return string the content type in MIME format, like
* text/plain or application/octet-stream.
* @since 4.3
* @since 5.0
*/
function mime_content_type ($filename) {}
@ -187,14 +185,12 @@ define ('FILEINFO_MIME', 1040);
/**
* Return the mime type.
* @since 5.3
* @link https://php.net/manual/en/fileinfo.constants.php
*/
define ('FILEINFO_MIME_TYPE', 16);
/**
* Return the mime encoding of the file.
* @since 5.3
* @link https://php.net/manual/en/fileinfo.constants.php
*/
define ('FILEINFO_MIME_ENCODING', 1024);

View File

@ -25,7 +25,6 @@
* or <b>NULL</b> if the <i>variable_name</i> variable is not set.
* If the flag <b>FILTER_NULL_ON_FAILURE</b> is used, it
* returns <b>FALSE</b> if the variable is not set and <b>NULL</b> if the filter fails.
* @since 5.2
*/
function filter_input ($type, $variable_name, $filter = FILTER_DEFAULT, $options = null) {}
@ -81,7 +80,6 @@ function filter_input ($type, $variable_name, $filter = FILTER_DEFAULT, $options
* </code>
* </p>
* @return mixed the filtered data, or <b>FALSE</b> if the filter fails.
* @since 5.2
*/
function filter_var ($variable, $filter = FILTER_DEFAULT, $options = null) {}
@ -115,7 +113,6 @@ function filter_var ($variable, $filter = FILTER_DEFAULT, $options = null) {}
* the variable is not set. Or if the flag <b>FILTER_NULL_ON_FAILURE</b>
* is used, it returns <b>FALSE</b> if the variable is not set and <b>NULL</b> if the filter
* fails.
* @since 5.2
*/
function filter_input_array ($type, $definition = null, $add_empty = true) {}
@ -146,7 +143,6 @@ function filter_input_array ($type, $definition = null, $add_empty = true) {}
* @return mixed An array containing the values of the requested variables on success, or <b>FALSE</b>
* on failure. An array value will be <b>FALSE</b> if the filter fails, or <b>NULL</b> if
* the variable is not set.
* @since 5.2
*/
function filter_var_array (array $data, $definition = null, $add_empty = true) {}
@ -156,7 +152,6 @@ function filter_var_array (array $data, $definition = null, $add_empty = true) {
* @return array an array of names of all supported filters, empty array if there
* are no such filters. Indexes of this array are not filter IDs, they can be
* obtained with <b>filter_id</b> from a name instead.
* @since 5.2
*/
function filter_list () {}
@ -172,7 +167,6 @@ function filter_list () {}
* Name of a variable to check.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.2
*/
function filter_has_var ($type, $variable_name) {}
@ -183,7 +177,6 @@ function filter_has_var ($type, $variable_name) {}
* Name of a filter to get.
* </p>
* @return int|false ID of a filter on success or <b>FALSE</b> if filter doesn't exist.
* @since 5.2
*/
function filter_id ($filtername) {}

View File

@ -38,8 +38,6 @@ function ftp_mlsd ($ftp, $directory) {}
* <b>ftp_get_option</b>.
* </p>
* @return resource|false a FTP stream on success or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function ftp_connect ($host, $port = 21, $timeout = 90) {}
@ -61,8 +59,6 @@ function ftp_connect ($host, $port = 21, $timeout = 90) {}
* <b>ftp_get_option</b>.
* </p>
* @return resource|false a SSL-FTP stream on success or <b>FALSE</b> on error.
* @since 4.3
* @since 5.0
*/
function ftp_ssl_connect ($host, $port = 21, $timeout = 90) {}
@ -80,8 +76,6 @@ function ftp_ssl_connect ($host, $port = 21, $timeout = 90) {}
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* If login fails, PHP will also throw a warning.
* @since 4.0
* @since 5.0
*/
function ftp_login ($ftp_stream, $username, $password) {}
@ -92,8 +86,6 @@ function ftp_login ($ftp_stream, $username, $password) {}
* The link identifier of the FTP connection.
* </p>
* @return string the current directory name or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function ftp_pwd ($ftp_stream) {}
@ -104,8 +96,6 @@ function ftp_pwd ($ftp_stream) {}
* The link identifier of the FTP connection.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function ftp_cdup ($ftp_stream) {}
@ -120,8 +110,6 @@ function ftp_cdup ($ftp_stream) {}
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* If changing directory fails, PHP will also throw a warning.
* @since 4.0
* @since 5.0
*/
function ftp_chdir ($ftp_stream, $directory) {}
@ -136,8 +124,6 @@ function ftp_chdir ($ftp_stream, $directory) {}
* </p>
* @return bool <b>TRUE</b> if the command was successful (server sent response code:
* 200); otherwise returns <b>FALSE</b>.
* @since 4.0.3
* @since 5.0
*/
function ftp_exec ($ftp_stream, $command) {}
@ -153,7 +139,6 @@ function ftp_exec ($ftp_stream, $command) {}
* @return array the server's response as an array of strings.
* No parsing is performed on the response string, nor does
* <b>ftp_raw</b> determine if the command succeeded.
* @since 5.0
*/
function ftp_raw ($ftp_stream, $command) {}
@ -167,8 +152,6 @@ function ftp_raw ($ftp_stream, $command) {}
* The name of the directory that will be created.
* </p>
* @return string the newly created directory name on success or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function ftp_mkdir ($ftp_stream, $directory) {}
@ -183,8 +166,6 @@ function ftp_mkdir ($ftp_stream, $directory) {}
* path to an empty directory.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function ftp_rmdir ($ftp_stream, $directory) {}
@ -201,7 +182,6 @@ function ftp_rmdir ($ftp_stream, $directory) {}
* The remote file.
* </p>
* @return int|false the new file permissions on success or <b>FALSE</b> on error.
* @since 5.0
*/
function ftp_chmod ($ftp_stream, $mode, $filename) {}
@ -219,7 +199,6 @@ function ftp_chmod ($ftp_stream, $mode, $filename) {}
* reference in <i>result</i> if a variable is provided.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.0
*/
function ftp_alloc ($ftp_stream, $filesize, &$result = null) {}
@ -237,8 +216,6 @@ function ftp_alloc ($ftp_stream, $filesize, &$result = null) {}
* </p>
* @return array an array of filenames from the specified directory on success or
* <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function ftp_nlist ($ftp_stream, $directory) {}
@ -261,8 +238,6 @@ function ftp_nlist ($ftp_stream, $directory) {}
* The output is not parsed in any way. The system type identifier returned by
* <b>ftp_systype</b> can be used to determine how the results
* should be interpreted.
* @since 4.0
* @since 5.0
*/
function ftp_rawlist ($ftp_stream, $directory, $recursive = false) {}
@ -273,8 +248,6 @@ function ftp_rawlist ($ftp_stream, $directory, $recursive = false) {}
* The link identifier of the FTP connection.
* </p>
* @return string the remote system type, or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function ftp_systype ($ftp_stream) {}
@ -288,8 +261,6 @@ function ftp_systype ($ftp_stream) {}
* If <b>TRUE</b>, the passive mode is turned on, else it's turned off.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function ftp_pasv ($ftp_stream, $pasv) {}
@ -313,8 +284,6 @@ function ftp_pasv ($ftp_stream, $pasv) {}
* The position in the remote file to start downloading from.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function ftp_get ($ftp_stream, $local_file, $remote_file, $mode = FTP_BINARY, $resumepos = 0) {}
@ -338,8 +307,6 @@ function ftp_get ($ftp_stream, $local_file, $remote_file, $mode = FTP_BINARY, $r
* The position in the remote file to start downloading from.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function ftp_fget ($ftp_stream, $handle, $remote_file, $mode = FTP_BINARY, $resumepos = 0) {}
@ -361,8 +328,6 @@ function ftp_fget ($ftp_stream, $handle, $remote_file, $mode = FTP_BINARY, $resu
* </p>
* @param int $startpos [optional] <p>The position in the remote file to start uploading to.</p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function ftp_put ($ftp_stream, $remote_file, $local_file, $mode = FTP_BINARY, $startpos = 0) {}
@ -384,8 +349,6 @@ function ftp_put ($ftp_stream, $remote_file, $local_file, $mode = FTP_BINARY, $s
* </p>
* @param int $startpos [optional] <p>The position in the remote file to start uploading to.</p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function ftp_fput ($ftp_stream, $remote_file, $handle, $mode = FTP_BINARY, $startpos = 0) {}
@ -399,8 +362,6 @@ function ftp_fput ($ftp_stream, $remote_file, $handle, $mode = FTP_BINARY, $star
* The remote file.
* </p>
* @return int the file size on success, or -1 on error.
* @since 4.0
* @since 5.0
*/
function ftp_size ($ftp_stream, $remote_file) {}
@ -415,8 +376,6 @@ function ftp_size ($ftp_stream, $remote_file) {}
* </p>
* @return int the last modified time as a Unix timestamp on success, or -1 on
* error.
* @since 4.0
* @since 5.0
*/
function ftp_mdtm ($ftp_stream, $remote_file) {}
@ -433,8 +392,6 @@ function ftp_mdtm ($ftp_stream, $remote_file) {}
* The new name.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function ftp_rename ($ftp_stream, $oldname, $newname) {}
@ -448,8 +405,6 @@ function ftp_rename ($ftp_stream, $oldname, $newname) {}
* The file to delete.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function ftp_delete ($ftp_stream, $path) {}
@ -464,8 +419,6 @@ function ftp_delete ($ftp_stream, $path) {}
* be some issues with filenames containing spaces and other characters.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function ftp_site ($ftp_stream, $command) {}
@ -476,8 +429,6 @@ function ftp_site ($ftp_stream, $command) {}
* The link identifier of the FTP connection.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.2
* @since 5.0
*/
function ftp_close ($ftp_stream) {}
@ -518,8 +469,6 @@ function ftp_close ($ftp_stream) {}
* message will be thrown if the <i>option</i> is not
* supported or the passed <i>value</i> doesn't match the
* expected value for the given <i>option</i>.
* @since 4.2
* @since 5.0
*/
function ftp_set_option ($ftp_stream, $option, $value) {}
@ -550,8 +499,6 @@ function ftp_set_option ($ftp_stream, $option, $value) {}
* @return mixed the value on success or <b>FALSE</b> if the given
* <i>option</i> is not supported. In the latter case, a
* warning message is also thrown.
* @since 4.2
* @since 5.0
*/
function ftp_get_option ($ftp_stream, $option) {}
@ -574,8 +521,6 @@ function ftp_get_option ($ftp_stream, $option) {}
* @param int $resumepos [optional] <p>The position in the remote file to start downloading from.</p>
* @return int <b>FTP_FAILED</b> or <b>FTP_FINISHED</b>
* or <b>FTP_MOREDATA</b>.
* @since 4.3
* @since 5.0
*/
function ftp_nb_fget ($ftp_stream, $handle, $remote_file, $mode = FTP_BINARY, $resumepos = 0) {}
@ -598,8 +543,6 @@ function ftp_nb_fget ($ftp_stream, $handle, $remote_file, $mode = FTP_BINARY, $r
* @param int $resumepos [optional] <p>The position in the remote file to start downloading from.</p>
* @return int <b>FTP_FAILED</b> or <b>FTP_FINISHED</b>
* or <b>FTP_MOREDATA</b>.
* @since 4.3
* @since 5.0
*/
function ftp_nb_get ($ftp_stream, $local_file, $remote_file, $mode = FTP_BINARY, $resumepos = 0) {}
@ -611,8 +554,6 @@ function ftp_nb_get ($ftp_stream, $local_file, $remote_file, $mode = FTP_BINARY,
* </p>
* @return int <b>FTP_FAILED</b> or <b>FTP_FINISHED</b>
* or <b>FTP_MOREDATA</b>.
* @since 4.3
* @since 5.0
*/
function ftp_nb_continue ($ftp_stream) {}
@ -635,8 +576,6 @@ function ftp_nb_continue ($ftp_stream) {}
* @param int $startpos [optional] <p>The position in the remote file to start uploading to.</p>
* @return int <b>FTP_FAILED</b> or <b>FTP_FINISHED</b>
* or <b>FTP_MOREDATA</b>.
* @since 4.3
* @since 5.0
*/
function ftp_nb_put ($ftp_stream, $remote_file, $local_file, $mode = FTP_BINARY, $startpos = 0) {}
@ -659,8 +598,6 @@ function ftp_nb_put ($ftp_stream, $remote_file, $local_file, $mode = FTP_BINARY,
* @param int $startpos [optional] <p>The position in the remote file to start uploading to.</p>
* @return int <b>FTP_FAILED</b> or <b>FTP_FINISHED</b>
* or <b>FTP_MOREDATA</b>.
* @since 4.3
* @since 5.0
*/
function ftp_nb_fput ($ftp_stream, $remote_file, $handle, $mode = FTP_BINARY, $startpos = 0) {}
@ -668,8 +605,6 @@ function ftp_nb_fput ($ftp_stream, $remote_file, $handle, $mode = FTP_BINARY, $s
* Alias of <b>ftp_close</b>
* @link https://php.net/manual/en/function.ftp-quit.php
* @param $ftp
* @since 4.0
* @since 5.0
*/
function ftp_quit ($ftp) {}

178
gd/gd.php
View File

@ -77,8 +77,6 @@
* <p>
* Previous to PHP 5.3.0, the JPEG Support attribute was named
* JPG Support.
* @since 4.3
* @since 5.0
*/
function gd_info () {}
@ -111,8 +109,6 @@ function gd_info () {}
* <b>imagecolorallocate</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function imagearc ($image, $cx, $cy, $width, $height, $start, $end, $color) {}
@ -137,8 +133,6 @@ function imagearc ($image, $cx, $cy, $width, $height, $start, $end, $color) {}
* <b>imagecolorallocate</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.6
* @since 5.0
*/
function imageellipse ($image, $cx, $cy, $width, $height, $color) {}
@ -161,8 +155,6 @@ function imageellipse ($image, $cx, $cy, $width, $height, $color) {}
* <b>imagecolorallocate</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function imagechar ($image, $font, $x, $y, $c, $color) {}
@ -185,8 +177,6 @@ function imagechar ($image, $font, $x, $y, $c, $color) {}
* <b>imagecolorallocate</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function imagecharup ($image, $font, $x, $y, $c, $color) {}
@ -201,8 +191,6 @@ function imagecharup ($image, $font, $x, $y, $c, $color) {}
* y-coordinate of the point.
* </p>
* @return int|false the index of the color or <b>FALSE</b> on failure
* @since 4.0
* @since 5.0
*/
function imagecolorat ($image, $x, $y) {}
@ -214,8 +202,6 @@ function imagecolorat ($image, $x, $y) {}
* @param int $green <p>Value of green component.</p>
* @param int $blue <p>Value of blue component.</p>
* @return int|false A color identifier or <b>FALSE</b> if the allocation failed.
* @since 4.0
* @since 5.0
*/
function imagecolorallocate ($image, $red, $green, $blue) {}
@ -229,8 +215,6 @@ function imagecolorallocate ($image, $red, $green, $blue) {}
* The source image resource.
* </p>
* @return void No value is returned.
* @since 4.0.1
* @since 5.0
*/
function imagepalettecopy ($destination, $source) {}
@ -243,8 +227,6 @@ function imagepalettecopy ($destination, $source) {}
* @return resource|false An image resource will be returned on success. <b>FALSE</b> is returned if
* the image type is unsupported, the data is not in a recognised format,
* or the image is corrupt and cannot be loaded.
* @since 4.0.4
* @since 5.0
*/
function imagecreatefromstring ($image) {}
@ -257,8 +239,6 @@ function imagecreatefromstring ($image) {}
* @param int $blue <p>Value of blue component.</p>
* @return int|false the index of the closest color, in the palette of the image, to
* the specified one or <b>FALSE</b> on failure
* @since 4.0
* @since 5.0
*/
function imagecolorclosest ($image, $red, $green, $blue) {}
@ -271,8 +251,6 @@ function imagecolorclosest ($image, $red, $green, $blue) {}
* @param int $blue <p>Value of blue component.</p>
* @return int|false an integer with the index of the color which has
* the hue, white and blackness nearest the given color or <b>FALSE</b> on failure
* @since 4.0.1
* @since 5.0
*/
function imagecolorclosesthwb ($image, $red, $green, $blue) {}
@ -284,8 +262,6 @@ function imagecolorclosesthwb ($image, $red, $green, $blue) {}
* The color identifier.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function imagecolordeallocate ($image, $color) {}
@ -297,8 +273,6 @@ function imagecolordeallocate ($image, $color) {}
* @param int $green <p>Value of green component.</p>
* @param int $blue <p>Value of blue component.</p>
* @return int|false a color index or <b>FALSE</b> on failure
* @since 4.0
* @since 5.0
*/
function imagecolorresolve ($image, $red, $green, $blue) {}
@ -311,8 +285,6 @@ function imagecolorresolve ($image, $red, $green, $blue) {}
* @param int $blue <p>Value of blue component.</p>
* @return int|false the index of the specified color in the palette, -1 if the
* color does not exist, or <b>FALSE</b> on failure
* @since 4.0
* @since 5.0
*/
function imagecolorexact ($image, $red, $green, $blue) {}
@ -330,8 +302,6 @@ function imagecolorexact ($image, $red, $green, $blue) {}
* Value of alpha component.
* </p>
* @return void No value is returned.
* @since 4.0
* @since 5.0
*/
function imagecolorset ($image, $index, $red, $green, $blue, $alpha = 0) {}
@ -347,8 +317,6 @@ function imagecolorset ($image, $index, $red, $green, $blue, $alpha = 0) {}
* transparent color is returned. If <i>color</i>
* is not specified, and the image has no transparent color, the
* returned identifier will be -1. If an error occurs, <b>FALSE</b> is returned.
* @since 4.0
* @since 5.0
*/
function imagecolortransparent ($image, $color = null) {}
@ -361,8 +329,6 @@ function imagecolortransparent ($image, $color = null) {}
* </p>
* @return int|false the number of colors in the specified image's palette, 0 for
* truecolor images, or <b>FALSE</b> on failure
* @since 4.0
* @since 5.0
*/
function imagecolorstotal ($image) {}
@ -375,8 +341,6 @@ function imagecolorstotal ($image) {}
* </p>
* @return array|false an associative array with red, green, blue and alpha keys that
* contain the appropriate values for the specified color index or <b>FALSE</b> on failure
* @since 4.0
* @since 5.0
*/
function imagecolorsforindex ($image, $index) {}
@ -408,8 +372,6 @@ function imagecolorsforindex ($image, $index) {}
* Source height.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function imagecopy ($dst_im, $src_im, $dst_x, $dst_y, $src_x, $src_y, $src_w, $src_h) {}
@ -448,8 +410,6 @@ function imagecopy ($dst_im, $src_im, $dst_x, $dst_y, $src_x, $src_y, $src_w, $s
* implements alpha transparency for true colour images.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.1
* @since 5.0
*/
function imagecopymerge ($dst_im, $src_im, $dst_x, $dst_y, $src_x, $src_y, $src_w, $src_h, $pct) {}
@ -488,8 +448,6 @@ function imagecopymerge ($dst_im, $src_im, $dst_x, $dst_y, $src_x, $src_y, $src_
* it implements alpha transparency for true colour images.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.6
* @since 5.0
*/
function imagecopymergegray ($dst_im, $src_im, $dst_x, $dst_y, $src_x, $src_y, $src_w, $src_h, $pct) {}
@ -523,8 +481,6 @@ function imagecopymergegray ($dst_im, $src_im, $dst_x, $dst_y, $src_x, $src_y, $
* Source height.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function imagecopyresized ($dst_image, $src_image, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h) {}
@ -538,8 +494,6 @@ function imagecopyresized ($dst_image, $src_image, $dst_x, $dst_y, $src_x, $src_
* The image height.
* </p>
* @return resource|false an image resource identifier on success, false on errors.
* @since 4.0
* @since 5.0
*/
function imagecreate ($width, $height) {}
@ -553,8 +507,6 @@ function imagecreate ($width, $height) {}
* Image height.
* </p>
* @return resource|false an image resource identifier on success, false on errors.
* @since 4.0.6
* @since 5.0
*/
function imagecreatetruecolor ($width, $height) {}
@ -564,8 +516,6 @@ function imagecreatetruecolor ($width, $height) {}
* @param resource $image
* @return bool true if the image is truecolor, false
* otherwise.
* @since 4.3.2
* @since 5.0
*/
function imageistruecolor ($image) {}
@ -582,8 +532,6 @@ function imageistruecolor ($image) {}
* Sets the maximum number of colors that should be retained in the palette.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.6
* @since 5.0
*/
function imagetruecolortopalette ($image, $dither, $ncolors) {}
@ -595,8 +543,6 @@ function imagetruecolortopalette ($image, $dither, $ncolors) {}
* Thickness, in pixels.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.6
* @since 5.0
*/
function imagesetthickness ($image, $thickness) {}
@ -632,8 +578,6 @@ function imagesetthickness ($image, $thickness) {}
* A bitwise OR of the following possibilities:
* IMG_ARC_PIE
* @return bool true on success or false on failure.
* @since 4.0.6
* @since 5.0
*/
function imagefilledarc ($image, $cx, $cy, $width, $height, $start, $end, $color, $style) {}
@ -658,8 +602,6 @@ function imagefilledarc ($image, $cx, $cy, $width, $height, $start, $end, $color
* imagecolorallocate.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.6
* @since 5.0
*/
function imagefilledellipse ($image, $cx, $cy, $width, $height, $color) {}
@ -672,8 +614,6 @@ function imagefilledellipse ($image, $cx, $cy, $width, $height, $color) {}
* the default value is true otherwise the default value is false
* </p>
* @return bool true on success or false on failure.
* @since 4.0.6
* @since 5.0
*/
function imagealphablending ($image, $blendmode) {}
@ -685,8 +625,6 @@ function imagealphablending ($image, $blendmode) {}
* Whether to save the alpha channel or not. Default to false.
* </p>
* @return bool true on success or false on failure.
* @since 4.3.2
* @since 5.0
*/
function imagesavealpha ($image, $saveflag) {}
@ -709,8 +647,6 @@ function imagesavealpha ($image, $saveflag) {}
* 127 indicates completely transparent.
* </p>
* @return int|false A color identifier or false if the allocation failed.
* @since 4.3.2
* @since 5.0
*/
function imagecolorallocatealpha ($image, $red, $green, $blue, $alpha) {}
@ -733,8 +669,6 @@ function imagecolorallocatealpha ($image, $red, $green, $blue, $alpha) {}
* 127 indicates completely transparent.
* </p>
* @return int|false a color index or <b>FALSE</b> on failure
* @since 4.0.6
* @since 5.0
*/
function imagecolorresolvealpha ($image, $red, $green, $blue, $alpha) {}
@ -758,8 +692,6 @@ function imagecolorresolvealpha ($image, $red, $green, $blue, $alpha) {}
* </p>
* @return int|false the index of the closest color in the palette or
* <b>FALSE</b> on failure
* @since 4.0.6
* @since 5.0
*/
function imagecolorclosestalpha ($image, $red, $green, $blue, $alpha) {}
@ -784,8 +716,6 @@ function imagecolorclosestalpha ($image, $red, $green, $blue, $alpha) {}
* @return int|false the index of the specified color+alpha in the palette of the
* image, -1 if the color does not exist in the image's palette, or <b>FALSE</b>
* on failure
* @since 4.0.6
* @since 5.0
*/
function imagecolorexactalpha ($image, $red, $green, $blue, $alpha) {}
@ -819,8 +749,6 @@ function imagecolorexactalpha ($image, $red, $green, $blue, $alpha) {}
* Source height.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.6
* @since 5.0
*/
function imagecopyresampled ($dst_image, $src_image, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h) {}
@ -838,8 +766,6 @@ function imagecopyresampled ($dst_image, $src_image, $dst_x, $dst_y, $src_x, $sr
* If set and non-zero, transparent colors are ignored (otherwise kept).
* </p>
* @return resource|false the rotated image or <b>FALSE</b> on failure
* @since 4.3
* @since 5.0
*/
function imagerotate ($image, $angle, $bgd_color, $ignore_transparent = null) {}
@ -852,8 +778,6 @@ function imagerotate ($image, $angle, $bgd_color, $ignore_transparent = null) {}
* Whether to enable antialiasing or not.
* </p>
* @return bool true on success or false on failure.
* @since 4.3.2
* @since 5.0
*/
function imageantialias ($image, $enabled) {}
@ -865,8 +789,6 @@ function imageantialias ($image, $enabled) {}
* The image resource to be used as a tile.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.6
* @since 5.0
*/
function imagesettile ($image, $tile) {}
@ -878,8 +800,6 @@ function imagesettile ($image, $tile) {}
* An image resource.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.6
* @since 5.0
*/
function imagesetbrush ($image, $brush) {}
@ -893,8 +813,6 @@ function imagesetbrush ($image, $brush) {}
* transparent pixel.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.6
* @since 5.0
*/
function imagesetstyle ($image, array $style) {}
@ -905,8 +823,6 @@ function imagesetstyle ($image, array $style) {}
* Path to the PNG image.
* </p>
* @return resource|false an image resource identifier on success, false on errors.
* @since 4.0
* @since 5.0
*/
function imagecreatefrompng ($filename) {}
@ -917,8 +833,6 @@ function imagecreatefrompng ($filename) {}
* Path to the GIF image.
* </p>
* @return resource|false an image resource identifier on success, false on errors.
* @since 4.0
* @since 5.0
*/
function imagecreatefromgif ($filename) {}
@ -929,8 +843,6 @@ function imagecreatefromgif ($filename) {}
* Path to the JPEG image.
* </p>
* @return resource|false an image resource identifier on success, false on errors.
* @since 4.0
* @since 5.0
*/
function imagecreatefromjpeg ($filename) {}
@ -941,8 +853,6 @@ function imagecreatefromjpeg ($filename) {}
* Path to the WBMP image.
* </p>
* @return resource|false an image resource identifier on success, false on errors.
* @since 4.0.1
* @since 5.0
*/
function imagecreatefromwbmp ($filename) {}
@ -964,8 +874,6 @@ function imagecreatefromwebp ($filename) {}
* Path to the XBM image.
* </p>
* @return resource|false an image resource identifier on success, false on errors.
* @since 4.0.1
* @since 5.0
*/
function imagecreatefromxbm ($filename) {}
@ -976,8 +884,6 @@ function imagecreatefromxbm ($filename) {}
* Path to the XPM image.
* </p>
* @return resource|false an image resource identifier on success, false on errors.
* @since 4.0.1
* @since 5.0
*/
function imagecreatefromxpm ($filename) {}
@ -988,8 +894,6 @@ function imagecreatefromxpm ($filename) {}
* Path to the GD file.
* </p>
* @return resource|false an image resource identifier on success, false on errors.
* @since 4.0.7
* @since 5.0
*/
function imagecreatefromgd ($filename) {}
@ -1000,8 +904,6 @@ function imagecreatefromgd ($filename) {}
* Path to the GD2 image.
* </p>
* @return resource|false an image resource identifier on success, false on errors.
* @since 4.0.7
* @since 5.0
*/
function imagecreatefromgd2 ($filename) {}
@ -1024,8 +926,6 @@ function imagecreatefromgd2 ($filename) {}
* Source height.
* </p>
* @return resource|false an image resource identifier on success, false on errors.
* @since 4.0.7
* @since 5.0
*/
function imagecreatefromgd2part ($filename, $srcX, $srcY, $width, $height) {}
@ -1052,8 +952,6 @@ function imagecreatefromgd2part ($filename, $srcX, $srcY, $width, $height) {}
* disable or activate all filters.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function imagepng ($image, $filename = null, $quality = null, $filters = null) {}
@ -1082,8 +980,6 @@ function imagewebp ($image, $to = null, $quality = 80) {}
* will be outputted directly.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function imagegif ($image, $filename = null) {}
@ -1105,8 +1001,6 @@ function imagegif ($image, $filename = null) {}
* default is the default IJG quality value (about 75).
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function imagejpeg ($image, $filename = null, $quality = null) {}
@ -1124,8 +1018,6 @@ function imagejpeg ($image, $filename = null, $quality = null) {}
* The default foreground color is black.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.1
* @since 5.0
*/
function imagewbmp ($image, $filename = null, $foreground = null) {}
@ -1139,8 +1031,6 @@ function imagewbmp ($image, $filename = null, $foreground = null) {}
* will be outputted directly.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.7
* @since 5.0
*/
function imagegd ($image, $filename = null) {}
@ -1161,8 +1051,6 @@ function imagegd ($image, $filename = null) {}
* IMG_GD2_RAW.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.7
* @since 5.0
*/
function imagegd2 ($image, $filename = null, $chunk_size = null, $type = null) {}
@ -1171,8 +1059,6 @@ function imagegd2 ($image, $filename = null, $chunk_size = null, $type = null) {
* @link https://php.net/manual/en/function.imagedestroy.php
* @param resource $image
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function imagedestroy ($image) {}
@ -1187,8 +1073,6 @@ function imagedestroy ($image) {}
* The output gamma.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function imagegammacorrect ($image, $inputgamma, $outputgamma) {}
@ -1207,8 +1091,6 @@ function imagegammacorrect ($image, $inputgamma, $outputgamma) {}
* imagecolorallocate.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function imagefill ($image, $x, $y, $color) {}
@ -1228,8 +1110,6 @@ function imagefill ($image, $x, $y, $color) {}
* imagecolorallocate.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function imagefilledpolygon ($image, array $points, $num_points, $color) {}
@ -1254,8 +1134,6 @@ function imagefilledpolygon ($image, array $points, $num_points, $color) {}
* imagecolorallocate.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function imagefilledrectangle ($image, $x1, $y1, $x2, $y2, $color) {}
@ -1278,8 +1156,6 @@ function imagefilledrectangle ($image, $x1, $y1, $x2, $y2, $color) {}
* imagecolorallocate.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function imagefilltoborder ($image, $x, $y, $border, $color) {}
@ -1288,8 +1164,6 @@ function imagefilltoborder ($image, $x, $y, $border, $color) {}
* @link https://php.net/manual/en/function.imagefontwidth.php
* @param int $font
* @return int the width of the pixel
* @since 4.0
* @since 5.0
*/
function imagefontwidth ($font) {}
@ -1298,8 +1172,6 @@ function imagefontwidth ($font) {}
* @link https://php.net/manual/en/function.imagefontheight.php
* @param int $font
* @return int the height of the pixel.
* @since 4.0
* @since 5.0
*/
function imagefontheight ($font) {}
@ -1313,8 +1185,6 @@ function imagefontheight ($font) {}
* </p>
* @return int|false 1 if the interlace bit is set for the image,
* 0 if it is not, or <b>FALSE</b> on failure
* @since 4.0
* @since 5.0
*/
function imageinterlace ($image, $interlace = null) {}
@ -1339,8 +1209,6 @@ function imageinterlace ($image, $interlace = null) {}
* imagecolorallocate.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function imageline ($image, $x1, $y1, $x2, $y2, $color) {}
@ -1394,8 +1262,6 @@ function imageline ($image, $x1, $y1, $x2, $y2, $color) {}
* </p>
* @return int|false The font identifier which is always bigger than 5 to avoid conflicts with
* built-in fonts or false on errors.
* @since 4.0
* @since 5.0
*/
function imageloadfont ($file) {}
@ -1430,8 +1296,6 @@ function imageloadfont ($file) {}
* imagecolorallocate.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function imagepolygon ($image, array $points, $num_points, $color) {}
@ -1457,8 +1321,6 @@ function imagepolygon ($image, array $points, $num_points, $color) {}
* imagecolorallocate.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function imagerectangle ($image, $x1, $y1, $x2, $y2, $color) {}
@ -1477,8 +1339,6 @@ function imagerectangle ($image, $x1, $y1, $x2, $y2, $color) {}
* imagecolorallocate.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function imagesetpixel ($image, $x, $y, $color) {}
@ -1501,8 +1361,6 @@ function imagesetpixel ($image, $x, $y, $color) {}
* imagecolorallocate.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function imagestring ($image, $font, $x, $y, $string, $color) {}
@ -1525,8 +1383,6 @@ function imagestring ($image, $font, $x, $y, $string, $color) {}
* imagecolorallocate.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function imagestringup ($image, $font, $x, $y, $string, $color) {}
@ -1536,8 +1392,6 @@ function imagestringup ($image, $font, $x, $y, $string, $color) {}
* @param resource $image
* @return int|false Return the width of the image or false on
* errors.
* @since 4.0
* @since 5.0
*/
function imagesx ($image) {}
@ -1547,8 +1401,6 @@ function imagesx ($image) {}
* @param resource $image
* @return int|false Return the height of the image or false on
* errors.
* @since 4.0
* @since 5.0
*/
function imagesy ($image) {}
@ -1573,8 +1425,6 @@ function imagesy ($image) {}
* imagecolorallocate.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
* @deprecated Use combination of imagesetstyle() and imageline() instead
*/
function imagedashedline ($image, $x1, $y1, $x2, $y2, $color) {}
@ -1642,8 +1492,6 @@ function imagedashedline ($image, $x1, $y1, $x2, $y2, $color) {}
* The points are relative to the text regardless of the
* angle, so "upper left" means in the top left-hand
* corner seeing the text horizontally.
* @since 4.0
* @since 5.0
*/
function imagettfbbox ($size, $angle, $fontfile, $text) {}
@ -1736,8 +1584,6 @@ function imagettfbbox ($size, $angle, $fontfile, $text) {}
* regardless of the angle, so "upper left" means in the top left-hand
* corner when you see the text horizontally.
* Returns false on error.
* @since 4.0
* @since 5.0
*/
function imagettftext ($image, $size, $angle, $x, $y, $color, $fontfile, $text) {}
@ -1817,8 +1663,6 @@ function imagettftext ($image, $size, $angle, $x, $y, $color, $fontfile, $text)
* angle, so "upper left" means in the top left-hand
* corner seeing the text horizontally.
* Returns false on error.
* @since 4.0.7
* @since 5.0
*/
function imageftbbox ($size, $angle, $fontfile, $text, $extrainfo = null ) {}
@ -1937,8 +1781,6 @@ function imageftbbox ($size, $angle, $fontfile, $text, $extrainfo = null ) {}
* <td>upper left y-coordinate</td>
* </tr>
* Returns false on error.
* @since 4.0.7
* @since 5.0
*/
function imagefttext ($image, $size, $angle, $x, $y, $color, $fontfile, $text, $extrainfo = null ) {}
@ -1950,8 +1792,6 @@ function imagefttext ($image, $size, $angle, $x, $y, $color, $fontfile, $text, $
* </p>
* @return resource|false In the case everything went right, a valid font index will be returned and
* can be used for further purposes. Otherwise the function returns false.
* @since 4.0
* @since 5.0
* @removed 7.0 This function was REMOVED in PHP 7.0.0.
*/
function imagepsloadfont ($filename) {}
@ -1963,8 +1803,6 @@ function imagepsloadfont ($filename) {}
* A font resource, returned by imagepsloadfont.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function imagepsfreefont ($font_index) {}
@ -2010,8 +1848,6 @@ function imagepsextendfont ($font_index, $extend) {}
* Slant level.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
* @removed 7.0 This function was REMOVED in PHP 7.0.0.
*/
function imagepsslantfont ($font_index, $slant) {}
@ -2085,8 +1921,6 @@ function imagepsslantfont ($font_index, $slant) {}
* <td>upper right y-coordinate</td>
* </tr>
* Returns false on error.
* @since 4.0
* @since 5.0
* @removed 7.0 This function was REMOVED in PHP 7.0.0.
*/
function imagepstext ($image, $text, $font_index, $size, $foreground, $background, $x, $y, $space = null, $tightness = null, $angle = null, $antialias_steps = null) {}
@ -2129,8 +1963,6 @@ function imagepsbbox ($text, $font, $size) {}
* @return int a bit-field corresponding to the image formats supported by the
* version of GD linked into PHP. The following bits are returned,
* IMG_BMP | IMG_GIF | IMG_JPG | IMG_PNG | IMG_WBMP | IMG_XPM | IMG_WEBP
* @since 4.0.2
* @since 5.0
*/
function imagetypes () {}
@ -2153,8 +1985,6 @@ function imagetypes () {}
* Threshold value, between 0 and 8 (inclusive).
* </p>
* @return bool true on success or false on failure.
* @since 4.0.5
* @since 5.0
* @deprecated 7.2 Use imagecreatefromjpeg() and imagewbmp() instead
*/
function jpeg2wbmp ($jpegname, $wbmpname, $dest_height, $dest_width, $threshold) {}
@ -2178,8 +2008,6 @@ function jpeg2wbmp ($jpegname, $wbmpname, $dest_height, $dest_width, $threshold)
* Threshold value, between 0 and 8 (inclusive).
* </p>
* @return bool true on success or false on failure.
* @since 4.0.5
* @since 5.0
* @deprecated 7.2 Use imagecreatefrompng() and imagewbmp() instead
*/
function png2wbmp ($pngname, $wbmpname, $dest_height, $dest_width, $threshold) {}
@ -2196,8 +2024,6 @@ function png2wbmp ($pngname, $wbmpname, $dest_height, $dest_width, $threshold) {
* Threshold value, between 0 and 255 (inclusive).
* </p>
* @return bool true on success or false on failure.
* @since 4.0.5
* @since 5.0
* @deprecated 7.3 Use imagewbmp() instead
*/
function image2wbmp ($image, $filename = null, $threshold = null) {}
@ -2212,8 +2038,6 @@ function image2wbmp ($image, $filename = null, $threshold = null) {}
* Use pixel replacement (equivalent of passing true to
* imagealphablending)
* @return bool true on success or false on failure.
* @since 4.3
* @since 5.0
*/
function imagelayereffect ($image, $effect) {}
@ -2284,7 +2108,6 @@ function imagefilter ($image, $filtertype, $arg1 = null, $arg2 = null, $arg3 = n
* Color offset.
* </p>
* @return bool true on success or false on failure.
* @since 5.1
*/
function imageconvolution ($image, array $matrix, $div, $offset) {}
@ -2615,7 +2438,6 @@ define ('IMG_FILTER_SMOOTH', 10);
/**
* Special GD filter used by the {@see imagefilter()} function.
* @since 5.3
* @link https://php.net/manual/en/image.constants.php#constant.img-filter-pixelate
*/
define ('IMG_FILTER_PIXELATE', 11);

View File

@ -11,8 +11,6 @@
* </p>
* @return string If successful, this function returns the current message
* domain, after possibly changing it.
* @since 4.0
* @since 5.0
*/
function textdomain ($text_domain) {}
@ -24,8 +22,6 @@ function textdomain ($text_domain) {}
* </p>
* @return string a translated string if one is found in the
* translation table, or the submitted message if not found.
* @since 4.0
* @since 5.0
*/
function gettext ($message) {}
@ -37,8 +33,6 @@ function gettext ($message) {}
* </p>
* @return string a translated string if one is found in the
* translation table, or the submitted message if not found.
* @since 4.0
* @since 5.0
*/
function _ ($message) {}
@ -52,8 +46,6 @@ function _ ($message) {}
* The message
* </p>
* @return string A string on success.
* @since 4.0
* @since 5.0
*/
function dgettext ($domain, $message) {}
@ -70,8 +62,6 @@ function dgettext ($domain, $message) {}
* The category
* </p>
* @return string A string on success.
* @since 4.0
* @since 5.0
*/
function dcgettext ($domain, $message, $category) {}
@ -85,8 +75,6 @@ function dcgettext ($domain, $message, $category) {}
* The directory path
* </p>
* @return string The full pathname for the <i>domain</i> currently being set.
* @since 4.0
* @since 5.0
*/
function bindtextdomain ($domain, $directory) {}
@ -99,8 +87,6 @@ function bindtextdomain ($domain, $directory) {}
* @return string correct plural form of message identified by
* <i>msgid1</i> and <i>msgid2</i>
* for count <i>n</i>.
* @since 4.2
* @since 5.0
*/
function ngettext ($msgid1, $msgid2, $n) {}
@ -114,8 +100,6 @@ function ngettext ($msgid1, $msgid2, $n) {}
* @param string $msgid2
* @param int $n
* @return string A string on success.
* @since 4.2
* @since 5.0
*/
function dngettext ($domain, $msgid1, $msgid2, $n) {}
@ -130,8 +114,6 @@ function dngettext ($domain, $msgid1, $msgid2, $n) {}
* @param int $n
* @param int $category
* @return string A string on success.
* @since 4.2
* @since 5.0
*/
function dcngettext ($domain, $msgid1, $msgid2, $n, $category) {}
@ -145,8 +127,6 @@ function dcngettext ($domain, $msgid1, $msgid2, $n, $category) {}
* The code set
* </p>
* @return string A string on success.
* @since 4.2
* @since 5.0
*/
function bind_textdomain_codeset ($domain, $codeset) {}

View File

@ -20,8 +20,6 @@
* octal is assumed, otherwise decimal is assumed.
* </p>
* @return resource|GMP A GMP number resource.
* @since 4.0.4
* @since 5.0
*/
function gmp_init ($number, $base = 0) {}
@ -32,8 +30,6 @@ function gmp_init ($number, $base = 0) {}
* A GMP number.
* </p>
* @return int An integer value of <i>gmpnumber</i>.
* @since 4.0.4
* @since 5.0
*/
function gmp_intval ($gmpnumber) {}
@ -60,8 +56,6 @@ function gmp_random_seed ($seed ) {}
* Allowed values for the base are from 2 to 62 and -2 to -36.
* </p>
* @return string The number, as a string.
* @since 4.0.4
* @since 5.0
*/
function gmp_strval ($gmpnumber, $base = 10) {}
@ -79,8 +73,6 @@ function gmp_strval ($gmpnumber, $base = 10) {}
* It can be either a GMP number resource, or a
* numeric string given that it is possible to convert the latter to a number.</p>
* @return resource|GMP A GMP number representing the sum of the arguments.
* @since 4.0.4
* @since 5.0
*/
function gmp_add ($a, $b) {}
@ -98,8 +90,6 @@ function gmp_add ($a, $b) {}
* It can be either a GMP number resource, or a
* numeric string given that it is possible to convert the latter to a number.</p>
* @return resource|GMP A GMP number resource.
* @since 4.0.4
* @since 5.0
*/
function gmp_sub ($a, $b) {}
@ -117,8 +107,6 @@ function gmp_sub ($a, $b) {}
* It can be either a GMP number resource, or a
* numeric string given that it is possible to convert the latter to a number.</p>
* @return resource|GMP A GMP number resource.
* @since 4.0.4
* @since 5.0
*/
function gmp_mul ($a, $b) {}
@ -143,8 +131,6 @@ function gmp_mul ($a, $b) {}
* element being [n/d] (the integer result of the
* division) and the second being (n - [n/d] * d)
* (the remainder of the division).
* @since 4.0.4
* @since 5.0
*/
function gmp_div_qr ($n, $d, $round = GMP_ROUND_ZERO) {}
@ -168,8 +154,6 @@ function gmp_div_qr ($n, $d, $round = GMP_ROUND_ZERO) {}
* <b>GMP_ROUND_ZERO</b>: The result is truncated
* towards 0.
* @return resource|GMP A GMP number resource.
* @since 4.0.4
* @since 5.0
*/
function gmp_div_q ($a, $b, $round = GMP_ROUND_ZERO) {}
@ -191,8 +175,6 @@ function gmp_div_q ($a, $b, $round = GMP_ROUND_ZERO) {}
* of the <i>round</i> argument.
* </p>
* @return resource|GMP The remainder, as a GMP number.
* @since 4.0.4
* @since 5.0
*/
function gmp_div_r ($n, $d, $round = GMP_ROUND_ZERO) {}
@ -216,8 +198,6 @@ function gmp_div_r ($n, $d, $round = GMP_ROUND_ZERO) {}
* <b>GMP_ROUND_ZERO</b>: The result is truncated
* towards 0.
* @return resource|GMP A GMP number resource.
* @since 4.0.4
* @since 5.0
*/
function gmp_div ($a, $b, $round = GMP_ROUND_ZERO) {}
@ -232,8 +212,6 @@ function gmp_div ($a, $b, $round = GMP_ROUND_ZERO) {}
* It can be either a GMP number resource, or a
* numeric string given that it is possible to convert the latter to a number.</p>
* @return resource|GMP A GMP number resource.
* @since 4.0.4
* @since 5.0
*/
function gmp_mod ($n, $d) {}
@ -251,8 +229,6 @@ function gmp_mod ($n, $d) {}
* It can be either a GMP number resource, or a
* numeric string given that it is possible to convert the latter to a number.</p>
* @return resource|GMP A GMP number resource.
* @since 4.0.4
* @since 5.0
*/
function gmp_divexact ($n, $d) {}
@ -262,8 +238,6 @@ function gmp_divexact ($n, $d) {}
* @param resource|string|GMP $a It can be either a GMP number resource, or a
* numeric string given that it is possible to convert the latter to a number.</p>
* @return resource|GMP -<i>a</i>, as a GMP number.
* @since 4.0.4
* @since 5.0
*/
function gmp_neg ($a) {}
@ -273,8 +247,6 @@ function gmp_neg ($a) {}
* @param resource|string|GMP $a It can be either a GMP number resource, or a
* numeric string given that it is possible to convert the latter to a number.</p>
* @return resource|GMP the absolute value of <i>a</i>, as a GMP number.
* @since 4.0.4
* @since 5.0
*/
function gmp_abs ($a) {}
@ -287,8 +259,6 @@ function gmp_abs ($a) {}
* It can be either a GMP number resource, or a
* numeric string given that it is possible to convert the latter to a number.</p>
* @return resource|GMP A GMP number resource.
* @since 4.0.4
* @since 5.0
*/
function gmp_fact ($a) {}
@ -298,8 +268,6 @@ function gmp_fact ($a) {}
* @param resource|string|GMP $a It can be either a GMP number resource, or a
* numeric string given that it is possible to convert the latter to a number.</p>
* @return resource|GMP The integer portion of the square root, as a GMP number.
* @since 4.0.4
* @since 5.0
*/
function gmp_sqrt ($a) {}
@ -315,8 +283,6 @@ function gmp_sqrt ($a) {}
* <i>a</i> and the second is the remainder
* (i.e., the difference between <i>a</i> and the
* first element squared).
* @since 4.0.4
* @since 5.0
*/
function gmp_sqrtrem ($a) {}
@ -333,8 +299,6 @@ function gmp_sqrtrem ($a) {}
* </p>
* @return resource|GMP The new (raised) number, as a GMP number. The case of
* 0^0 yields 1.
* @since 4.0.4
* @since 5.0
*/
function gmp_pow ($base, $exp) {}
@ -357,8 +321,6 @@ function gmp_pow ($base, $exp) {}
* It can be either a GMP number resource, or a
* numeric string given that it is possible to convert the latter to a number.</p>
* @return resource|GMP The new (raised) number, as a GMP number.
* @since 4.0.4
* @since 5.0
*/
function gmp_powm ($base, $exp, $mod) {}
@ -372,8 +334,6 @@ function gmp_powm ($base, $exp, $mod) {}
* numeric string given that it is possible to convert the latter to a number.</p>
* @return bool <b>TRUE</b> if <i>a</i> is a perfect square,
* <b>FALSE</b> otherwise.
* @since 4.0.4
* @since 5.0
*/
function gmp_perfect_square ($a) {}
@ -397,8 +357,6 @@ function gmp_perfect_square ($a) {}
* definitely not prime. If it returns 1, then
* <i>a</i> is "probably" prime. If it returns 2,
* then <i>a</i> is surely prime.
* @since 4.0.4
* @since 5.0
*/
function gmp_prob_prime ($a, $reps = 10) {}
@ -430,8 +388,6 @@ function gmp_random_range(GMP $min, GMP $max) {}
* numeric string given that it is possible to convert the latter to a number.</p>
* @return resource|GMP A positive GMP number that divides into both
* <i>a</i> and <i>b</i>.
* @since 4.0.4
* @since 5.0
*/
function gmp_gcd ($a, $b) {}
@ -443,8 +399,6 @@ function gmp_gcd ($a, $b) {}
* @param resource|string|GMP $b It can be either a GMP number resource, or a
* numeric string given that it is possible to convert the latter to a number.</p>
* @return array An array of GMP numbers.
* @since 4.0.4
* @since 5.0
*/
function gmp_gcdext ($a, $b) {}
@ -456,8 +410,6 @@ function gmp_gcdext ($a, $b) {}
* @param resource|string|GMP $b It can be either a GMP number resource, or a
* numeric string given that it is possible to convert the latter to a number.</p>
* @return resource|GMP A GMP number on success or <b>FALSE</b> if an inverse does not exist.
* @since 4.0.4
* @since 5.0
*/
function gmp_invert ($a, $b) {}
@ -472,8 +424,6 @@ function gmp_invert ($a, $b) {}
* Should be odd and must be positive.
* </p>
* @return int A GMP number resource.
* @since 4.0.4
* @since 5.0
*/
function gmp_jacobi ($a, $p) {}
@ -488,8 +438,6 @@ function gmp_jacobi ($a, $p) {}
* Should be odd and must be positive.
* </p>
* @return int A GMP number resource.
* @since 4.0.4
* @since 5.0
*/
function gmp_legendre ($a, $p) {}
@ -503,8 +451,6 @@ function gmp_legendre ($a, $p) {}
* @return int a positive value if a &gt; b, zero if
* a = b and a negative value if a &lt;
* b.
* @since 4.0.4
* @since 5.0
*/
function gmp_cmp ($a, $b) {}
@ -516,8 +462,6 @@ function gmp_cmp ($a, $b) {}
* @return int 1 if <i>a</i> is positive,
* -1 if <i>a</i> is negative,
* and 0 if <i>a</i> is zero.
* @since 4.0.4
* @since 5.0
*/
function gmp_sign ($a) {}
@ -530,8 +474,6 @@ function gmp_sign ($a) {}
* It can be either a GMP number resource, or a
* numeric string given that it is possible to convert the latter to a number.</p>
* @return resource|GMP A random GMP number.
* @since 4.0.4
* @since 5.0
* @deprecated 7.2 Use {@see gmp_random_bits()} or {@see gmp_random_range()} instead.
*/
function gmp_random ($limiter = 20) {}
@ -544,8 +486,6 @@ function gmp_random ($limiter = 20) {}
* @param resource|string|GMP $b It can be either a GMP number resource, or a
* numeric string given that it is possible to convert the latter to a number.</p>
* @return resource|GMP A GMP number representing the bitwise AND comparison.
* @since 4.0.4
* @since 5.0
*/
function gmp_and ($a, $b) {}
@ -557,8 +497,6 @@ function gmp_and ($a, $b) {}
* @param resource|string|GMP $b It can be either a GMP number resource, or a
* numeric string given that it is possible to convert the latter to a number.</p>
* @return resource|GMP A GMP number resource.
* @since 4.0.4
* @since 5.0
*/
function gmp_or ($a, $b) {}
@ -568,8 +506,6 @@ function gmp_or ($a, $b) {}
* @param resource|string|GMP $a It can be either a GMP number resource, or a
* numeric string given that it is possible to convert the latter to a number.</p>
* @return resource|GMP the one's complement of <i>a</i>, as a GMP number.
* @since 4.0.4
* @since 5.0
*/
function gmp_com ($a) {}
@ -581,8 +517,6 @@ function gmp_com ($a) {}
* @param resource|string|GMP $b It can be either a GMP number resource, or a
* numeric string given that it is possible to convert the latter to a number.</p>
* @return resource|GMP A GMP number resource.
* @since 4.0.4
* @since 5.0
*/
function gmp_xor ($a, $b) {}
@ -602,8 +536,6 @@ function gmp_xor ($a, $b) {}
* 1. Index starts at 0.
* </p>
* @return void A GMP number resource.
* @since 4.0.4
* @since 5.0
*/
function gmp_setbit (&$a, $index, $set_clear = true) {}
@ -615,8 +547,6 @@ function gmp_setbit (&$a, $index, $set_clear = true) {}
* @param int $index It can be either a GMP number resource, or a
* numeric string given that it is possible to convert the latter to a number.</p>
* @return void A GMP number resource.
* @since 4.0.4
* @since 5.0
*/
function gmp_clrbit (&$a, $index) {}
@ -633,8 +563,6 @@ function gmp_clrbit (&$a, $index) {}
* </p>
* @return int the index of the found bit, as an integer. The
* index starts from 0.
* @since 4.0.4
* @since 5.0
*/
function gmp_scan0 ($a, $start) {}
@ -651,8 +579,6 @@ function gmp_scan0 ($a, $start) {}
* </p>
* @return int the index of the found bit, as an integer.
* If no set bit is found, -1 is returned.
* @since 4.0.4
* @since 5.0
*/
function gmp_scan1 ($a, $start) {}
@ -665,7 +591,6 @@ function gmp_scan1 ($a, $start) {}
* The bit to test
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.3
*/
function gmp_testbit ($a, $index) {}
@ -675,8 +600,6 @@ function gmp_testbit ($a, $index) {}
* @param resource|string|GMP $a It can be either a GMP number resource, or a
* numeric string given that it is possible to convert the latter to a number.</p>
* @return int The population count of <i>a</i>, as an integer.
* @since 4.0.4
* @since 5.0
*/
function gmp_popcount ($a) {}
@ -694,8 +617,6 @@ function gmp_popcount ($a) {}
* It should be positive.
* </p>
* @return int A GMP number resource.
* @since 4.0.4
* @since 5.0
*/
function gmp_hamdist ($a, $b) {}
@ -753,7 +674,6 @@ function gmp_rootrem (GMP $a, $nth) {}
* numeric string given that it is possible to convert the latter to a number.</p>
* @return resource Return the next prime number greater than <i>a</i>,
* as a GMP number.
* @since 5.2
*/
function gmp_nextprime ($a) {}
@ -778,7 +698,6 @@ class GMP implements Serializable {
* String representation of object
* @link https://php.net/manual/en/serializable.serialize.php
* @return string the string representation of the object or null
* @since 5.1
*/
public function serialize() {}
@ -789,7 +708,6 @@ class GMP implements Serializable {
* The string representation of the object.
* </p>
* @return void
* @since 5.1
*/
public function unserialize($serialized) {}
}

View File

@ -197,7 +197,6 @@ function hash_final ($context, $raw_output = false) {}
* Hashing context returned by <b>hash_init</b>.
* </p>
* @return resource a copy of Hashing Context resource.
* @since 5.3
*/
function hash_copy ($context) {}
@ -291,8 +290,6 @@ function hash_pbkdf2 ($algo, $password, $salt, $iterations, $length = 0, $raw_ou
* The key length, in bytes.
* </p>
* @return string|false the generated key as a string, or <b>FALSE</b> on error.
* @since 4.0.4
* @since 5.0
*/
function mhash_keygen_s2k ($hash, $password, $salt, $bytes) {}
@ -304,8 +301,6 @@ function mhash_keygen_s2k ($hash, $password, $salt, $bytes) {}
* </p>
* @return int|false the size in bytes or <b>FALSE</b>, if the <i>hash</i>
* does not exist.
* @since 4.0
* @since 5.0
*/
function mhash_get_block_size ($hash) {}
@ -316,8 +311,6 @@ function mhash_get_block_size ($hash) {}
* The hash ID. One of the <b>MHASH_hashname</b> constants.
* </p>
* @return string|false the name of the hash or <b>FALSE</b>, if the hash does not exist.
* @since 4.0
* @since 5.0
*/
function mhash_get_hash_name ($hash) {}
@ -326,8 +319,6 @@ function mhash_get_hash_name ($hash) {}
* @link https://php.net/manual/en/function.mhash-count.php
* @return int the highest available hash ID. Hashes are numbered from 0 to this
* hash ID.
* @since 4.0
* @since 5.0
*/
function mhash_count () {}
@ -348,8 +339,6 @@ function mhash_count () {}
* </p>
* @return string the resulting hash (also called digest) or HMAC as a string, or
* <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function mhash ($hash, $data, $key = null) {}

View File

@ -25,8 +25,6 @@
* The string to be converted.
* </p>
* @return string|false the converted string or <b>FALSE</b> on failure.
* @since 4.0.5
* @since 5.0
*/
function iconv ($in_charset, $out_charset, $str) {}
@ -37,8 +35,6 @@ function iconv ($in_charset, $out_charset, $str) {}
* @param int $status
* @return string See <b>ob_start</b> for information about this handler
* return values.
* @since 4.0.5
* @since 5.0
*/
function ob_iconv_handler ($contents, $status) {}
@ -59,8 +55,6 @@ function ob_iconv_handler ($contents, $status) {}
* If <i>type</i> is omitted or set to "all",
* <b>iconv_get_encoding</b> returns an array that
* stores all these variables.
* @since 4.0.5
* @since 5.0
*/
function iconv_get_encoding ($type = "all") {}
@ -77,8 +71,6 @@ function iconv_get_encoding ($type = "all") {}
* The character set.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.5
* @since 5.0
*/
function iconv_set_encoding ($type, $charset) {}
@ -94,7 +86,6 @@ function iconv_set_encoding ($type, $charset) {}
* iconv.internal_encoding.
* </p>
* @return int|false the character count of <i>str</i>, as an integer. False on error.
* @since 5.0
*/
function iconv_strlen ($str, $charset = 'ini_get("iconv.internal_encoding")') {}
@ -149,7 +140,6 @@ function iconv_strlen ($str, $charset = 'ini_get("iconv.internal_encoding")') {}
* <p>
* If <i>str</i> is shorter than <i>offset</i>
* characters long, <b>FALSE</b> will be returned.
* @since 5.0
*/
function iconv_substr ($str, $offset, $length = 'iconv_strlen($str, $charset)', $charset = 'ini_get("iconv.internal_encoding")') {}
@ -177,7 +167,6 @@ function iconv_substr ($str, $offset, $length = 'iconv_strlen($str, $charset)',
* <p>
* If <i>needle</i> is not found,
* <b>iconv_strpos</b> will return <b>FALSE</b>.
* @since 5.0
*/
function iconv_strpos ($haystack, $needle, $offset = 0, $charset = 'ini_get("iconv.internal_encoding")') {}
@ -201,7 +190,6 @@ function iconv_strpos ($haystack, $needle, $offset = 0, $charset = 'ini_get("ico
* <p>
* If <i>needle</i> is not found,
* <b>iconv_strrpos</b> will return <b>FALSE</b>.
* @since 5.0
*/
function iconv_strrpos ($haystack, $needle, $charset = 'ini_get("iconv.internal_encoding")') {}
@ -302,7 +290,6 @@ function iconv_strrpos ($haystack, $needle, $charset = 'ini_get("iconv.internal_
* </p>
* @return string|false an encoded MIME field on success,
* or <b>FALSE</b> if an error occurs during the encoding.
* @since 5.0
*/
function iconv_mime_encode ($field_name, $field_value, array $preferences = null) {}
@ -354,7 +341,6 @@ function iconv_mime_encode ($field_name, $field_value, array $preferences = null
* </p>
* @return string|false a decoded MIME field on success,
* or <b>FALSE</b> if an error occurs during the decoding.
* @since 5.0
*/
function iconv_mime_decode ($encoded_header, $mode = 0, $charset = 'ini_get("iconv.internal_encoding")') {}
@ -415,7 +401,6 @@ function iconv_mime_decode ($encoded_header, $mode = 0, $charset = 'ini_get("ico
* If more than one field of the same name are present,
* <b>iconv_mime_decode_headers</b> automatically incorporates
* them into a numerically indexed array in the order of occurrence.
* @since 5.0
*/
function iconv_mime_decode_headers ($encoded_headers, $mode = 0, $charset = 'ini_get("iconv.internal_encoding")') {}

View File

@ -45,8 +45,6 @@
* to set one or more connection parameters:
* DISABLE_AUTHENTICATOR - Disable authentication properties
* @return resource|false an IMAP stream on success or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function imap_open ($mailbox, $username, $password, $options = 0, $n_retries = 0, array $params = null) {}
@ -66,8 +64,6 @@ function imap_open ($mailbox, $username, $password, $options = 0, $n_retries = 0
* Number of maximum connect attempts
* </p>
* @return bool <b>TRUE</b> if the stream is reopened, <b>FALSE</b> otherwise.
* @since 4.0
* @since 5.0
*/
function imap_reopen ($imap_stream, $mailbox, $options = 0, $n_retries = 0) {}
@ -82,8 +78,6 @@ function imap_reopen ($imap_stream, $mailbox, $options = 0, $n_retries = 0) {}
* <b>imap_expunge</b>
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function imap_close ($imap_stream, $flag = 0) {}
@ -92,8 +86,6 @@ function imap_close ($imap_stream, $flag = 0) {}
* @link https://php.net/manual/en/function.imap-num-msg.php
* @param resource $imap_stream
* @return int Return the number of messages in the current mailbox, as an integer.
* @since 4.0
* @since 5.0
*/
function imap_num_msg ($imap_stream) {}
@ -103,8 +95,6 @@ function imap_num_msg ($imap_stream) {}
* @param resource $imap_stream
* @return int the number of recent messages in the current mailbox, as an
* integer.
* @since 4.0
* @since 5.0
*/
function imap_num_recent ($imap_stream) {}
@ -114,8 +104,6 @@ function imap_num_recent ($imap_stream) {}
* @param resource $imap_stream
* @return array an array of string formatted with header info. One
* element per mail message.
* @since 4.0
* @since 5.0
*/
function imap_headers ($imap_stream) {}
@ -166,8 +154,6 @@ function imap_headers ($imap_stream) {}
* <dt>fetchfrom <dd>from line formatted to fit fromlength characters
* <dt>fetchsubject <dd>subject line formatted to fit subjectlength characters
* </dl>
* @since 4.0
* @since 5.0
*/
function imap_headerinfo ($stream_id, $msg_no, $from_length = 0, $subject_length = 0, $default_host = null) {}
@ -183,8 +169,6 @@ function imap_headerinfo ($stream_id, $msg_no, $from_length = 0, $subject_length
* @return object an object similar to the one returned by
* <b>imap_header</b>, except for the flags and other
* properties that come from the IMAP server.
* @since 4.0
* @since 5.0
*/
function imap_rfc822_parse_headers ($headers, $defaulthost = "UNKNOWN") {}
@ -202,8 +186,6 @@ function imap_rfc822_parse_headers ($headers, $defaulthost = "UNKNOWN") {}
* The name of the account owner
* </p>
* @return string a string properly formatted email address as defined in RFC2822.
* @since 4.0
* @since 5.0
*/
function imap_rfc822_write_address ($mailbox, $host, $personal) {}
@ -223,8 +205,6 @@ function imap_rfc822_write_address ($mailbox, $host, $personal) {}
* host - the host name
* personal - the personal name
* adl - at domain source route
* @since 4.0
* @since 5.0
*/
function imap_rfc822_parse_adrlist ($address, $default_host) {}
@ -240,8 +220,6 @@ function imap_rfc822_parse_adrlist ($address, $default_host) {}
* with one or more of the following:
* <b>FT_UID</b> - The <i>msg_number</i> is a UID
* @return string the body of the specified message, as a string.
* @since 4.0
* @since 5.0
*/
function imap_body ($imap_stream, $msg_number, $options = 0) {}
@ -258,8 +236,6 @@ function imap_body ($imap_stream, $msg_number, $options = 0) {}
* @return object the information in an object, for a detailed description
* of the object structure and properties see
* <b>imap_fetchstructure</b>.
* @since 4.0
* @since 5.0
*/
function imap_bodystruct ($imap_stream, $msg_number, $section) {}
@ -279,8 +255,6 @@ function imap_bodystruct ($imap_stream, $msg_number, $section) {}
* <b>FT_UID</b> - The <i>msg_number</i> is a UID
* @return string a particular section of the body of the specified messages as a
* text string.
* @since 4.0
* @since 5.0
*/
function imap_fetchbody ($imap_stream, $msg_number, $section, $options = 0) {}
@ -339,8 +313,6 @@ function imap_savebody ($imap_stream, $file, $msg_number, $part_number = "", $op
* <b>FT_UID</b> - The <i>msgno</i>
* argument is a UID
* @return string the header of the specified message as a text string.
* @since 4.0
* @since 5.0
*/
function imap_fetchheader ($imap_stream, $msg_number, $options = 0) {}
@ -465,8 +437,6 @@ function imap_fetchheader ($imap_stream, $msg_number, $options = 0) {}
* <tr valign="top"><td>4</td><td>QUOTED-PRINTABLE</td></tr>
* <tr valign="top"><td>5</td><td>OTHER</td></tr>
* </table>
* @since 4.0
* @since 5.0
*/
function imap_fetchstructure ($imap_stream, $msg_number, $options = 0) {}
@ -482,7 +452,6 @@ function imap_fetchstructure ($imap_stream, $msg_number, $options = 0) {}
* <b>IMAP_GC_TEXTS</b> (texts).
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.3
*/
function imap_gc ($imap_stream, $caches) {}
@ -491,8 +460,6 @@ function imap_gc ($imap_stream, $caches) {}
* @link https://php.net/manual/en/function.imap-expunge.php
* @param resource $imap_stream
* @return bool <b>TRUE</b>.
* @since 4.0
* @since 5.0
*/
function imap_expunge ($imap_stream) {}
@ -509,8 +476,6 @@ function imap_expunge ($imap_stream) {}
* UID.
* </p>
* @return bool <b>TRUE</b>.
* @since 4.0
* @since 5.0
*/
function imap_delete ($imap_stream, $msg_number, $options = 0) {}
@ -523,8 +488,6 @@ function imap_delete ($imap_stream, $msg_number, $options = 0) {}
* </p>
* @param int $flags [optional]
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function imap_undelete ($imap_stream, $msg_number, $flags = 0) {}
@ -542,8 +505,6 @@ function imap_undelete ($imap_stream, $msg_number, $flags = 0) {}
* </p>
* <p>
* Returns <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function imap_check ($imap_stream) {}
@ -572,8 +533,6 @@ function imap_check ($imap_stream) {}
* </p>
* @return array an array containing the names of the mailboxes that have
* <i>content</i> in the text of the mailbox.
* @since 4.0
* @since 5.0
*/
function imap_listscan ($imap_stream, $ref, $pattern, $content) {}
@ -593,8 +552,6 @@ function imap_listscan ($imap_stream, $ref, $pattern, $content) {}
* <i>options</i> is a bitmask of one or more of
* <b>CP_UID</b> - the sequence numbers contain UIDS
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function imap_mail_copy ($imap_stream, $msglist, $mailbox, $options = 0) {}
@ -614,8 +571,6 @@ function imap_mail_copy ($imap_stream, $msglist, $mailbox, $options = 0) {}
* <i>options</i> is a bitmask and may contain the single option:
* <b>CP_UID</b> - the sequence numbers contain UIDS
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function imap_mail_move ($imap_stream, $msglist, $mailbox, $options = 0) {}
@ -638,8 +593,6 @@ function imap_mail_move ($imap_stream, $msglist, $mailbox, $options = 0) {}
* "lines", "bytes" and "md5".
* </p>
* @return string the MIME message.
* @since 4.0
* @since 5.0
*/
function imap_mail_compose (array $envelope, array $body) {}
@ -653,8 +606,6 @@ function imap_mail_compose (array $envelope, array $body) {}
* encoded by <b>imap_utf7_encode</b>
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function imap_createmailbox ($imap_stream, $mailbox) {}
@ -671,8 +622,6 @@ function imap_createmailbox ($imap_stream, $mailbox) {}
* information
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function imap_renamemailbox ($imap_stream, $old_mbox, $new_mbox) {}
@ -685,8 +634,6 @@ function imap_renamemailbox ($imap_stream, $old_mbox, $new_mbox) {}
* information
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function imap_deletemailbox ($imap_stream, $mailbox) {}
@ -699,8 +646,6 @@ function imap_deletemailbox ($imap_stream, $mailbox) {}
* information
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function imap_subscribe ($imap_stream, $mailbox) {}
@ -713,8 +658,6 @@ function imap_subscribe ($imap_stream, $mailbox) {}
* information
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function imap_unsubscribe ($imap_stream, $mailbox) {}
@ -742,8 +685,6 @@ function imap_unsubscribe ($imap_stream, $mailbox) {}
* If this parameter is set, it will set the INTERNALDATE on the appended message. The parameter should be a date string that conforms to the rfc2060 specifications for a date_time value.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function imap_append ($imap_stream, $mailbox, $message, $options = null, $internal_date = null) {}
@ -752,8 +693,6 @@ function imap_append ($imap_stream, $mailbox, $message, $options = null, $intern
* @link https://php.net/manual/en/function.imap-ping.php
* @param resource $imap_stream
* @return bool <b>TRUE</b> if the stream is still alive, <b>FALSE</b> otherwise.
* @since 4.0
* @since 5.0
*/
function imap_ping ($imap_stream) {}
@ -764,8 +703,6 @@ function imap_ping ($imap_stream) {}
* The encoded text
* </p>
* @return string the decoded message as a string.
* @since 4.0
* @since 5.0
*/
function imap_base64 ($text) {}
@ -776,8 +713,6 @@ function imap_base64 ($text) {}
* A quoted-printable string
* </p>
* @return string an 8 bits string.
* @since 4.0
* @since 5.0
*/
function imap_qprint ($string) {}
@ -788,8 +723,6 @@ function imap_qprint ($string) {}
* The 8bit string to convert
* </p>
* @return string a quoted-printable string.
* @since 4.0
* @since 5.0
*/
function imap_8bit ($string) {}
@ -800,8 +733,6 @@ function imap_8bit ($string) {}
* The 8bit string
* </p>
* @return string a base64 encoded string.
* @since 4.0
* @since 5.0
*/
function imap_binary ($string) {}
@ -813,8 +744,6 @@ function imap_binary ($string) {}
* specification are described in RFC2047 and RFC2044 respectively.
* </p>
* @return string an UTF-8 encoded string.
* @since 4.0
* @since 5.0
*/
function imap_utf8 ($mime_encoded_text) {}
@ -838,8 +767,6 @@ function imap_utf8 ($mime_encoded_text) {}
* <p>
* flags is also set, which contains a bitmask which can
* be checked against any of the above constants.
* @since 4.0
* @since 5.0
*/
function imap_status ($imap_stream, $mailbox, $options) {}
@ -892,8 +819,6 @@ function imap_status_current ($stream_id, $options) {}
* </p>
* <p>
* Returns <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function imap_mailboxmsginfo ($imap_stream) {}
@ -917,8 +842,6 @@ function imap_mailboxmsginfo ($imap_stream) {}
* <b>ST_UID</b> - The sequence argument contains UIDs
* instead of sequence numbers
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function imap_setflag_full ($imap_stream, $sequence, $flag, $options = NIL) {}
@ -941,8 +864,6 @@ function imap_setflag_full ($imap_stream, $sequence, $flag, $options = NIL) {}
* <b>ST_UID</b> - The sequence argument contains UIDs
* instead of sequence numbers
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function imap_clearflag_full ($imap_stream, $sequence, $flag, $options = 0) {}
@ -964,8 +885,6 @@ function imap_clearflag_full ($imap_stream, $sequence, $flag, $options = 0) {}
* @param string $charset [optional]
* @return array an array of message numbers sorted by the given
* parameters.
* @since 4.0
* @since 5.0
*/
function imap_sort ($imap_stream, $criteria, $reverse, $options = 0, $search_criteria = null, $charset = 'NIL') {}
@ -977,8 +896,6 @@ function imap_sort ($imap_stream, $criteria, $reverse, $options = 0, $search_cri
* The message number.
* </p>
* @return int The UID of the given message.
* @since 4.0
* @since 5.0
*/
function imap_uid ($imap_stream, $msg_number) {}
@ -991,8 +908,6 @@ function imap_uid ($imap_stream, $msg_number) {}
* </p>
* @return int the message sequence number for the given
* <i>uid</i>.
* @since 4.0
* @since 5.0
*/
function imap_msgno ($imap_stream, $uid) {}
@ -1017,8 +932,6 @@ function imap_msgno ($imap_stream, $uid) {}
* parameter will return only the top level
* mailboxes; &#x00027;~/mail/&#37;&#x00027; on UW_IMAPD will return every mailbox in the ~/mail directory, but none in subfolders of that directory.</p>
* @return array an array containing the names of the mailboxes.
* @since 4.0
* @since 5.0
*/
function imap_list ($imap_stream, $ref, $pattern) {}
@ -1043,8 +956,6 @@ function imap_list ($imap_stream, $ref, $pattern) {}
* parameter will return only the top level
* mailboxes; &#x00027;~/mail/&#37;&#x00027; on UW_IMAPD will return every mailbox in the ~/mail directory, but none in subfolders of that directory.</p>
* @return array an array of all the subscribed mailboxes.
* @since 4.0
* @since 5.0
*/
function imap_lsub ($imap_stream, $ref, $pattern) {}
@ -1081,8 +992,6 @@ function imap_lsub ($imap_stream, $ref, $pattern) {}
* deleted - this message is flagged for deletion
* seen - this message is flagged as already read
* draft - this message is flagged as being a draft
* @since 4.0
* @since 5.0
*/
function imap_fetch_overview ($imap_stream, $sequence, $options = 0) {}
@ -1091,8 +1000,6 @@ function imap_fetch_overview ($imap_stream, $sequence, $options = 0) {}
* @link https://php.net/manual/en/function.imap-alerts.php
* @return array|false an array of all of the IMAP alert messages generated or <b>FALSE</b> if
* no alert messages are available.
* @since 4.0
* @since 5.0
*/
function imap_alerts () {}
@ -1103,8 +1010,6 @@ function imap_alerts () {}
* generated since the last <b>imap_errors</b> call,
* or the beginning of the page. Returns <b>FALSE</b> if no error messages are
* available.
* @since 4.0
* @since 5.0
*/
function imap_errors () {}
@ -1113,8 +1018,6 @@ function imap_errors () {}
* @link https://php.net/manual/en/function.imap-last-error.php
* @return string|false the full text of the last IMAP error message that occurred on the
* current page. Returns <b>FALSE</b> if no error messages are available.
* @since 4.0
* @since 5.0
*/
function imap_last_error () {}
@ -1139,8 +1042,6 @@ function imap_last_error () {}
* <p>
* Return <b>FALSE</b> if it does not understand the search
* <i>criteria</i> or no messages have been found.
* @since 4.0
* @since 5.0
*/
function imap_search ($imap_stream, $criteria, $options = SE_FREE, $charset = NIL) {}
@ -1156,8 +1057,6 @@ function imap_search ($imap_stream, $criteria, $options = SE_FREE, $charset = NI
* if <i>text</i> contains invalid modified UTF-7 sequence
* or <i>text</i> contains a character that is not part of
* ISO-8859-1 character set.
* @since 4.0
* @since 5.0
*/
function imap_utf7_decode ($text) {}
@ -1170,8 +1069,6 @@ function imap_utf7_decode ($text) {}
* @return string <i>data</i> encoded with the modified UTF-7
* encoding as defined in RFC 2060,
* section 5.1.3 (original UTF-7 was defined in RFC1642).
* @since 4.0
* @since 5.0
*/
function imap_utf7_encode ($data) {}
@ -1189,8 +1086,6 @@ function imap_utf7_encode ($data) {}
* If the element hasn't been encoded, and in other words is in
* plain US-ASCII, the charset property of that element is
* set to default.
* @since 4.0
* @since 5.0
*/
function imap_mime_header_decode ($text) {}
@ -1215,8 +1110,6 @@ function imap_mime_header_decode ($text) {}
* <p>
* $thread["XX.branch"]
* </p>
* @since 4.0.7
* @since 5.0
*/
function imap_thread ($imap_stream, $options = SE_FREE) {}
@ -1240,8 +1133,6 @@ function imap_thread ($imap_stream, $options = SE_FREE) {}
* If <i>timeout</i> is not provided or evaluates to -1,
* the current timeout value of <i>timeout_type</i> is
* returned as an integer.
* @since 4.3.3
* @since 5.0
*/
function imap_timeout ($timeout_type, $timeout = -1) {}
@ -1270,8 +1161,6 @@ function imap_timeout ($timeout_type, $timeout = -1) {}
* <p>
* For backwards compatibility reasons, the original access methods are
* still available for use, although it is suggested to update.
* @since 4.0.5
* @since 5.0
*/
function imap_get_quota ($imap_stream, $quota_root) {}
@ -1291,8 +1180,6 @@ function imap_get_quota ($imap_stream, $quota_root) {}
* This function will return <b>FALSE</b> in the case of call failure, and an
* array of information about the connection upon an un-parsable response
* from the server.
* @since 4.3
* @since 5.0
*/
function imap_get_quotaroot ($imap_stream, $quota_root) {}
@ -1308,8 +1195,6 @@ function imap_get_quotaroot ($imap_stream, $quota_root) {}
* The maximum size (in KB) for the <i>quota_root</i>
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.5
* @since 5.0
*/
function imap_set_quota ($imap_stream, $quota_root, $quota_limit) {}
@ -1329,8 +1214,6 @@ function imap_set_quota ($imap_stream, $quota_root, $quota_limit) {}
* acl.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.7
* @since 5.0
*/
function imap_setacl ($imap_stream, $mailbox, $id, $rights) {}
@ -1343,7 +1226,6 @@ function imap_setacl ($imap_stream, $mailbox, $id, $rights) {}
* information
* </p>
* @return array an associative array of "folder" => "acl" pairs.
* @since 5.0
*/
function imap_getacl ($imap_stream, $mailbox) {}
@ -1395,8 +1277,6 @@ function imap_getannotation ($stream_id, $mailbox, $entry, $attr) {}
* This is useful when using PHP as a mail client for multiple users.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function imap_mail ($to, $subject, $message, $additional_headers = null, $cc = null, $bcc = null, $rpath = null) {}
@ -1447,8 +1327,6 @@ function imap_mail ($to, $subject, $message, $additional_headers = null, $cc = n
* <dt>fetchfrom <dd>from line formatted to fit fromlength characters
* <dt>fetchsubject <dd>subject line formatted to fit subjectlength characters
* </dl>
* @since 4.0
* @since 5.0
*/
function imap_header ($stream_id, $msg_no, $from_length = 0, $subject_length = 0, $default_host = null) {}
@ -1458,8 +1336,6 @@ function imap_header ($stream_id, $msg_no, $from_length = 0, $subject_length = 0
* @param $stream_id
* @param $ref
* @param $pattern
* @since 4.0
* @since 5.0
*/
function imap_listmailbox ($stream_id, $ref, $pattern) {}
@ -1509,8 +1385,6 @@ function imap_listmailbox ($stream_id, $ref, $pattern) {}
* messages. If either <b>MARKED</b> or <b>UNMARKED</b> is
* provided, you can assume the IMAP server supports this feature for this mailbox.
* </p>
* @since 4.0
* @since 5.0
*/
function imap_getmailboxes ($imap_stream, $ref, $pattern) {}
@ -1521,8 +1395,6 @@ function imap_getmailboxes ($imap_stream, $ref, $pattern) {}
* @param $ref
* @param $pattern
* @param $content
* @since 4.0
* @since 5.0
*/
function imap_scanmailbox ($stream_id, $ref, $pattern, $content) {}
@ -1532,8 +1404,6 @@ function imap_scanmailbox ($stream_id, $ref, $pattern, $content) {}
* @param $stream_id
* @param $ref
* @param $pattern
* @since 4.0
* @since 5.0
*/
function imap_listsubscribed ($stream_id, $ref, $pattern) {}
@ -1572,8 +1442,6 @@ function imap_listsubscribed ($stream_id, $ref, $pattern) {}
* Only used by UW-IMAPD.
* <b>LATT_UNMARKED</b> - This mailbox is not marked.
* Only used by UW-IMAPD.
* @since 4.0
* @since 5.0
*/
function imap_getsubscribed ($imap_stream, $ref, $pattern) {}
@ -1597,8 +1465,6 @@ function imap_fetchtext ($stream, $msg_no, $options = 0) {}
* @param $ref
* @param $pattern
* @param $content
* @since 4.0
* @since 5.0
*/
function imap_scan ($stream_id, $ref, $pattern, $content) {}
@ -1607,8 +1473,6 @@ function imap_scan ($stream_id, $ref, $pattern, $content) {}
* @link https://php.net/manual/en/function.imap-create.php
* @param $stream_id
* @param $mailbox
* @since 4.0
* @since 5.0
*/
function imap_create ($stream_id, $mailbox) {}
@ -1618,8 +1482,6 @@ function imap_create ($stream_id, $mailbox) {}
* @param $stream_id
* @param $old_name
* @param $new_name
* @since 4.0
* @since 5.0
*/
function imap_rename ($stream_id, $old_name, $new_name) {}

View File

@ -41,8 +41,6 @@
* @param int $sync [optional] <p>
* </p>
* @return resource|false an InterBase link identifier on success, or false on error.
* @since 4.0
* @since 5.0
*/
function ibase_connect ($database = null, $username = null, $password = null, $charset = null, $buffers = null, $dialect = null, $role = null, $sync = null) {}
@ -85,8 +83,6 @@ function ibase_connect ($database = null, $username = null, $password = null, $c
* @param int $sync [optional] <p>
* </p>
* @return resource|false an InterBase link identifier on success, or false on error.
* @since 4.0
* @since 5.0
*/
function ibase_pconnect ($database = null, $username = null, $password = null, $charset = null, $buffers = null, $dialect = null, $role = null, $sync = null) {}
@ -99,8 +95,6 @@ function ibase_pconnect ($database = null, $username = null, $password = null, $
* is assumed.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function ibase_close ($connection_id = null) {}
@ -112,7 +106,6 @@ function ibase_close ($connection_id = null) {}
* assumed.
* </p>
* @return bool true on success or false on failure.
* @since 5.0
*/
function ibase_drop_db ($connection = null) {}
@ -138,8 +131,6 @@ function ibase_drop_db ($connection = null) {}
* affected by the query for INSERT, UPDATE and DELETE statements. In order
* to retain backward compatibility, it will return true for these
* statements if the query succeeded without affecting any rows.
* @since 4.0
* @since 5.0
*/
function ibase_query ($link_identifier = null, $query, $bind_args = null) {}
@ -160,8 +151,6 @@ function ibase_query ($link_identifier = null, $query, $bind_args = null) {}
* @return array|false an array that corresponds to the fetched row, or false if there
* are no more rows. Each result column is stored in an array offset,
* starting at offset 0.
* @since 4.0
* @since 5.0
*/
function ibase_fetch_row ($result_identifier, $fetch_flag = null) {}
@ -182,8 +171,6 @@ function ibase_fetch_row ($result_identifier, $fetch_flag = null) {}
* @return array|false an associative array that corresponds to the fetched row.
* Subsequent calls will return the next row in the result set, or false if
* there are no more rows.
* @since 4.3
* @since 5.0
*/
function ibase_fetch_assoc ($result, $fetch_flag = null) {}
@ -204,8 +191,6 @@ function ibase_fetch_assoc ($result, $fetch_flag = null) {}
* </p>
* @return object|false an object with the next row information, or false if there are
* no more rows.
* @since 4.0
* @since 5.0
*/
function ibase_fetch_object ($result_id, $fetch_flag = null) {}
@ -217,8 +202,6 @@ function ibase_fetch_object ($result_id, $fetch_flag = null) {}
* ibase_execute.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function ibase_free_result ($result_identifier) {}
@ -232,7 +215,6 @@ function ibase_free_result ($result_identifier) {}
* The name to be assigned.
* </p>
* @return bool true on success or false on failure.
* @since 5.0
*/
function ibase_name_result ($result, $name) {}
@ -243,8 +225,6 @@ function ibase_name_result ($result, $name) {}
* An InterBase query.
* </p>
* @return resource|false a prepared query handle, or false on error.
* @since 4.0
* @since 5.0
*/
function ibase_prepare ($query) {}
@ -267,8 +247,6 @@ function ibase_prepare ($query) {}
* the query (if > 0 and applicable to the statement type). A query that
* succeeded, but did not affect any rows (e.g. an UPDATE of a non-existent
* record) will return true.
* @since 4.0
* @since 5.0
*/
function ibase_execute ($query, $bind_arg = null, $_ = null) {}
@ -279,8 +257,6 @@ function ibase_execute ($query, $bind_arg = null, $_ = null) {}
* A query prepared with ibase_prepare.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function ibase_free_query ($query) {}
@ -291,7 +267,6 @@ function ibase_free_query ($query) {}
* @param int $increment [optional]
* @param resource $link_identifier [optional]
* @return mixed new generator value as integer, or as string if the value is too big.
* @since 5.0
*/
function ibase_gen_id ($generator, $increment = null, $link_identifier = null) {}
@ -302,8 +277,6 @@ function ibase_gen_id ($generator, $increment = null, $link_identifier = null) {
* An InterBase result identifier.
* </p>
* @return int the number of fields as an integer.
* @since 4.0
* @since 5.0
*/
function ibase_num_fields ($result_id) {}
@ -314,7 +287,6 @@ function ibase_num_fields ($result_id) {}
* The prepared query handle.
* </p>
* @return int the number of parameters as an integer.
* @since 5.0
*/
function ibase_num_params ($query) {}
@ -326,7 +298,6 @@ function ibase_num_params ($query) {}
* connection resource, its default transaction is used.
* </p>
* @return int the number of rows as an integer.
* @since 5.0
*/
function ibase_affected_rows ($link_identifier = null) {}
@ -342,8 +313,6 @@ function ibase_affected_rows ($link_identifier = null) {}
* @return array an array with the following keys: name,
* alias, relation,
* length and type.
* @since 4.0
* @since 5.0
*/
function ibase_field_info ($result, $field_number) {}
@ -359,7 +328,6 @@ function ibase_field_info ($result, $field_number) {}
* @return array an array with the following keys: name,
* alias, relation,
* length and type.
* @since 5.0
*/
function ibase_param_info ($query, $param_number) {}
@ -383,8 +351,6 @@ function ibase_param_info ($query, $param_number) {}
* assumed.
* </p>
* @return resource|false a transaction handle, or false on error.
* @since 4.0
* @since 5.0
*/
function ibase_trans ($trans_args = null, $link_identifier = null) {}
@ -399,8 +365,6 @@ function ibase_trans ($trans_args = null, $link_identifier = null) {}
* corresponding transaction will be committed.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function ibase_commit ($link_or_trans_identifier = null) {}
@ -415,8 +379,6 @@ function ibase_commit ($link_or_trans_identifier = null) {}
* corresponding transaction will be rolled back.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function ibase_rollback ($link_or_trans_identifier = null) {}
@ -433,7 +395,6 @@ function ibase_rollback ($link_or_trans_identifier = null) {}
* will not be invalidated.
* </p>
* @return bool true on success or false on failure.
* @since 5.0
*/
function ibase_commit_ret ($link_or_trans_identifier = null) {}
@ -450,7 +411,6 @@ function ibase_commit_ret ($link_or_trans_identifier = null) {}
* will not be invalidated.
* </p>
* @return bool true on success or false on failure.
* @since 5.0
*/
function ibase_rollback_ret ($link_or_trans_identifier = null) {}
@ -467,8 +427,6 @@ function ibase_rollback_ret ($link_or_trans_identifier = null) {}
* @return array an array containing information about a BLOB. The information returned
* consists of the length of the BLOB, the number of segments it contains, the size
* of the largest segment, and whether it is a stream BLOB or a segmented BLOB.
* @since 4.0
* @since 5.0
*/
function ibase_blob_info ($link_identifier, $blob_id) {}
@ -481,8 +439,6 @@ function ibase_blob_info ($link_identifier, $blob_id) {}
* </p>
* @return resource a BLOB handle for later use with
* ibase_blob_add or false on failure.
* @since 4.0
* @since 5.0
*/
function ibase_blob_create ($link_identifier = null) {}
@ -496,8 +452,6 @@ function ibase_blob_create ($link_identifier = null) {}
* The data to be added.
* </p>
* @return void
* @since 4.0
* @since 5.0
*/
function ibase_blob_add ($blob_handle, $data) {}
@ -508,8 +462,6 @@ function ibase_blob_add ($blob_handle, $data) {}
* A BLOB handle opened with ibase_blob_create.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function ibase_blob_cancel ($blob_handle) {}
@ -524,8 +476,6 @@ function ibase_blob_cancel ($blob_handle) {}
* the BLOB was being written to, this function returns a string containing
* the BLOB id that has been assigned to it by the database. On failure, this
* function returns false.
* @since 4.0
* @since 5.0
*/
function ibase_blob_close ($blob_handle) {}
@ -541,8 +491,6 @@ function ibase_blob_close ($blob_handle) {}
* </p>
* @return resource a BLOB handle for later use with
* ibase_blob_get or false on failure.
* @since 4.0
* @since 5.0
*/
function ibase_blob_open ($link_identifier, $blob_id) {}
@ -557,8 +505,6 @@ function ibase_blob_open ($link_identifier, $blob_id) {}
* </p>
* @return string|false at most len bytes from the BLOB, or false
* on failure.
* @since 4.0
* @since 5.0
*/
function ibase_blob_get ($blob_handle, $len) {}
@ -568,8 +514,6 @@ function ibase_blob_get ($blob_handle, $len) {}
* @param string $blob_id <p>
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function ibase_blob_echo ($blob_id) {}
@ -584,8 +528,6 @@ function ibase_blob_echo ($blob_id) {}
* The file handle is a handle returned by fopen.
* </p>
* @return string|false the BLOB id on success, or false on error.
* @since 4.0
* @since 5.0
*/
function ibase_blob_import ($link_identifier, $file_handle) {}
@ -593,8 +535,6 @@ function ibase_blob_import ($link_identifier, $file_handle) {}
* Return error messages
* @link https://php.net/manual/en/function.ibase-errmsg.php
* @return string|false the error message as a string, or false if no error occurred.
* @since 4.0
* @since 5.0
*/
function ibase_errmsg () {}
@ -602,7 +542,6 @@ function ibase_errmsg () {}
* Return an error code
* @link https://php.net/manual/en/function.ibase-errcode.php
* @return int|false the error code as an integer, or false if no error occurred.
* @since 5.0
*/
function ibase_errcode () {}
@ -616,8 +555,6 @@ function ibase_errcode () {}
* @param string $middle_name [optional]
* @param string $last_name [optional]
* @return bool true on success or false on failure.
* @since 4.2
* @since 5.0
*/
function ibase_add_user ($service_handle, $user_name, $password, $first_name = null, $middle_name = null, $last_name = null) {}
@ -631,8 +568,6 @@ function ibase_add_user ($service_handle, $user_name, $password, $first_name = n
* @param string $middle_name [optional]
* @param string $last_name [optional]
* @return bool true on success or false on failure.
* @since 4.2
* @since 5.0
*/
function ibase_modify_user ($service_handle, $user_name, $password, $first_name = null, $middle_name = null, $last_name = null) {}
@ -642,8 +577,6 @@ function ibase_modify_user ($service_handle, $user_name, $password, $first_name
* @param resource $service_handle
* @param string $user_name
* @return bool true on success or false on failure.
* @since 4.2
* @since 5.0
*/
function ibase_delete_user ($service_handle, $user_name) {}
@ -654,7 +587,6 @@ function ibase_delete_user ($service_handle, $user_name) {}
* @param string $dba_username
* @param string $dba_password
* @return resource
* @since 5.0
*/
function ibase_service_attach ($host, $dba_username, $dba_password) {}
@ -663,7 +595,6 @@ function ibase_service_attach ($host, $dba_username, $dba_password) {}
* @link https://php.net/manual/en/function.ibase-service-detach.php
* @param resource $service_handle
* @return bool true on success or false on failure.
* @since 5.0
*/
function ibase_service_detach ($service_handle) {}
@ -676,7 +607,6 @@ function ibase_service_detach ($service_handle) {}
* @param int $options [optional]
* @param bool $verbose [optional]
* @return mixed
* @since 5.0
*/
function ibase_backup ($service_handle, $source_db, $dest_file, $options = null, $verbose = null) {}
@ -689,7 +619,6 @@ function ibase_backup ($service_handle, $source_db, $dest_file, $options = null,
* @param int $options [optional]
* @param bool $verbose [optional]
* @return mixed
* @since 5.0
*/
function ibase_restore ($service_handle, $source_file, $dest_db, $options = null, $verbose = null) {}
@ -701,7 +630,6 @@ function ibase_restore ($service_handle, $source_file, $dest_db, $options = null
* @param int $action
* @param int $argument [optional]
* @return bool true on success or false on failure.
* @since 5.0
*/
function ibase_maintain_db ($service_handle, $db, $action, $argument = null) {}
@ -713,7 +641,6 @@ function ibase_maintain_db ($service_handle, $db, $action, $argument = null) {}
* @param int $action
* @param int $argument [optional]
* @return string
* @since 5.0
*/
function ibase_db_info ($service_handle, $db, $action, $argument = null) {}
@ -723,7 +650,6 @@ function ibase_db_info ($service_handle, $db, $action, $argument = null) {}
* @param resource $service_handle
* @param int $action
* @return string
* @since 5.0
*/
function ibase_server_info ($service_handle, $action) {}
@ -737,7 +663,6 @@ function ibase_server_info ($service_handle, $action) {}
* </p>
* @param string $_ [optional]
* @return string the name of the event that was posted.
* @since 5.0
*/
function ibase_wait_event ($event_name1, $event_name2 = null, $_ = null) {}
@ -763,7 +688,6 @@ function ibase_wait_event ($event_name1, $event_name2 = null, $_ = null) {}
* @param string $_ [optional]
* @return resource The return value is an event resource. This resource can be used to free
* the event handler using ibase_free_event_handler.
* @since 5.0
*/
function ibase_set_event_handler ($event_handler, $event_name1, $event_name2 = null, $_ = null) {}
@ -775,7 +699,6 @@ function ibase_set_event_handler ($event_handler, $event_name1, $event_name2 = n
* ibase_set_event_handler.
* </p>
* @return bool true on success or false on failure.
* @since 5.0
*/
function ibase_free_event_handler ($event) {}

View File

@ -133,7 +133,6 @@ function json_decode ($json, $assoc = false, $depth = 512, $options = 0) {}
* @link https://php.net/manual/en/function.json-last-error.php
* @return int an integer, the value can be one of the following
* constants:
* @since 5.3
*/
function json_last_error () {}
@ -148,28 +147,24 @@ function json_last_error_msg () {}
/**
* All &lt; and &gt; are converted to \u003C and \u003E.
* @since 5.3
* @link https://php.net/manual/en/json.constants.php
*/
define ('JSON_HEX_TAG', 1);
/**
* All &#38;#38;s are converted to \u0026.
* @since 5.3
* @link https://php.net/manual/en/json.constants.php
*/
define ('JSON_HEX_AMP', 2);
/**
* All ' are converted to \u0027.
* @since 5.3
* @link https://php.net/manual/en/json.constants.php
*/
define ('JSON_HEX_APOS', 4);
/**
* All " are converted to \u0022.
* @since 5.3
* @link https://php.net/manual/en/json.constants.php
*/
define ('JSON_HEX_QUOT', 8);
@ -178,7 +173,6 @@ define ('JSON_HEX_QUOT', 8);
* Outputs an object rather than an array when a non-associative array is
* used. Especially useful when the recipient of the output is expecting
* an object and the array is empty.
* @since 5.3
* @link https://php.net/manual/en/json.constants.php
*/
define ('JSON_FORCE_OBJECT', 16);
@ -214,14 +208,12 @@ define ('JSON_PARTIAL_OUTPUT_ON_ERROR', 512);
/**
* Occurs with underflow or with the modes mismatch.
* @since 5.3
* @link https://php.net/manual/en/json.constants.php
*/
define ('JSON_ERROR_STATE_MISMATCH', 2);
/**
* Control character error, possibly incorrectly encoded.
* @since 5.3
* @link https://php.net/manual/en/json.constants.php
*/
define ('JSON_ERROR_CTRL_CHAR', 3);
@ -279,21 +271,18 @@ define ('JSON_ERROR_UNSUPPORTED_TYPE', 8);
/**
* No error has occurred.
* @since 5.3
* @link https://php.net/manual/en/json.constants.php
*/
define ('JSON_ERROR_NONE', 0);
/**
* The maximum stack depth has been exceeded.
* @since 5.3
* @link https://php.net/manual/en/json.constants.php
*/
define ('JSON_ERROR_DEPTH', 1);
/**
* Syntax error.
* @since 5.3
* @link https://php.net/manual/en/json.constants.php
*/
define ('JSON_ERROR_SYNTAX', 4);

View File

@ -66,8 +66,6 @@ function ldap_parse_exop ($link , $result, &$retdata, &$retoid) {}
* @link https://www.php.net/manual/en/function.ldap-8859-to-t61.php
* @param string $value
* @return string
* @since 4.0.2
* @since 5.0
* @since 7.0
*/
function ldap_8859_to_t61($value) {}
@ -77,8 +75,6 @@ function ldap_8859_to_t61($value) {}
* @link https://www.php.net/manual/en/function.ldap-t61-to-8859.php
* @param string $value
* @return string
* @since 4.0.2
* @since 5.0
* @since 7.0
*/
function ldap_t61_to_8859($value) {}
@ -105,8 +101,6 @@ function ldap_t61_to_8859($value) {}
* <p>
* If no arguments are specified then the link identifier of the already
* opened link will be returned.
* @since 4.0
* @since 5.0
*/
function ldap_connect ($hostname = null, $port = 389) {}
@ -114,8 +108,6 @@ function ldap_connect ($hostname = null, $port = 389) {}
* Alias of <b>ldap_unbind</b>
* @link https://php.net/manual/en/function.ldap-close.php
* @param $link_identifier
* @since 4.0
* @since 5.0
*/
function ldap_close ($link_identifier) {}
@ -128,8 +120,6 @@ function ldap_close ($link_identifier) {}
* @param string $bind_rdn [optional]
* @param string $bind_password [optional]
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
* @since 7.0
*/
function ldap_bind ($link_identifier, $bind_rdn = null, $bind_password = null) {}
@ -162,7 +152,6 @@ function ldap_bind_ext ($link_identifier, $bind_rdn = null, $bind_password = nul
* @param string $sasl_authz_id [optional]
* @param string $props [optional]
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.0
*/
function ldap_sasl_bind ($link, $binddn = null, $password = null, $sasl_mech = null, $sasl_realm = null, $sasl_authc_id = null, $sasl_authz_id = null, $props = null) {}
@ -173,8 +162,6 @@ function ldap_sasl_bind ($link, $binddn = null, $password = null, $sasl_mech = n
* An LDAP link identifier, returned by <b>ldap_connect</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function ldap_unbind ($link_identifier) {}
@ -239,8 +226,6 @@ function ldap_unbind ($link_identifier) {}
* dereferenced.
* @param array $serverctrls [optional] Array of LDAP Controls to send with the request.
* @return resource|false a search result identifier or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function ldap_read ($link_identifier, $base_dn, $filter, array $attributes = null, $attrsonly = null, $sizelimit = null, $timelimit = null, $deref = null, $serverctrls = []) {}
@ -299,8 +284,6 @@ function ldap_read ($link_identifier, $base_dn, $filter, array $attributes = nul
* dereferenced.
* @param array $serverctrls [optional] Array of LDAP Controls to send with the request.
* @return resource|false a search result identifier or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function ldap_list ($link_identifier, $base_dn, $filter, array $attributes = null, $attrsonly = null, $sizelimit = null, $timelimit = null, $deref = null, $serverctrls = []) {}
@ -363,8 +346,6 @@ function ldap_list ($link_identifier, $base_dn, $filter, array $attributes = nul
* dereferenced.
* @param array $serverctrls [optional] Array of LDAP Controls to send with the request.
* @return resource|false a search result identifier or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function ldap_search ($link_identifier, $base_dn, $filter, array $attributes = null, $attrsonly = null, $sizelimit = null, $timelimit = null, $deref = null, $serverctrls = []) {}
@ -373,8 +354,6 @@ function ldap_search ($link_identifier, $base_dn, $filter, array $attributes = n
* @link https://php.net/manual/en/function.ldap-free-result.php
* @param resource $result_identifier
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function ldap_free_result ($result_identifier) {}
@ -388,8 +367,6 @@ function ldap_free_result ($result_identifier) {}
* The internal LDAP result.
* </p>
* @return int|false number of entries in the result or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function ldap_count_entries ($link_identifier, $result_identifier) {}
@ -402,8 +379,6 @@ function ldap_count_entries ($link_identifier, $result_identifier) {}
* @param resource $result_identifier
* @return resource the result entry identifier for the first entry on success and
* <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function ldap_first_entry ($link_identifier, $result_identifier) {}
@ -417,8 +392,6 @@ function ldap_first_entry ($link_identifier, $result_identifier) {}
* @return resource|false entry identifier for the next entry in the result whose entries
* are being read starting with <b>ldap_first_entry</b>. If
* there are no more entries in the result then it returns <b>FALSE</b>.
* @since 4.0
* @since 5.0
*/
function ldap_next_entry ($link_identifier, $result_entry_identifier) {}
@ -447,8 +420,6 @@ function ldap_next_entry ($link_identifier, $result_entry_identifier) {}
* attribute in ith entry
* return_value[i]["attribute"][j] = jth value of attribute in ith entry
* </pre>
* @since 4.0
* @since 5.0
*/
function ldap_get_entries ($link_identifier, $result_identifier) {}
@ -461,8 +432,6 @@ function ldap_get_entries ($link_identifier, $result_identifier) {}
* @param resource $result_entry_identifier
* @return string|false the first attribute in the entry on success and <b>FALSE</b> on
* error.
* @since 4.0
* @since 5.0
*/
function ldap_first_attribute ($link_identifier, $result_entry_identifier) {}
@ -475,8 +444,6 @@ function ldap_first_attribute ($link_identifier, $result_entry_identifier) {}
* @param resource $result_entry_identifier
* @return string|false the next attribute in an entry on success and <b>FALSE</b> on
* error.
* @since 4.0
* @since 5.0
*/
function ldap_next_attribute ($link_identifier, $result_entry_identifier) {}
@ -489,8 +456,6 @@ function ldap_next_attribute ($link_identifier, $result_entry_identifier) {}
* @param resource $result_entry_identifier
* @return array a complete entry information in a multi-dimensional array
* on success and <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function ldap_get_attributes ($link_identifier, $result_entry_identifier) {}
@ -514,8 +479,6 @@ function ldap_get_attributes ($link_identifier, $result_entry_identifier) {}
* return_value["count"] = number of values for attribute
* return_value[0] = first value of attribute
* return_value[i] = ith value of attribute
* @since 4.0
* @since 5.0
*/
function ldap_get_values ($link_identifier, $result_entry_identifier, $attribute) {}
@ -531,8 +494,6 @@ function ldap_get_values ($link_identifier, $result_entry_identifier, $attribute
* error. Individual values are accessed by integer index in the array. The
* first index is 0. The number of values can be found by indexing "count"
* in the resultant array.
* @since 4.0
* @since 5.0
*/
function ldap_get_values_len ($link_identifier, $result_entry_identifier, $attribute) {}
@ -544,8 +505,6 @@ function ldap_get_values_len ($link_identifier, $result_entry_identifier, $attri
* </p>
* @param resource $result_entry_identifier
* @return string|false the DN of the result entry and <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function ldap_get_dn ($link_identifier, $result_entry_identifier) {}
@ -565,8 +524,6 @@ function ldap_get_dn ($link_identifier, $result_entry_identifier) {}
* The first element in this array has count key and
* represents the number of returned values, next elements are numerically
* indexed DN components.
* @since 4.0
* @since 5.0
*/
function ldap_explode_dn ($dn, $with_attrib) {}
@ -577,8 +534,6 @@ function ldap_explode_dn ($dn, $with_attrib) {}
* The distinguished name of an LDAP entity.
* </p>
* @return string the user friendly name.
* @since 4.0
* @since 5.0
*/
function ldap_dn2ufn ($dn) {}
@ -604,8 +559,6 @@ function ldap_dn2ufn ($dn) {}
* </p>
* @param array $serverctrls [optional] Array of LDAP Controls to send with the request.
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function ldap_add ($link_identifier, $dn, array $entry, $serverctrls = []) {}
@ -647,8 +600,6 @@ function ldap_add_ext ($link_identifier, $dn, array $entry, $serverctrls = []) {
* </p>
* @param array $serverctrls [optional] Array of LDAP Controls to send with the request.
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
* @since 7.0
*/
function ldap_delete ($link_identifier, $dn, $serverctrls = []) {}
@ -682,8 +633,6 @@ function ldap_delete_ext ($link_identifier, $dn, $serverctrls = []) {}
* @param array $entry
* @param array $serverctrls [optional] Array of LDAP Controls to send with the request.
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
* @since 7.0
*/
function ldap_modify ($link_identifier, $dn, array $entry, $serverctrls = []) {}
@ -700,8 +649,6 @@ function ldap_modify ($link_identifier, $dn, array $entry, $serverctrls = []) {}
* @param array $entry
* @param array $serverctrls [optional] Array of LDAP Controls to send with the request.
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
* @since 7.0
*/
function ldap_mod_add ($link_identifier, $dn, array $entry, $serverctrls = []) {}
@ -719,8 +666,6 @@ function ldap_mod_add ($link_identifier, $dn, array $entry, $serverctrls = []) {
* @param array $entry
* @param array $serverctrls [optional] Array of LDAP Controls to send with the request.
* @return resource
* @since 4.0
* @since 5.0
* @since 7.0
*/
function ldap_mod_add_ext ($link_identifier, $dn, array $entry, $serverctrls = []) {}
@ -737,8 +682,6 @@ function ldap_mod_add_ext ($link_identifier, $dn, array $entry, $serverctrls = [
* @param array $entry
* @param array $serverctrls [optional] Array of LDAP Controls to send with the request.
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
* @since 7.0
*/
function ldap_mod_replace ($link_identifier, $dn, array $entry, $serverctrls = []) {}
@ -772,8 +715,6 @@ function ldap_mod_replace_ext ($link_identifier, $dn, array $entry, $serverctrls
* @param array $entry
* @param array $serverctrls [optional] Array of LDAP Controls to send with the request.
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
* @since 7.0
*/
function ldap_mod_del ($link_identifier, $dn, array $entry, $serverctrls = []) {}
@ -803,8 +744,6 @@ function ldap_mod_del_ext ($link_identifier, $dn, array $entry, $serverctrls = [
* </p>
* @return int Return the LDAP error number of the last LDAP command for this
* link.
* @since 4.0
* @since 5.0
*/
function ldap_errno ($link_identifier) {}
@ -815,8 +754,6 @@ function ldap_errno ($link_identifier) {}
* The error number.
* </p>
* @return string the error message, as a string.
* @since 4.0
* @since 5.0
*/
function ldap_err2str ($errno) {}
@ -827,8 +764,6 @@ function ldap_err2str ($errno) {}
* An LDAP link identifier, returned by <b>ldap_connect</b>.
* </p>
* @return string string error message.
* @since 4.0
* @since 5.0
*/
function ldap_error ($link_identifier) {}
@ -850,8 +785,6 @@ function ldap_error ($link_identifier) {}
* @param array $serverctrls [optional] Array of LDAP Controls to send with the request.
* @return mixed <b>TRUE</b> if <i>value</i> matches otherwise returns
* <b>FALSE</b>. Returns -1 on error.
* @since 4.0.2
* @since 5.0
* @since 7.0
*/
function ldap_compare ($link_identifier, $dn, $attribute, $value, $serverctrls = []) {}
@ -871,8 +804,6 @@ function ldap_compare ($link_identifier, $dn, $attribute, $value, $serverctrls =
* </p>
* @deprecated 7.0
* @return bool
* @since 4.2
* @since 5.0
*/
function ldap_sort ($link, $result, $sortfilter) {}
@ -897,8 +828,6 @@ function ldap_sort ($link, $result, $sortfilter) {}
* </p>
* @param array $serverctrls [optional] Array of LDAP Controls to send with the request.
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.5
* @since 5.0
* @since 7.0
*/
function ldap_rename ($link_identifier, $dn, $newrdn, $newparent, $deleteoldrdn, $serverctrls = []) {}
@ -998,8 +927,6 @@ function ldap_rename_ext ($link_identifier, $dn, $newrdn, $newparent, $deleteold
* This will be set to the option value.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.4
* @since 5.0
*/
function ldap_get_option ($link_identifier, $option, &$retval) {}
@ -1101,8 +1028,6 @@ function ldap_get_option ($link_identifier, $option, &$retval) {}
* The new value for the specified <i>option</i>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.4
* @since 5.0
*/
function ldap_set_option ($link_identifier, $option, $newval) {}
@ -1112,8 +1037,6 @@ function ldap_set_option ($link_identifier, $option, $newval) {}
* @param resource $link
* @param resource $result
* @return resource
* @since 4.0.5
* @since 5.0
*/
function ldap_first_reference ($link, $result) {}
@ -1123,8 +1046,6 @@ function ldap_first_reference ($link, $result) {}
* @param resource $link
* @param resource $entry
* @return resource
* @since 4.0.5
* @since 5.0
*/
function ldap_next_reference ($link, $entry) {}
@ -1135,8 +1056,6 @@ function ldap_next_reference ($link, $entry) {}
* @param resource $entry
* @param array $referrals
* @return bool
* @since 4.0.5
* @since 5.0
*/
function ldap_parse_reference ($link, $entry, array &$referrals) {}
@ -1151,8 +1070,6 @@ function ldap_parse_reference ($link, $entry, array &$referrals) {}
* @param array $referrals [optional]
* @param array $serverctrls [optional] An array of LDAP Controls which have been sent with the response.
* @return bool
* @since 4.0.5
* @since 5.0
*/
function ldap_parse_result ($link, $result, &$errcode, &$matcheddn = null, &$errmsg = null, array &$referrals = null, &$serverctrls = []) {}
@ -1161,8 +1078,6 @@ function ldap_parse_result ($link, $result, &$errcode, &$matcheddn = null, &$err
* @link https://php.net/manual/en/function.ldap-start-tls.php
* @param resource $link
* @return bool
* @since 4.2
* @since 5.0
*/
function ldap_start_tls ($link) {}
@ -1172,8 +1087,6 @@ function ldap_start_tls ($link) {}
* @param resource $link
* @param callable $callback
* @return bool
* @since 4.2
* @since 5.0
*/
function ldap_set_rebind_proc ($link, callable $callback) {}

View File

@ -68,7 +68,6 @@ class LibXMLError {
* <b>stream_context_create</b>)
* </p>
* @return void No value is returned.
* @since 5.0
*/
function libxml_set_streams_context ($streams_context) {}
@ -80,7 +79,6 @@ function libxml_set_streams_context ($streams_context) {}
* </p>
* @return bool This function returns the previous value of
* <i>use_errors</i>.
* @since 5.1
*/
function libxml_use_internal_errors ($use_errors = false) {}
@ -89,7 +87,6 @@ function libxml_use_internal_errors ($use_errors = false) {}
* @link https://php.net/manual/en/function.libxml-get-last-error.php
* @return LibXMLError a LibXMLError object if there is any error in the
* buffer, <b>FALSE</b> otherwise.
* @since 5.1
*/
function libxml_get_last_error () {}
@ -97,7 +94,6 @@ function libxml_get_last_error () {}
* Clear libxml error buffer
* @link https://php.net/manual/en/function.libxml-clear-errors.php
* @return void No value is returned.
* @since 5.1
*/
function libxml_clear_errors () {}
@ -106,7 +102,6 @@ function libxml_clear_errors () {}
* @link https://php.net/manual/en/function.libxml-get-errors.php
* @return array an array with LibXMLError objects if there are any
* errors in the buffer, or an empty array otherwise.
* @since 5.1
*/
function libxml_get_errors () {}

View File

@ -17,8 +17,6 @@
* @param string $encoding [optional] &mbstring.encoding.parameter;
* @return string A case folded version of string converted in the
* way specified by mode.
* @since 4.3
* @since 5.0
*/
function mb_convert_case ($str, $mode, $encoding = null) {}
@ -30,8 +28,6 @@ function mb_convert_case ($str, $mode, $encoding = null) {}
* </p>
* @param string $encoding [optional] &mbstring.encoding.parameter;
* @return string str with all alphabetic characters converted to uppercase.
* @since 4.3
* @since 5.0
*/
function mb_strtoupper ($str, $encoding = null) {}
@ -43,8 +39,6 @@ function mb_strtoupper ($str, $encoding = null) {}
* </p>
* @param string $encoding [optional] &mbstring.encoding.parameter;
* @return string str with all alphabetic characters converted to lowercase.
* @since 4.3
* @since 5.0
*/
function mb_strtolower ($str, $encoding = null) {}
@ -69,8 +63,6 @@ function mb_strtolower ($str, $encoding = null) {}
* When language is omitted, it returns the language
* name as a string. If no language is set previously, it then returns
* false.
* @since 4.0.6
* @since 5.0
*/
function mb_language ($language = null) {}
@ -87,8 +79,6 @@ function mb_language ($language = null) {}
* true on success or false on failure.
* If encoding is omitted, then
* the current character encoding name is returned.
* @since 4.0.6
* @since 5.0
*/
function mb_internal_encoding ($encoding = null) {}
@ -104,8 +94,6 @@ function mb_internal_encoding ($encoding = null) {}
* @return false|string The character encoding name, as per the type.
* If mb_http_input does not process specified
* HTTP input, it returns false.
* @since 4.0.6
* @since 5.0
*/
function mb_http_input ($type = null) {}
@ -126,8 +114,6 @@ function mb_http_input ($type = null) {}
* mb_http_output returns the current HTTP output
* character encoding. Otherwise,
* true on success or false on failure.
* @since 4.0.6
* @since 5.0
*/
function mb_http_output ($encoding = null) {}
@ -173,8 +159,6 @@ function mb_http_output ($encoding = null) {}
* true is returned on success or FALSE on failure.
* When getting the encoding detection order, an ordered array
* of the encodings is returned.
* @since 4.0.6
* @since 5.0
*/
function mb_detect_order ($encoding_list = null) {}
@ -191,8 +175,6 @@ function mb_detect_order ($encoding_list = null) {}
* otherwise returns false.
* If substchar is not set, it returns the Unicode value,
* or "none" or "long".
* @since 4.0.6
* @since 5.0
*/
function mb_substitute_character ($substrchar = null) {}
@ -206,8 +188,6 @@ function mb_substitute_character ($substrchar = null) {}
* An array containing decoded and character encoded converted values.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.6
* @since 5.0
*/
function mb_parse_str ($encoded_string, array &$result = null) {}
@ -221,8 +201,6 @@ function mb_parse_str ($encoded_string, array &$result = null) {}
* The status of the output buffer.
* </p>
* @return string The converted string.
* @since 4.0.6
* @since 5.0
*/
function mb_output_handler ($contents, $status) {}
@ -234,8 +212,6 @@ function mb_output_handler ($contents, $status) {}
* </p>
* @return string The MIME charset string for character encoding
* encoding.
* @since 4.0.6
* @since 5.0
*/
function mb_preferred_mime_name ($encoding) {}
@ -250,8 +226,6 @@ function mb_preferred_mime_name ($encoding) {}
* string str having character encoding
* encoding. A multi-byte character is
* counted as 1.
* @since 4.0.6
* @since 5.0
*/
function mb_strlen ($str, $encoding = null) {}
@ -272,8 +246,6 @@ function mb_strlen ($str, $encoding = null) {}
* the first occurrence of needle in the
* haystack string. If
* needle is not found, it returns false.
* @since 4.0.6
* @since 5.0
*/
function mb_strpos ($haystack, $needle, $offset = 0, $encoding = null) {}
@ -295,8 +267,6 @@ function mb_strpos ($haystack, $needle, $offset = 0, $encoding = null) {}
* the last occurrence of needle in the
* haystack string. If
* needle is not found, it returns false.
* @since 4.0.6
* @since 5.0
*/
function mb_strrpos ($haystack, $needle, $offset = 0, $encoding = null) {}
@ -321,7 +291,6 @@ function mb_strrpos ($haystack, $needle, $offset = 0, $encoding = null) {}
* @return int|false Return the numeric position of the first occurrence of
* needle in the haystack
* string, or false if needle is not found.
* @since 5.2
*/
function mb_stripos ($haystack, $needle, $offset = 0, $encoding = null) {}
@ -347,7 +316,6 @@ function mb_stripos ($haystack, $needle, $offset = 0, $encoding = null) {}
* the last occurrence of needle in the
* haystack string, or false
* if needle is not found.
* @since 5.2
*/
function mb_strripos ($haystack, $needle, $offset = 0, $encoding = null) {}
@ -375,7 +343,6 @@ function mb_strripos ($haystack, $needle, $offset = 0, $encoding = null) {}
* </p>
* @return string|false the portion of haystack,
* or false if needle is not found.
* @since 5.2
*/
function mb_strstr ($haystack, $needle, $before_needle = false, $encoding = null) {}
@ -403,7 +370,6 @@ function mb_strstr ($haystack, $needle, $before_needle = false, $encoding = null
* </p>
* @return string|false the portion of haystack.
* or false if needle is not found.
* @since 5.2
*/
function mb_strrchr ($haystack, $needle, $before_needle = false, $encoding = null) {}
@ -431,7 +397,6 @@ function mb_strrchr ($haystack, $needle, $before_needle = false, $encoding = nul
* </p>
* @return string|false the portion of haystack,
* or false if needle is not found.
* @since 5.2
*/
function mb_stristr ($haystack, $needle, $before_needle = false, $encoding = null) {}
@ -459,7 +424,6 @@ function mb_stristr ($haystack, $needle, $before_needle = false, $encoding = nul
* </p>
* @return string|false the portion of haystack.
* or false if needle is not found.
* @since 5.2
*/
function mb_strrichr ($haystack, $needle, $before_needle = false, $encoding = null) {}
@ -476,8 +440,6 @@ function mb_strrichr ($haystack, $needle, $before_needle = false, $encoding = nu
* @return int The number of times the
* needle substring occurs in the
* haystack string.
* @since 4.3
* @since 5.0
*/
function mb_substr_count ($haystack, $needle, $encoding = null) {}
@ -498,8 +460,6 @@ function mb_substr_count ($haystack, $needle, $encoding = null) {}
* str specified by the
* start and
* length parameters.
* @since 4.0.6
* @since 5.0
*/
function mb_substr ($str, $start, $length = null, $encoding = null) {}
@ -520,8 +480,6 @@ function mb_substr ($str, $start, $length = null, $encoding = null) {}
* str specified by the
* start and
* length parameters.
* @since 4.0.6
* @since 5.0
*/
function mb_strcut ($str, $start, $length = null, $encoding = null) {}
@ -533,8 +491,6 @@ function mb_strcut ($str, $start, $length = null, $encoding = null) {}
* </p>
* @param string $encoding [optional] &mbstring.encoding.parameter;
* @return int The width of string str.
* @since 4.0.6
* @since 5.0
*/
function mb_strwidth ($str, $encoding = null) {}
@ -558,8 +514,6 @@ function mb_strwidth ($str, $encoding = null) {}
* @param string $encoding [optional] &mbstring.encoding.parameter;
* @return string The truncated string. If trimmarker is set,
* trimmarker is appended to the return value.
* @since 4.0.6
* @since 5.0
*/
function mb_strimwidth ($str, $start, $width, $trimmarker = null, $encoding = null) {}
@ -583,8 +537,6 @@ function mb_strimwidth ($str, $start, $width, $trimmarker = null, $encoding = nu
* "ASCII,JIS,UTF-8,EUC-JP,SJIS".
* </p>
* @return string The encoded string.
* @since 4.0.6
* @since 5.0
*/
function mb_convert_encoding ($str, $to_encoding, $from_encoding = null) {}
@ -610,8 +562,6 @@ function mb_convert_encoding ($str, $to_encoding, $from_encoding = null) {}
* </p>
* @return string|false The detected character encoding or false if the encoding cannot be
* detected from the given string.
* @since 4.0.6
* @since 5.0
*/
function mb_detect_encoding ($str, $encoding_list = null, $strict = false) {}
@ -619,7 +569,6 @@ function mb_detect_encoding ($str, $encoding_list = null, $strict = false) {}
* Returns an array of all supported encodings
* @link https://php.net/manual/en/function.mb-list-encodings.php
* @return string[] a numerically indexed array.
* @since 5.0
*/
function mb_list_encodings () {}
@ -628,7 +577,6 @@ function mb_list_encodings () {}
* @param string $encoding The encoding type being checked, for aliases.
* @return string[]|false a numerically indexed array of encoding aliases on success, or FALSE on failure
* @link https://php.net/manual/en/function.mb-encoding-aliases.php
* @since 5.3
*/
function mb_encoding_aliases ($encoding) {}
@ -745,8 +693,6 @@ function mb_encoding_aliases ($encoding) {}
* </p>
* @param string $encoding [optional] &mbstring.encoding.parameter;
* @return string The converted string.
* @since 4.0.6
* @since 5.0
*/
function mb_convert_kana ($str, $option = null, $encoding = null) {}
@ -781,8 +727,6 @@ function mb_convert_kana ($str, $option = null, $encoding = null) {}
* before str).
* </p>
* @return string A converted version of the string represented in ASCII.
* @since 4.0.6
* @since 5.0
*/
function mb_encode_mimeheader ($str, $charset = null, $transfer_encoding = null, $linefeed = null, $indent = null) {}
@ -793,8 +737,6 @@ function mb_encode_mimeheader ($str, $charset = null, $transfer_encoding = null,
* The string being decoded.
* </p>
* @return string The decoded string in internal character encoding.
* @since 4.0.6
* @since 5.0
*/
function mb_decode_mimeheader ($str) {}
@ -818,8 +760,6 @@ function mb_decode_mimeheader ($str) {}
* </p>
* @return string|false The character encoding before conversion for success,
* or false for failure.
* @since 4.0.6
* @since 5.0
*/
function mb_convert_variables ($to_encoding, $from_encoding, &...$vars) {}
@ -836,8 +776,6 @@ function mb_convert_variables ($to_encoding, $from_encoding, &...$vars) {}
* @param string $encoding &mbstring.encoding.parameter;
* @param bool $is_hex [optional]
* @return string|false|null The converted string.
* @since 4.0.6
* @since 5.0
*/
function mb_encode_numericentity ($str, array $convmap, $encoding = null, $is_hex = false) {}
@ -856,8 +794,6 @@ function mb_encode_numericentity ($str, array $convmap, $encoding = null, $is_he
* this parameter is not used.
* </p>
* @return string|false|null The converted string.
* @since 4.0.6
* @since 5.0
*/
function mb_decode_numericentity ($str, array $convmap, $encoding = null, $is_hex = false) {}
@ -889,8 +825,6 @@ function mb_decode_numericentity ($str, array $convmap, $encoding = null, $is_he
* header when using sendmail.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.6
* @since 5.0
*/
function mb_send_mail ($to, $subject, $message, $additional_headers = null, $additional_parameter = null) {}
@ -910,8 +844,6 @@ function mb_send_mail ($to, $subject, $message, $additional_headers = null, $add
* </p>
* @return array|mixed An array of type information if type
* is not specified, otherwise a specific type.
* @since 4.2
* @since 5.0
*/
function mb_get_info ($type = null) {}
@ -926,7 +858,6 @@ function mb_get_info ($type = null) {}
* The expected encoding.
* </p>
* @return bool true on success or false on failure.
* @since 4.4.3
* @since 5.1.3
*/
function mb_check_encoding ($var = null, $encoding = null) {}
@ -939,8 +870,6 @@ function mb_check_encoding ($var = null, $encoding = null) {}
* or FALSE on failure. In this case, the internal character encoding
* is NOT changed. If encoding is omitted, then the current character
* encoding name for a multibyte regex is returned.
* @since 4.2
* @since 5.0
*/
function mb_regex_encoding ($encoding = null) {}
@ -952,8 +881,6 @@ function mb_regex_encoding ($encoding = null) {}
* </p>
* @return string The previous options. If options is omitted,
* it returns the string that describes the current options.
* @since 4.3
* @since 5.0
*/
function mb_regex_set_options ($options = null) {}
@ -970,8 +897,6 @@ function mb_regex_set_options ($options = null) {}
* Contains a substring of the matched string.
* </p>
* @return int
* @since 4.2
* @since 5.0
*/
function mb_ereg ($pattern, $string, array &$regs = null) {}
@ -988,8 +913,6 @@ function mb_ereg ($pattern, $string, array &$regs = null) {}
* Contains a substring of the matched string.
* </p>
* @return int
* @since 4.2
* @since 5.0
*/
function mb_eregi ($pattern, $string, array &$regs = null) {}
@ -1020,8 +943,6 @@ function mb_eregi ($pattern, $string, array &$regs = null) {}
* evaluated as PHP expression.
* <p>PHP 7.1: The <i>e</i> modifier has been deprecated.</p>
* @return string|false The resultant string on success, or false on error.
* @since 4.2
* @since 5.0
*/
function mb_ereg_replace ($pattern, $replacement, $string, $option = "msr") {}
@ -1086,8 +1007,6 @@ function mb_ereg_replace_callback ($pattern, callable $callback, $string, $optio
* mb_ereg_replace.
* <p>PHP 7.1: The <i>e</i> modifier has been deprecated.</p>
* @return string|false The resultant string or false on error.
* @since 4.2
* @since 5.0
*/
function mb_eregi_replace ($pattern, $replace, $string, $option = "msr") {}
@ -1104,8 +1023,6 @@ function mb_eregi_replace ($pattern, $replace, $string, $option = "msr") {}
* it will be split in limit elements as
* maximum.
* @return string[] The result as an array.
* @since 4.2
* @since 5.0
*/
function mb_split ($pattern, $string, $limit = null) {}
@ -1121,8 +1038,6 @@ function mb_split ($pattern, $string, $limit = null) {}
* @param string $option [optional] <p>
* </p>
* @return bool
* @since 4.2
* @since 5.0
*/
function mb_ereg_match ($pattern, $string, $option = null) {}
@ -1136,8 +1051,6 @@ function mb_ereg_match ($pattern, $string, $option = null) {}
* The search option.
* </p>
* @return bool
* @since 4.2
* @since 5.0
*/
function mb_ereg_search ($pattern = null, $option = null) {}
@ -1154,8 +1067,6 @@ function mb_ereg_search ($pattern = null, $option = null) {}
* element is the offset, in bytes, where the match begins relative
* to the start of the search string, and the second element is the
* length in bytes of the match. If an error occurs, FALSE is returned.
* @since 4.2
* @since 5.0
*/
function mb_ereg_search_pos ($pattern = null, $option = null) {}
@ -1173,8 +1084,6 @@ function mb_ereg_search_pos ($pattern = null, $option = null) {}
* returns an array including substring of matched part as first element,
* the first grouped part with brackets as second element, the second grouped
* part as third element, and so on. It returns FALSE on error.
* @since 4.2
* @since 5.0
*/
function mb_ereg_search_regs ($pattern = null, $option = null) {}
@ -1191,8 +1100,6 @@ function mb_ereg_search_regs ($pattern = null, $option = null) {}
* The search option.
* </p>
* @return bool
* @since 4.2
* @since 5.0
*/
function mb_ereg_search_init ($string, $pattern = null, $option = null) {}
@ -1205,8 +1112,6 @@ function mb_ereg_search_init ($string, $pattern = null, $option = null) {}
* sub-string, the second element will have the first part grouped with
* brackets, the third element will have the second part grouped with
* brackets, and so on. It returns FALSE on error;
* @since 4.2
* @since 5.0
*/
function mb_ereg_search_getregs () {}
@ -1214,8 +1119,6 @@ function mb_ereg_search_getregs () {}
* Returns start point for next regular expression match
* @link https://php.net/manual/en/function.mb-ereg-search-getpos.php
* @return int
* @since 4.2
* @since 5.0
* @deprecated 7.3
*/
function mb_ereg_search_getpos () {}
@ -1227,8 +1130,6 @@ function mb_ereg_search_getpos () {}
* The position to set.
* </p>
* @return bool
* @since 4.2
* @since 5.0
*/
function mb_ereg_search_setpos ($position) {}

View File

@ -63,8 +63,6 @@ function mcrypt_ofb ($cipher, $key, $data, $mode, $iv = null) {}
* @param int|string $cipher
* @param string $mode
* @return int
* @since 4.0
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_get_key_size ($cipher, $mode) {}
@ -79,8 +77,6 @@ function mcrypt_get_key_size ($cipher, $mode) {}
* @param string $mode <p>
* One of the <b>MCRYPT_MODE_modename</b> constants, or one of the following strings: "ecb", "cbc", "cfb", "ofb", "nofb" or "stream".</p>
* @return int Gets the block size, as an integer.
* @since 4.0
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_get_block_size ($cipher, $mode) {}
@ -94,8 +90,6 @@ function mcrypt_get_block_size ($cipher, $mode) {}
* </p>
* @return string|false This function returns the name of the cipher or false, if the cipher does
* not exist.
* @since 4.0
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_get_cipher_name ($cipher) {}
@ -125,8 +119,6 @@ function mcrypt_get_cipher_name ($cipher) {}
* rand is.
* </p>
* @return string|false the initialization vector, or false on error.
* @since 4.0
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_create_iv ($size, $source = MCRYPT_DEV_URANDOM) {}
@ -140,8 +132,6 @@ function mcrypt_create_iv ($size, $source = MCRYPT_DEV_URANDOM) {}
* is used.
* </p>
* @return array an array with all the supported algorithms.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_list_algorithms ($lib_dir = null) {}
@ -155,8 +145,6 @@ function mcrypt_list_algorithms ($lib_dir = null) {}
* &php.ini; directive is used.
* </p>
* @return array an array with all the supported modes.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_list_modes ($lib_dir = null) {}
@ -178,8 +166,6 @@ function mcrypt_list_modes ($lib_dir = null) {}
* @return int|false the size of the Initialisation Vector (IV) in bytes. On error the
* function returns false. If the IV is ignored in the specified cipher/mode
* combination zero is returned.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_get_iv_size ($cipher, $mode) {}
@ -221,8 +207,6 @@ function mcrypt_get_iv_size ($cipher, $mode) {}
* IV with all bytes set to '\0'.
* </p>
* @return string the encrypted data, as a string.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_encrypt ($cipher, $key, $data, $mode, $iv = null) {}
@ -256,8 +240,6 @@ function mcrypt_encrypt ($cipher, $key, $data, $mode, $iv = null) {}
* '\0'.
* </p>
* @return string the decrypted data as a string.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_decrypt ($cipher, $key, $data, $mode, $iv = null) {}
@ -285,8 +267,6 @@ function mcrypt_decrypt ($cipher, $key, $data, $mode, $iv = null) {}
* @param string $mode_directory <p>
* </p>
* @return resource|false Normally it returns an encryption descriptor, or false on error.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_module_open ($algorithm, $algorithm_directory, $mode, $mode_directory) {}
@ -316,8 +296,6 @@ function mcrypt_module_open ($algorithm, $algorithm_directory, $mode, $mode_dire
* other return value is an unknown error. If an error occurs a warning will
* be displayed accordingly. false is returned if incorrect parameters
* were passed.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_generic_init ($td, $key, $iv) {}
@ -339,8 +317,6 @@ function mcrypt_generic_init ($td, $key, $iv) {}
* The data to encrypt.
* </p>
* @return string the encrypted data.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_generic ($td, $data) {}
@ -356,8 +332,6 @@ function mcrypt_generic ($td, $data) {}
* Encrypted data.
* </p>
* @return string
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mdecrypt_generic ($td, $data) {}
@ -379,8 +353,6 @@ function mcrypt_generic_end ($td) {}
* The encryption descriptor.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.7
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_generic_deinit ($td) {}
@ -393,8 +365,6 @@ function mcrypt_generic_deinit ($td) {}
* </p>
* @return int|bool If the self test succeeds it returns false. In case of an error, it
* returns true.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_enc_self_test ($td) {}
@ -407,8 +377,6 @@ function mcrypt_enc_self_test ($td) {}
* </p>
* @return bool true if the mode is for use with block algorithms, otherwise it
* returns false.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_enc_is_block_algorithm_mode ($td) {}
@ -421,8 +389,6 @@ function mcrypt_enc_is_block_algorithm_mode ($td) {}
* </p>
* @return bool true if the algorithm is a block algorithm or false if it is
* a stream one.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_enc_is_block_algorithm ($td) {}
@ -434,8 +400,6 @@ function mcrypt_enc_is_block_algorithm ($td) {}
* The encryption descriptor.
* </p>
* @return bool true if the mode outputs blocks of bytes or false if it outputs bytes.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_enc_is_block_mode ($td) {}
@ -447,8 +411,6 @@ function mcrypt_enc_is_block_mode ($td) {}
* The encryption descriptor.
* </p>
* @return int the block size of the specified algorithm in bytes.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_enc_get_block_size ($td) {}
@ -460,8 +422,6 @@ function mcrypt_enc_get_block_size ($td) {}
* The encryption descriptor.
* </p>
* @return int the maximum supported key size of the algorithm in bytes.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_enc_get_key_size ($td) {}
@ -477,8 +437,6 @@ function mcrypt_enc_get_key_size ($td) {}
* array then all key sizes between 1 and
* mcrypt_enc_get_key_size are supported by the
* algorithm.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_enc_get_supported_key_sizes ($td) {}
@ -490,8 +448,6 @@ function mcrypt_enc_get_supported_key_sizes ($td) {}
* The encryption descriptor.
* </p>
* @return int the size of the IV, or 0 if the IV is ignored in the algorithm.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_enc_get_iv_size ($td) {}
@ -503,8 +459,6 @@ function mcrypt_enc_get_iv_size ($td) {}
* The encryption descriptor.
* </p>
* @return string the name of the opened algorithm as a string.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_enc_get_algorithms_name ($td) {}
@ -516,8 +470,6 @@ function mcrypt_enc_get_algorithms_name ($td) {}
* The encryption descriptor.
* </p>
* @return string the name as a string.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_enc_get_modes_name ($td) {}
@ -534,8 +486,6 @@ function mcrypt_enc_get_modes_name ($td) {}
* </p>
* @return bool The function returns true if the self test succeeds, or false when if
* fails.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_module_self_test ($algorithm, $lib_dir = null) {}
@ -553,8 +503,6 @@ function mcrypt_module_self_test ($algorithm, $lib_dir = null) {}
* @return bool This function returns true if the mode is for use with block
* algorithms, otherwise it returns false. (e.g. false for stream, and
* true for cbc, cfb, ofb).
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_module_is_block_algorithm_mode ($mode, $lib_dir = null) {}
@ -571,8 +519,6 @@ function mcrypt_module_is_block_algorithm_mode ($mode, $lib_dir = null) {}
* </p>
* @return bool This function returns true if the specified algorithm is a block
* algorithm, or false is it is a stream algorithm.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_module_is_block_algorithm ($algorithm, $lib_dir = null) {}
@ -590,8 +536,6 @@ function mcrypt_module_is_block_algorithm ($algorithm, $lib_dir = null) {}
* @return bool This function returns true if the mode outputs blocks of bytes or
* false if it outputs just bytes. (e.g. true for cbc and ecb, and
* false for cfb and stream).
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_module_is_block_mode ($mode, $lib_dir = null) {}
@ -607,8 +551,6 @@ function mcrypt_module_is_block_mode ($mode, $lib_dir = null) {}
* is on the system.
* </p>
* @return int the block size of the algorithm specified in bytes.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_module_get_algo_block_size ($algorithm, $lib_dir = null) {}
@ -625,8 +567,6 @@ function mcrypt_module_get_algo_block_size ($algorithm, $lib_dir = null) {}
* </p>
* @return int This function returns the maximum supported key size of the
* algorithm specified in bytes.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_module_get_algo_key_size ($algorithm, $lib_dir = null) {}
@ -645,8 +585,6 @@ function mcrypt_module_get_algo_key_size ($algorithm, $lib_dir = null) {}
* If it returns an empty array then all key sizes between 1 and
* mcrypt_module_get_algo_key_size are supported by the
* algorithm.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_module_get_supported_key_sizes ($algorithm, $lib_dir = null) {}
@ -658,8 +596,6 @@ function mcrypt_module_get_supported_key_sizes ($algorithm, $lib_dir = null) {}
* The encryption descriptor.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.2
* @since 5.0
* @deprecated 7.1
*/
function mcrypt_module_close ($td) {}

View File

@ -8,7 +8,6 @@ const MESSAGEPACK_OPT_PHPONLY = -1001;
* Serialize a variable into msgpack format
* @param mixed $value
* @return string
* @since 5.0
*/
function msgpack_serialize($value) {}
@ -19,7 +18,6 @@ function msgpack_serialize($value) {}
* Undocumented template parameter
* </p>
* @return mixed
* @since 5.0
*/
function msgpack_unserialize($str, $object=NULL) {}
@ -27,7 +25,6 @@ function msgpack_unserialize($str, $object=NULL) {}
* Alias of msgpack_serialize
* @param mixed $value
* @return string
* @since 5.0
*/
function msgpack_pack($value) {}
@ -38,7 +35,6 @@ function msgpack_pack($value) {}
* Undocumented template parameter
* <p>
* @return mixed
* @since 5.0
*/
function msgpack_unpack($str, $object = null)
{

View File

@ -49,8 +49,6 @@
* In &sqlsafemode;, this parameter is ignored.
* </p>
* @return resource|false a MySQL link identifier on success or false on failure.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_connect ($server = 'ini_get("mysql.default_host")', $username = 'ini_get("mysql.default_user")', $password = 'ini_get("mysql.default_password")', $new_link = false, $client_flags = 0) {}
@ -87,8 +85,6 @@ function mysql_connect ($server = 'ini_get("mysql.default_host")', $username = '
* </p>
* @return resource|false a MySQL persistent link identifier on success, or false on
* failure.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_pconnect ($server = 'ini_get("mysql.default_host")', $username = 'ini_get("mysql.default_user")', $password = 'ini_get("mysql.default_password")', $client_flags = null) {}
@ -99,8 +95,6 @@ function mysql_pconnect ($server = 'ini_get("mysql.default_host")', $username =
* @link https://php.net/manual/en/function.mysql-close.php
* @param resource $link_identifier [optional]
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_close ($link_identifier = null) {}
@ -114,8 +108,6 @@ function mysql_close ($link_identifier = null) {}
* </p>
* @param resource $link_identifier [optional]
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_select_db ($database_name, $link_identifier = null) {}
@ -158,8 +150,6 @@ function mysql_select_db ($database_name, $link_identifier = null) {}
* <b>mysql_query</b> will also fail and return false
* if the user does not have permission to access the table(s) referenced by
* the query.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_query ($query, $link_identifier = null) {}
@ -184,8 +174,6 @@ function mysql_query ($query, $link_identifier = null) {}
* For other type of SQL statements, UPDATE, DELETE, DROP, etc,
* <b>mysql_unbuffered_query</b> returns true on success
* or false on error.
* @since 4.0.6
* @since 5.0
* @removed 7.0
*/
function mysql_unbuffered_query ($query, $link_identifier = null) {}
@ -208,8 +196,6 @@ function mysql_unbuffered_query ($query, $link_identifier = null) {}
* or false on error. The function also returns true/false for
* INSERT/UPDATE/DELETE
* queries to indicate success/failure.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_db_query ($database, $query, $link_identifier = null) {}
@ -223,8 +209,6 @@ function mysql_db_query ($database, $query, $link_identifier = null) {}
* this result pointer, or any function for result tables, such as
* <b>mysql_fetch_array</b>.
* @deprecated 5.4
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_list_dbs ($link_identifier = null) {}
@ -243,8 +227,6 @@ function mysql_list_dbs ($link_identifier = null) {}
* traverse this result pointer, or any function for result tables,
* such as <b>mysql_fetch_array</b>.
* @deprecated 5.2
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_list_tables ($database, $link_identifier = null) {}
@ -268,8 +250,6 @@ function mysql_list_tables ($database, $link_identifier = null) {}
* <b>mysql_field_len</b>,
* <b>mysql_field_name</b>&listendand;
* <b>mysql_field_type</b>.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_list_fields ($database_name, $table_name, $link_identifier = null) {}
@ -280,8 +260,6 @@ function mysql_list_fields ($database_name, $table_name, $link_identifier = null
* @link https://php.net/manual/en/function.mysql-list-processes.php
* @param resource $link_identifier [optional]
* @return resource|false A result pointer resource on success or false on failure.
* @since 4.3
* @since 5.0
* @removed 7.0
*/
function mysql_list_processes ($link_identifier = null) {}
@ -293,8 +271,6 @@ function mysql_list_processes ($link_identifier = null) {}
* @param resource $link_identifier [optional]
* @return string the error text from the last MySQL function, or
* '' (empty string) if no error occurred.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_error ($link_identifier = null) {}
@ -306,8 +282,6 @@ function mysql_error ($link_identifier = null) {}
* @param resource $link_identifier [optional]
* @return int the error number from the last MySQL function, or
* 0 (zero) if no error occurred.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_errno ($link_identifier = null) {}
@ -336,8 +310,6 @@ function mysql_errno ($link_identifier = null) {}
* The REPLACE statement first deletes the record with the same primary key
* and then inserts the new record. This function returns the number of
* deleted records plus the number of inserted records.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_affected_rows ($link_identifier = null) {}
@ -351,8 +323,6 @@ function mysql_affected_rows ($link_identifier = null) {}
* query on success, 0 if the previous
* query does not generate an AUTO_INCREMENT value, or false if
* no MySQL connection was established.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_insert_id ($link_identifier = null) {}
@ -377,8 +347,6 @@ function mysql_insert_id ($link_identifier = null) {}
* </p>
* @return string The contents of one cell from a MySQL result set on success, or
* false on failure.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_result ($result, $row, $field = 0) {}
@ -388,8 +356,6 @@ function mysql_result ($result, $row, $field = 0) {}
* @link https://php.net/manual/en/function.mysql-num-rows.php
* @param resource $result <p>The result resource that is being evaluated. This result comes from a call to mysql_query().</p>
* @return int|false <p>The number of rows in the result set on success or FALSE on failure. </p>
* @since 4.0
* @since 5.0
* @deprecated 5.5
* @removed 7.0
*/
@ -402,8 +368,6 @@ function mysql_num_rows ($result) {}
* @param resource $result
* @return int the number of fields in the result set resource on
* success or false on failure.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_num_fields ($result) {}
@ -421,8 +385,6 @@ function mysql_num_fields ($result) {}
* the result associated with the specified result identifier. The
* row is returned as an array. Each result column is stored in an
* array offset, starting at offset 0.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_fetch_row ($result) {}
@ -453,8 +415,6 @@ function mysql_fetch_row ($result) {}
* of the same name, you must use the numeric index of the column or
* make an alias for the column. For aliased columns, you cannot
* access the contents with the original column name.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_fetch_array ($result, $result_type = MYSQL_BOTH) {}
@ -475,8 +435,6 @@ function mysql_fetch_array ($result, $result_type = MYSQL_BOTH) {}
* <b>mysql_fetch_row</b> or add alias names.
* See the example at the <b>mysql_fetch_array</b>
* description about aliases.
* @since 4.0.3
* @since 5.0
* @removed 7.0
*/
function mysql_fetch_assoc ($result) {}
@ -502,8 +460,6 @@ function mysql_fetch_assoc ($result) {}
* the result associated with the specified result identifier. The
* row is returned as an array. Each result column is stored in an
* array offset, starting at offset 0.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_fetch_object ($result, $class_name = 'stdClass', array $params = null ) {}
@ -517,8 +473,6 @@ function mysql_fetch_object ($result, $class_name = 'stdClass', array $params =
* The desired row number of the new result pointer.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_data_seek ($result, $row_number) {}
@ -529,8 +483,6 @@ function mysql_data_seek ($result, $row_number) {}
* @link https://php.net/manual/en/function.mysql-fetch-lengths.php
* @param resource $result
* @return array|false An array of lengths on success or false on failure.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_fetch_lengths ($result) {}
@ -562,8 +514,6 @@ function mysql_fetch_lengths ($result) {}
* type - the type of the column
* unsigned - 1 if the column is unsigned
* zerofill - 1 if the column is zero-filled
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_fetch_field ($result, $field_offset = 0) {}
@ -575,8 +525,6 @@ function mysql_fetch_field ($result, $field_offset = 0) {}
* @param resource $result
* @param int $field_offset
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_field_seek ($result, $field_offset) {}
@ -593,8 +541,6 @@ function mysql_field_seek ($result, $field_offset) {}
* error of level E_WARNING will be emitted. It's worth noting that
* mysql_query only returns a resource
* for SELECT, SHOW, EXPLAIN, and DESCRIBE queries.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_free_result ($result) {}
@ -606,8 +552,6 @@ function mysql_free_result ($result) {}
* @param resource $result
* @param int $field_offset
* @return string|false The name of the specified field index on success or false on failure.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_field_name ($result, $field_offset) {}
@ -619,8 +563,6 @@ function mysql_field_name ($result, $field_offset) {}
* @param resource $result
* @param int $field_offset
* @return string The name of the table on success.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_field_table ($result, $field_offset) {}
@ -632,8 +574,6 @@ function mysql_field_table ($result, $field_offset) {}
* @param resource $result
* @param int $field_offset
* @return int|false The length of the specified field index on success or false on failure.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_field_len ($result, $field_offset) {}
@ -649,8 +589,6 @@ function mysql_field_len ($result, $field_offset) {}
* "string", "blob", and others as
* detailed in the MySQL
* documentation.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_field_type ($result, $field_offset) {}
@ -671,8 +609,6 @@ function mysql_field_type ($result, $field_offset) {}
* "unsigned", "zerofill",
* "binary", "enum",
* "auto_increment" and "timestamp".
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_field_flags ($result, $field_offset) {}
@ -685,8 +621,6 @@ function mysql_field_flags ($result, $field_offset) {}
* The string that is to be escaped.
* </p>
* @return string the escaped string.
* @since 4.0.3
* @since 5.0
* @removed 7.0
*/
function mysql_escape_string ($unescaped_string) {}
@ -700,8 +634,6 @@ function mysql_escape_string ($unescaped_string) {}
* </p>
* @param resource $link_identifier [optional]
* @return string|false the escaped string, or false on error.
* @since 4.3
* @since 5.0
* @removed 7.0
*/
function mysql_real_escape_string ($unescaped_string, $link_identifier = null) {}
@ -715,8 +647,6 @@ function mysql_real_escape_string ($unescaped_string, $link_identifier = null) {
* flush tables and queries per second. For a complete list of other status
* variables, you have to use the SHOW STATUS SQL command.
* If <i>link_identifier</i> is invalid, null is returned.
* @since 4.3
* @since 5.0
* @removed 7.0
*/
function mysql_stat ($link_identifier = null) {}
@ -727,8 +657,6 @@ function mysql_stat ($link_identifier = null) {}
* @link https://php.net/manual/en/function.mysql-thread-id.php
* @param resource $link_identifier [optional]
* @return int|false The thread ID on success or false on failure.
* @since 4.3
* @since 5.0
* @removed 7.0
*/
function mysql_thread_id ($link_identifier = null) {}
@ -739,8 +667,6 @@ function mysql_thread_id ($link_identifier = null) {}
* @link https://php.net/manual/en/function.mysql-client-encoding.php
* @param resource $link_identifier [optional]
* @return string the default character set name for the current connection.
* @since 4.3
* @since 5.0
* @removed 7.0
*/
function mysql_client_encoding ($link_identifier = null) {}
@ -752,8 +678,6 @@ function mysql_client_encoding ($link_identifier = null) {}
* @param resource $link_identifier [optional]
* @return bool true if the connection to the server MySQL server is working,
* otherwise false.
* @since 4.3
* @since 5.0
* @removed 7.0
*/
function mysql_ping ($link_identifier = null) {}
@ -763,8 +687,6 @@ function mysql_ping ($link_identifier = null) {}
* Get MySQL client info
* @link https://php.net/manual/en/function.mysql-get-client-info.php
* @return string The MySQL client version.
* @since 4.0.5
* @since 5.0
* @removed 7.0
*/
function mysql_get_client_info () {}
@ -776,8 +698,6 @@ function mysql_get_client_info () {}
* @param resource $link_identifier [optional]
* @return string a string describing the type of MySQL connection in use for the
* connection or false on failure.
* @since 4.0.5
* @since 5.0
* @removed 7.0
*/
function mysql_get_host_info ($link_identifier = null) {}
@ -788,8 +708,6 @@ function mysql_get_host_info ($link_identifier = null) {}
* @link https://php.net/manual/en/function.mysql-get-proto-info.php
* @param resource $link_identifier [optional]
* @return int|false the MySQL protocol on success or false on failure.
* @since 4.0.5
* @since 5.0
* @removed 7.0
*/
function mysql_get_proto_info ($link_identifier = null) {}
@ -800,8 +718,6 @@ function mysql_get_proto_info ($link_identifier = null) {}
* @link https://php.net/manual/en/function.mysql-get-server-info.php
* @param resource $link_identifier [optional]
* @return string|false the MySQL server version on success or false on failure.
* @since 4.0.5
* @since 5.0
* @removed 7.0
*/
function mysql_get_server_info ($link_identifier = null) {}
@ -815,8 +731,6 @@ function mysql_get_server_info ($link_identifier = null) {}
* failure. See the example below for which statements provide information,
* and what the returned value may look like. Statements that are not listed
* will return false.
* @since 4.3
* @since 5.0
* @removed 7.0
*/
function mysql_info ($link_identifier = null) {}
@ -957,8 +871,6 @@ function mysql_listfields ($database_name, $table_name, $link_identifier) {}
* @return string|false the database name on success, and false on failure. If false
* is returned, use <b>mysql_error</b> to determine the nature
* of the error.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_db_name ($result, $row, $field = null) {}
@ -989,8 +901,6 @@ function mysql_dbname ($result, $row, $field) {}
* Use the <b>mysql_tablename</b> function to
* traverse this result pointer, or any function for result tables,
* such as <b>mysql_fetch_array</b>.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function mysql_tablename ($result, $i) {}

View File

@ -260,7 +260,6 @@ class mysqli {
* <p>Internal character set number</p>
* <i>state</i>
* <p>Character set status (?)</p>
* @since 5.1
*/
public function get_charset () {}
@ -275,7 +274,6 @@ class mysqli {
* Returns statistics about the client connection
* @link https://php.net/manual/en/mysqli.get-connection-stats.php
* @return array|false an array with connection stats if success, false otherwise.
* @since 5.3
*/
public function get_connection_stats () {}
@ -290,7 +288,6 @@ class mysqli {
* Get result of SHOW WARNINGS
* @link https://php.net/manual/en/mysqli.get-warnings.php
* @return mysqli_warning
* @since 5.1
*/
public function get_warnings () {}
@ -584,7 +581,6 @@ class mysqli {
* Number of microseconds to wait, must be non-negative.
* </p>
* @return int|false number of ready connections in success, false otherwise.
* @since 5.3
*/
public static function poll (array &$read , array &$error , array &$reject , $sec, $usec = null) {}
@ -592,7 +588,6 @@ class mysqli {
* Get result from async query
* @link https://php.net/manual/en/mysqli.reap-async-query.php
* @return mysqli_result|false mysqli_result in success, false otherwise.
* @since 5.3
*/
public function reap_async_query () {}
@ -1049,7 +1044,6 @@ class mysqli_result implements Traversable {
* MYSQLI_NUM, or MYSQLI_BOTH.
* </p>
* @return mixed an array of associative or numeric arrays holding result rows.
* @since 5.3
*/
public function fetch_all ($resulttype = null) {}
@ -1335,7 +1329,6 @@ class mysqli_stmt {
* Get result of SHOW WARNINGS
* @link https://php.net/manual/en/mysqli-stmt.get-warnings.php
* @return object
* @since 5.1
*/
public function get_warnings () {}
@ -1758,7 +1751,6 @@ function mysqli_free_result ($result) {}
/**
* Returns client Zval cache statistics
* @since 5.3
* Available only with mysqlnd.
* @link https://php.net/manual/en/mysqli.get-cache-stats.php
* @param mysqli $link A link identifier returned by mysqli_connect() or mysqli_init()
@ -1776,7 +1768,6 @@ function mysqli_get_connection_stats ($link) {}
/**
* Returns client per-process statistics
* @since 5.3
* @link https://php.net/manual/en/mysqli.get-client-stats.php
* @return array|false an array with client stats if success, false otherwise.
*/

View File

@ -19,8 +19,6 @@
* <p>
* If <i>OnOff</i> is set, this function returns <b>TRUE</b> on
* success and <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function odbc_autocommit ($connection_id, $OnOff = false) {}
@ -42,8 +40,6 @@ function odbc_autocommit ($connection_id, $OnOff = false) {}
* Possible values for <i>mode</i> are:
* <b>ODBC_BINMODE_PASSTHRU</b>: Passthru BINARY data
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function odbc_binmode ($result_id, $mode) {}
@ -53,8 +49,6 @@ function odbc_binmode ($result_id, $mode) {}
* @param resource $connection_id The ODBC connection identifier,
* see <b>odbc_connect</b> for details.</p>
* @return void No value is returned.
* @since 4.0
* @since 5.0
*/
function odbc_close ($connection_id) {}
@ -62,8 +56,6 @@ function odbc_close ($connection_id) {}
* Close all ODBC connections
* @link https://php.net/manual/en/function.odbc-close-all.php
* @return void No value is returned.
* @since 4.0
* @since 5.0
*/
function odbc_close_all () {}
@ -104,8 +96,6 @@ function odbc_close_all () {}
* <p>
* The result set is ordered by TABLE_QUALIFIER, TABLE_SCHEM and
* TABLE_NAME.
* @since 4.0
* @since 5.0
*/
function odbc_columns ($connection_id, $qualifier = null, $schema = null, $table_name = null, $column_name = null) {}
@ -115,8 +105,6 @@ function odbc_columns ($connection_id, $qualifier = null, $schema = null, $table
* @param resource $connection_id The ODBC connection identifier,
* see <b>odbc_connect</b> for details.</p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function odbc_commit ($connection_id) {}
@ -142,8 +130,6 @@ function odbc_commit ($connection_id) {}
* <p>
* SQL_CUR_USE_IF_NEEDED
* @return resource|false an ODBC connection or (<b>FALSE</b>) on error.
* @since 4.0
* @since 5.0
*/
function odbc_connect ($dsn, $user, $password, $cursor_type = null) {}
@ -154,8 +140,6 @@ function odbc_connect ($dsn, $user, $password, $cursor_type = null) {}
* The result identifier.
* </p>
* @return string the cursor name, as a string.
* @since 4.0
* @since 5.0
*/
function odbc_cursor ($result_id) {}
@ -171,8 +155,6 @@ function odbc_cursor ($result_id) {}
* called, thereafter use the <b>SQL_FETCH_NEXT</b>.
* </p>
* @return array|false <b>FALSE</b> on error, and an array upon success.
* @since 4.3
* @since 5.0
*/
function odbc_data_source ($connection_id, $fetch_type) {}
@ -201,8 +183,6 @@ function odbc_data_source ($connection_id, $fetch_type) {}
* then you must use another mechanism to store the string, such as
* executing the query directly with <b>odbc_exec</b>).
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function odbc_execute ($result_id, array $parameters_array = null) {}
@ -218,8 +198,6 @@ function odbc_execute ($result_id, array $parameters_array = null) {}
* <p>
* This function returns meaningful value only if last odbc query failed
* (i.e. <b>odbc_exec</b> returned <b>FALSE</b>).
* @since 4.0.5
* @since 5.0
*/
function odbc_error ($connection_id = null) {}
@ -235,8 +213,6 @@ function odbc_error ($connection_id = null) {}
* <p>
* This function returns meaningful value only if last odbc query failed
* (i.e. <b>odbc_exec</b> returned <b>FALSE</b>).
* @since 4.0.5
* @since 5.0
*/
function odbc_errormsg ($connection_id = null) {}
@ -253,8 +229,6 @@ function odbc_errormsg ($connection_id = null) {}
* </p>
* @return resource an ODBC result identifier if the SQL command was executed
* successfully, or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function odbc_exec ($connection_id, $query_string, $flags = null) {}
@ -269,8 +243,6 @@ function odbc_exec ($connection_id, $query_string, $flags = null) {}
* </p>
* @return array|false an array that corresponds to the fetched row, or <b>FALSE</b> if there
* are no more rows.
* @since 4.0.2
* @since 5.0
*/
function odbc_fetch_array ($result, $rownumber = null) {}
@ -285,8 +257,6 @@ function odbc_fetch_array ($result, $rownumber = null) {}
* </p>
* @return object|false an object that corresponds to the fetched row, or <b>FALSE</b> if there
* are no more rows.
* @since 4.0.2
* @since 5.0
*/
function odbc_fetch_object ($result, $rownumber = null) {}
@ -312,8 +282,6 @@ function odbc_fetch_object ($result, $rownumber = null) {}
* <i>row_number</i> parameter is ignored.
* </p>
* @return bool <b>TRUE</b> if there was a row, <b>FALSE</b> otherwise.
* @since 4.0
* @since 5.0
*/
function odbc_fetch_row ($result_id, $row_number = null) {}
@ -334,8 +302,6 @@ function odbc_fetch_row ($result_id, $row_number = null) {}
* </p>
* @return int the number of columns in the result;
* <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function odbc_fetch_into ($result_id, array &$result_array, $rownumber = null) {}
@ -349,8 +315,6 @@ function odbc_fetch_into ($result_id, array &$result_array, $rownumber = null) {
* The field number. Field numbering starts at 1.
* </p>
* @return int|false the field name as a string, or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function odbc_field_len ($result_id, $field_number) {}
@ -364,8 +328,6 @@ function odbc_field_len ($result_id, $field_number) {}
* The field number. Field numbering starts at 1.
* </p>
* @return int|false the field scale as a integer, or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function odbc_field_scale ($result_id, $field_number) {}
@ -379,8 +341,6 @@ function odbc_field_scale ($result_id, $field_number) {}
* The field number. Field numbering starts at 1.
* </p>
* @return string|false the field name as a string, or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function odbc_field_name ($result_id, $field_number) {}
@ -394,8 +354,6 @@ function odbc_field_name ($result_id, $field_number) {}
* The field number. Field numbering starts at 1.
* </p>
* @return string|false the field type as a string, or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function odbc_field_type ($result_id, $field_number) {}
@ -410,8 +368,6 @@ function odbc_field_type ($result_id, $field_number) {}
* </p>
* @return int|false the field number as a integer, or <b>FALSE</b> on error.
* Field numbering starts at 1.
* @since 4.0
* @since 5.0
*/
function odbc_field_num ($result_id, $field_name) {}
@ -422,8 +378,6 @@ function odbc_field_num ($result_id, $field_name) {}
* The result identifier.
* </p>
* @return bool Always returns <b>TRUE</b>.
* @since 4.0
* @since 5.0
*/
function odbc_free_result ($result_id) {}
@ -459,8 +413,6 @@ function odbc_free_result ($result_id) {}
* </p>
* <p>
* The result set is ordered by DATA_TYPE and TYPE_NAME.
* @since 4.0
* @since 5.0
*/
function odbc_gettypeinfo ($connection_id, $data_type = null) {}
@ -476,8 +428,6 @@ function odbc_gettypeinfo ($connection_id, $data_type = null) {}
* client.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function odbc_longreadlen ($result_id, $length) {}
@ -488,8 +438,6 @@ function odbc_longreadlen ($result_id, $length) {}
* The result identifier.
* </p>
* @return bool <b>TRUE</b> if there are more result sets, <b>FALSE</b> otherwise.
* @since 4.0.5
* @since 5.0
*/
function odbc_next_result ($result_id) {}
@ -500,8 +448,6 @@ function odbc_next_result ($result_id) {}
* The result identifier returned by <b>odbc_exec</b>.
* </p>
* @return int the number of fields, or -1 on error.
* @since 4.0
* @since 5.0
*/
function odbc_num_fields ($result_id) {}
@ -513,8 +459,6 @@ function odbc_num_fields ($result_id) {}
* </p>
* @return int the number of rows in an ODBC result.
* This function will return -1 on error.
* @since 4.0
* @since 5.0
*/
function odbc_num_rows ($result_id) {}
@ -527,8 +471,6 @@ function odbc_num_rows ($result_id) {}
* @param int $cursor_type [optional]
* @return resource|false an ODBC connection id or 0 (<b>FALSE</b>) on
* error.
* @since 4.0
* @since 5.0
*/
function odbc_pconnect ($dsn, $user, $password, $cursor_type = null) {}
@ -542,8 +484,6 @@ function odbc_pconnect ($dsn, $user, $password, $cursor_type = null) {}
* </p>
* @return resource|false an ODBC result identifier if the SQL command was prepared
* successfully. Returns <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function odbc_prepare ($connection_id, $query_string) {}
@ -560,8 +500,6 @@ function odbc_prepare ($connection_id, $query_string) {}
* </p>
* @return mixed the string contents of the field, <b>FALSE</b> on error, <b>NULL</b> for
* NULL data, or <b>TRUE</b> for binary data.
* @since 4.0
* @since 5.0
*/
function odbc_result ($result_id, $field) {}
@ -575,8 +513,6 @@ function odbc_result ($result_id, $field) {}
* Additional overall table formatting.
* </p>
* @return int|false the number of rows in the result or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function odbc_result_all ($result_id, $format = null) {}
@ -586,8 +522,6 @@ function odbc_result_all ($result_id, $format = null) {}
* @param resource $connection_id The ODBC connection identifier,
* see <b>odbc_connect</b> for details.</p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function odbc_rollback ($connection_id) {}
@ -611,8 +545,6 @@ function odbc_rollback ($connection_id) {}
* The value for the given <i>option</i>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function odbc_setoption ($id, $function, $option, $param) {}
@ -656,8 +588,6 @@ function odbc_setoption ($id, $function, $option, $param) {}
* LENGTH
* SCALE
* PSEUDO_COLUMN
* @since 4.0
* @since 5.0
*/
function odbc_specialcolumns ($connection_id, $type, $qualifier, $owner, $table, $scope, $nullable) {}
@ -698,8 +628,6 @@ function odbc_specialcolumns ($connection_id, $type, $qualifier, $owner, $table,
* CARDINALITY
* PAGES
* FILTER_CONDITION
* @since 4.0
* @since 5.0
*/
function odbc_statistics ($connection_id, $qualifier, $owner, $table_name, $unique, $accuracy) {}
@ -738,8 +666,6 @@ function odbc_statistics ($connection_id, $qualifier, $owner, $table_name, $uniq
* TABLE_NAME
* TABLE_TYPE
* REMARKS
* @since 4.0
* @since 5.0
*/
function odbc_tables ($connection_id, $qualifier = null, $owner = null, $name = null, $types = null) {}
@ -761,8 +687,6 @@ function odbc_tables ($connection_id, $qualifier = null, $owner = null, $name =
* COLUMN_NAME
* KEY_SEQ
* PK_NAME
* @since 4.0
* @since 5.0
*/
function odbc_primarykeys ($connection_id, $qualifier, $owner, $table) {}
@ -802,8 +726,6 @@ function odbc_primarykeys ($connection_id, $qualifier, $owner, $table) {}
* <p>
* The result set is ordered by TABLE_QUALIFIER, TABLE_OWNER and
* TABLE_NAME.
* @since 4.0
* @since 5.0
*/
function odbc_columnprivileges ($connection_id, $qualifier, $owner, $table_name, $column_name) {}
@ -834,8 +756,6 @@ function odbc_columnprivileges ($connection_id, $qualifier, $owner, $table_name,
* GRANTEE
* PRIVILEGE
* IS_GRANTABLE
* @since 4.0
* @since 5.0
*/
function odbc_tableprivileges ($connection_id, $qualifier, $owner, $name) {}
@ -894,8 +814,6 @@ function odbc_tableprivileges ($connection_id, $qualifier, $owner, $name) {}
* the table specified in <i>fk_table</i> that refer
* to the primary key of the table specified in
* <i>pk_table
* @since 4.0
* @since 5.0
*/
function odbc_foreignkeys ($connection_id, $pk_qualifier, $pk_owner, $pk_table, $fk_qualifier, $fk_owner, $fk_table) {}
@ -917,8 +835,6 @@ function odbc_foreignkeys ($connection_id, $pk_qualifier, $pk_owner, $pk_table,
* NUM_RESULT_SETS
* REMARKS
* PROCEDURE_TYPE
* @since 4.0
* @since 5.0
*/
function odbc_procedures ($connection_id) {}
@ -946,8 +862,6 @@ function odbc_procedures ($connection_id) {}
* RADIX
* NULLABLE
* REMARKS
* @since 4.0
* @since 5.0
*/
function odbc_procedurecolumns ($connection_id) {}
@ -957,8 +871,6 @@ function odbc_procedurecolumns ($connection_id) {}
* @param $connection_id
* @param $query
* @param $flags [optional]
* @since 4.0
* @since 5.0
*/
function odbc_do ($connection_id, $query, $flags) {}
@ -967,8 +879,6 @@ function odbc_do ($connection_id, $query, $flags) {}
* @link https://php.net/manual/en/function.odbc-field-precision.php
* @param $result_id
* @param $field_number
* @since 4.0
* @since 5.0
*/
function odbc_field_precision ($result_id, $field_number) {}

View File

@ -9,8 +9,6 @@
* Resource holding the key.
* </p>
* @return void
* @since 4.2
* @since 5.0
*/
function openssl_pkey_free($key) { }
@ -25,8 +23,6 @@ function openssl_pkey_free($key) { }
* </p>
* @return resource|false a resource identifier for the pkey on success, or false on
* error.
* @since 4.2
* @since 5.0
*/
function openssl_pkey_new(array $configargs = null) { }
@ -45,8 +41,6 @@ function openssl_pkey_new(array $configargs = null) { }
* information about <i>configargs</i>.
* </p>
* @return bool true on success or false on failure.
* @since 4.2
* @since 5.0
*/
function openssl_pkey_export($key, &$out, $passphrase = null, array $configargs = null) { }
@ -68,8 +62,6 @@ function openssl_pkey_export($key, &$out, $passphrase = null, array $configargs
* information about <i>configargs</i>.
* </p>
* @return bool true on success or false on failure.
* @since 4.2
* @since 5.0
*/
function openssl_pkey_export_to_file($key, $outfilename, $passphrase = null, array $configargs = null) { }
@ -91,8 +83,6 @@ function openssl_pkey_export_to_file($key, $outfilename, $passphrase = null, arr
* if the specified key is encrypted (protected by a passphrase).
* </p>
* @return resource|false Returns a positive key resource identifier on success, or <b>FALSE</b> on error.
* @since 4.2
* @since 5.0
*/
function openssl_pkey_get_private($key, $passphrase = "") { }
@ -110,8 +100,6 @@ function openssl_pkey_get_private($key, $passphrase = "") { }
* <li>A PEM formatted public key.</li>
* </ol></p>
* @return resource|false a positive key resource identifier on success, or false on error.
* @since 4.2
* @since 5.0
*/
function openssl_pkey_get_public($certificate) { }
@ -133,7 +121,6 @@ function openssl_pkey_get_public($certificate) { }
* <p>
* Depending on the key type used, additional details may be returned. Note that
* some elements may not always be available.
* @since 5.2
*/
function openssl_pkey_get_details($key) { }
@ -142,8 +129,6 @@ function openssl_pkey_get_details($key) { }
* @link https://php.net/manual/en/function.openssl-free-key.php
* @param resource $key_identifier
* @return void
* @since 4.0.4
* @since 5.0
*/
function openssl_free_key($key_identifier) { }
@ -165,8 +150,6 @@ function openssl_free_key($key_identifier) { }
* if the specified key is encrypted (protected by a passphrase).
* </p>
* @return resource|false Returns a positive key resource identifier on success, or <b>FALSE</b> on error.
* @since 4.0.4
* @since 5.0
*/
function openssl_get_privatekey($key, $passphrase) { }
@ -185,8 +168,6 @@ function openssl_get_privatekey($key, $passphrase) { }
* <li>A PEM formatted public key.</li>
* </ol> </p>
* @return resource|false a positive key resource identifier on success, or FALSE on error.
* @since 4.0.4
* @since 5.0
*/
function openssl_get_publickey($certificate) { }
@ -236,9 +217,7 @@ function openssl_spki_export_challenge (&$spkac ) {}
function openssl_spki_export (&$spkac ) {}
/**
* Parse an X.509 certificate and return a resource identifier for
* @since 4.0.6
* @since 5.0
it
* it
* @link https://php.net/manual/en/function.openssl-x509-read.php
* @param mixed $x509certdata
* @return resource|false a resource identifier on success or false on failure.
@ -258,8 +237,6 @@ function openssl_x509_fingerprint($x509, $type, $binary) {}
* @link https://php.net/manual/en/function.openssl-x509-free.php
* @param resource $x509cert
* @return void
* @since 4.0.6
* @since 5.0
*/
function openssl_x509_free($x509cert) { }
@ -275,8 +252,6 @@ function openssl_x509_free($x509cert) { }
* </p>
* @return array|false The structure of the returned data is (deliberately) not
* yet documented, as it is still subject to change.
* @since 4.0.6
* @since 5.0
*/
function openssl_x509_parse($x509cert, $shortnames = true) { }
@ -339,8 +314,6 @@ function openssl_x509_parse($x509cert, $shortnames = true) { }
* </p>
* @return int|bool true if the certificate can be used for the intended purpose,
* false if it cannot, or -1 on error.
* @since 4.0.6
* @since 5.0
*/
function openssl_x509_checkpurpose($x509cert, $purpose, array $cainfo = null, $untrustedfile = null) { }
@ -355,8 +328,6 @@ function openssl_x509_checkpurpose($x509cert, $purpose, array $cainfo = null, $u
* </p>
* @return bool true if <i>key</i> is the private key that
* corresponds to <i>cert</i>, or false otherwise.
* @since 4.2
* @since 5.0
*/
function openssl_x509_check_private_key($cert, $key) { }
@ -369,8 +340,6 @@ function openssl_x509_check_private_key($cert, $key) { }
* </p>
* @param bool $notext [optional] &note.openssl.param-notext;
* @return bool true on success or false on failure.
* @since 4.2
* @since 5.0
*/
function openssl_x509_export($x509, &$output, $notext = true) { }
@ -383,8 +352,6 @@ function openssl_x509_export($x509, &$output, $notext = true) { }
* </p>
* @param bool $notext [optional] &note.openssl.param-notext;
* @return bool true on success or false on failure.
* @since 4.2
* @since 5.0
*/
function openssl_x509_export_to_file($x509, $outfilename, $notext = true) { }
@ -538,8 +505,6 @@ function openssl_pkcs12_read($pkcs12, array &$certs, $pass) { }
* converted to OIDs and applied to the relevant part of the request.
* </p>
* @return false|resource the CSR.
* @since 4.2
* @since 5.0
*/
function openssl_csr_new(array $dn, &$privkey, array $configargs = null, array $extraattribs = null) { }
@ -550,8 +515,6 @@ function openssl_csr_new(array $dn, &$privkey, array $configargs = null, array $
* @param string $out
* @param bool $notext [optional] &note.openssl.param-notext;
* @return bool true on success or false on failure.
* @since 4.2
* @since 5.0
*/
function openssl_csr_export($csr, &$out, $notext = true) { }
@ -564,8 +527,6 @@ function openssl_csr_export($csr, &$out, $notext = true) { }
* </p>
* @param bool $notext [optional] &note.openssl.param-notext;
* @return bool true on success or false on failure.
* @since 4.2
* @since 5.0
*/
function openssl_csr_export_to_file($csr, $outfilename, $notext = true) { }
@ -601,8 +562,6 @@ function openssl_csr_export_to_file($csr, $outfilename, $notext = true) { }
* it will default to 0.
* </p>
* @return resource|false an x509 certificate resource on success, false on failure.
* @since 4.2
* @since 5.0
*/
function openssl_csr_sign($csr, $cacert, $priv_key, $days, array $configargs = null, $serial = 0) { }
@ -612,7 +571,6 @@ function openssl_csr_sign($csr, $cacert, $priv_key, $days, array $configargs = n
* @param mixed $csr
* @param bool $use_shortnames [optional]
* @return array|false
* @since 5.2
*/
function openssl_csr_get_subject($csr, $use_shortnames = true) { }
@ -622,7 +580,6 @@ function openssl_csr_get_subject($csr, $use_shortnames = true) { }
* @param mixed $csr
* @param bool $use_shortnames [optional]
* @return resource|false
* @since 5.2
*/
function openssl_csr_get_public_key($csr, $use_shortnames = true) { }
@ -640,7 +597,6 @@ function openssl_csr_get_public_key($csr, $use_shortnames = true) { }
* value is binhex encoded.
* </p>
* @return string|false the digested hash value on success or false on failure.
* @since 5.3
*/
function openssl_digest($data, $method, $raw_output = false) { }
@ -668,7 +624,6 @@ function openssl_digest($data, $method, $raw_output = false) { }
* The length of the authentication tag. Its value can be between 4 and 16 for GCM mode.
* </p>
* @return string|false the encrypted string on success or false on failure.
* @since 5.3
*/
function openssl_encrypt($data, $method, $key, $options = 0, $iv = "", &$tag = NULL, $aad = "", $tag_length = 16) { }
@ -697,7 +652,6 @@ function openssl_encrypt($data, $method, $key, $options = 0, $iv = "", &$tag = N
* </p>
* @param string $aad [optional] <p>Additional authentication data.</p>
* @return string|false The decrypted string on success or false on failure.
* @since 5.3
*/
function openssl_decrypt($data, $method, $password, $options = 1, $iv = "", $tag = "", $aad = "") { }
@ -725,8 +679,6 @@ function openssl_cipher_iv_length($method) { }
* For more information see the list of Signature Algorithms.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.4
* @since 5.0
*/
function openssl_sign($data, &$signature, $priv_key_id, $signature_alg = OPENSSL_ALGO_SHA1) { }
@ -741,8 +693,6 @@ function openssl_sign($data, &$signature, $priv_key_id, $signature_alg = OPENSSL
* </p>
* @return int 1 if the signature is correct, 0 if it is incorrect, and
* -1 on error.
* @since 4.0.4
* @since 5.0
*/
function openssl_verify($data, $signature, $pub_key_id, $signature_alg = OPENSSL_ALGO_SHA1) { }
@ -759,8 +709,6 @@ function openssl_verify($data, $signature, $pub_key_id, $signature_alg = OPENSSL
* If successful the sealed data is returned in
* <i>sealed_data</i>, and the envelope keys in
* <i>env_keys</i>.
* @since 4.0.4
* @since 5.0
*/
function openssl_seal($data, &$sealed_data, array &$env_keys, array $pub_key_ids, $method = null, $iv = '') { }
@ -777,8 +725,6 @@ function openssl_seal($data, &$sealed_data, array &$env_keys, array $pub_key_ids
* @param string $method [optional] The cipher method.
* @param string $iv [optional] The initialization vector.
* @return bool true on success or false on failure.
* @since 4.0.4
* @since 5.0
*/
function openssl_open($sealed_data, &$open_data, $env_key, $priv_key_id, $method = "RC4", string $iv) { }
@ -830,8 +776,6 @@ function openssl_pbkdf2($password, $salt, $key_length, $iterations, $digest_algo
* @return bool|int true if the signature is verified, false if it is not correct
* (the message has been tampered with, or the signing certificate is invalid),
* or -1 on error.
* @since 4.0.6
* @since 5.0
*/
function openssl_pkcs7_verify($filename, $flags, $outfilename = null, array $cainfo = null, $extracerts = null, $content = null, $pk7 = null) { }
@ -846,8 +790,6 @@ function openssl_pkcs7_verify($filename, $flags, $outfilename = null, array $cai
* @param mixed $recipcert
* @param mixed $recipkey [optional]
* @return bool true on success or false on failure.
* @since 4.0.6
* @since 5.0
*/
function openssl_pkcs7_decrypt($infilename, $outfilename, $recipcert, $recipkey = null) { }
@ -873,8 +815,6 @@ function openssl_pkcs7_decrypt($infilename, $outfilename, $recipcert, $recipkey
* example be used to help the recipient to verify the certificate that you used.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.6
* @since 5.0
*/
function openssl_pkcs7_sign($infilename, $outfilename, $signcert, $privkey, array $headers, $flags = PKCS7_DETACHED, $extracerts = null) { }
@ -904,8 +844,6 @@ function openssl_pkcs7_sign($infilename, $outfilename, $signcert, $privkey, arra
* One of cipher constants.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.6
* @since 5.0
*/
function openssl_pkcs7_encrypt($infile, $outfile, $recipcerts, array $headers, $flags = 0, $cipherid = OPENSSL_CIPHER_RC2_40) { }
@ -921,8 +859,6 @@ function openssl_pkcs7_encrypt($infile, $outfile, $recipcerts, array $headers, $
* <b>OPENSSL_NO_PADDING</b>.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.6
* @since 5.0
*/
function openssl_private_encrypt($data, &$crypted, $key, $padding = OPENSSL_PKCS1_PADDING) { }
@ -943,8 +879,6 @@ function openssl_private_encrypt($data, &$crypted, $key, $padding = OPENSSL_PKCS
* <b>OPENSSL_NO_PADDING</b>.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.6
* @since 5.0
*/
function openssl_private_decrypt($data, &$decrypted, $key, $padding = OPENSSL_PKCS1_PADDING) { }
@ -966,8 +900,6 @@ function openssl_private_decrypt($data, &$decrypted, $key, $padding = OPENSSL_PK
* <b>OPENSSL_NO_PADDING</b>.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.6
* @since 5.0
*/
function openssl_public_encrypt($data, &$crypted, $key, $padding = OPENSSL_PKCS1_PADDING) { }
@ -986,8 +918,6 @@ function openssl_public_encrypt($data, &$crypted, $key, $padding = OPENSSL_PKCS1
* <b>OPENSSL_NO_PADDING</b>.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.6
* @since 5.0
*/
function openssl_public_decrypt($data, &$decrypted, $key, $padding = OPENSSL_PKCS1_PADDING) { }
@ -999,7 +929,6 @@ function openssl_public_decrypt($data, &$decrypted, $key, $padding = OPENSSL_PKC
* returned array.
* </p>
* @return array An array of available digest methods.
* @since 5.3
*/
function openssl_get_md_methods($aliases = false) { }
@ -1011,7 +940,6 @@ function openssl_get_md_methods($aliases = false) { }
* returned array.
* </p>
* @return array An array of available cipher methods.
* @since 5.3
*/
function openssl_get_cipher_methods($aliases = false) { }
@ -1052,7 +980,6 @@ function openssl_pkey_derive($peer_pub_key, $priv_key, $keylen) {}
* passwords, etc. true if it did, otherwise false
* </p>
* @return string|false the generated &string; of bytes on success, or false on failure.
* @since 5.3
*/
function openssl_random_pseudo_bytes($length, &$crypto_strong = null) { }
@ -1061,7 +988,6 @@ function openssl_random_pseudo_bytes($length, &$crypto_strong = null) { }
* @link https://php.net/manual/en/function.openssl-error-string.php
* @return string|false an error message string, or false if there are no more error
* messages to return.
* @since 4.0.6
*/
function openssl_error_string() { }

View File

@ -10,8 +10,6 @@
* thread of execution. On failure, a -1 will be returned in the
* parent's context, no child process will be created, and a PHP
* error is raised.
* @since 4.1
* @since 5.0
*/
function pcntl_fork () {}
@ -93,8 +91,6 @@ function pcntl_fork () {}
* @return int <b>pcntl_waitpid</b> returns the process ID of the
* child which exited, -1 on error or zero if <b>WNOHANG</b> was used and no
* child was available
* @since 4.1
* @since 5.0
*/
function pcntl_waitpid ($pid, &$status, $options = 0, array &$rusage) {}
@ -141,7 +137,6 @@ function pcntl_waitpid ($pid, &$status, $options = 0, array &$rusage) {}
* @return int <b>pcntl_wait</b> returns the process ID of the
* child which exited, -1 on error or zero if WNOHANG was provided as an
* option (on wait3-available systems) and no child was available.
* @since 5.0
*/
function pcntl_wait (&$status, $options = 0, &$rusage) {}
@ -172,8 +167,6 @@ function pcntl_wait (&$status, $options = 0, &$rusage) {}
* signal arrives.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.1
* @since 5.0
*/
function pcntl_signal ($signo, $handler, $restart_syscalls = true) {}
@ -181,7 +174,6 @@ function pcntl_signal ($signo, $handler, $restart_syscalls = true) {}
* Calls signal handlers for pending signals
* @link https://php.net/manual/en/function.pcntl-signal-dispatch.php
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.3
*/
function pcntl_signal_dispatch () {}
@ -193,8 +185,6 @@ function pcntl_signal_dispatch () {}
* call to <b>pcntl_waitpid</b>.</p>
* @return bool <b>TRUE</b> if the child status code represents a normal exit, <b>FALSE</b>
* otherwise.
* @since 4.1
* @since 5.0
*/
function pcntl_wifexited ($status) {}
@ -206,8 +196,6 @@ function pcntl_wifexited ($status) {}
* call to <b>pcntl_waitpid</b>.</p>
* @return bool <b>TRUE</b> if the child process which caused the return is
* currently stopped, <b>FALSE</b> otherwise.
* @since 4.1
* @since 5.0
*/
function pcntl_wifstopped ($status) {}
@ -219,8 +207,6 @@ function pcntl_wifstopped ($status) {}
* call to <b>pcntl_waitpid</b>.</p>
* @return bool <b>TRUE</b> if the child process exited because of a signal which was
* not caught, <b>FALSE</b> otherwise.
* @since 4.1
* @since 5.0
*/
function pcntl_wifsignaled ($status) {}
@ -231,8 +217,6 @@ function pcntl_wifsignaled ($status) {}
* parameter is the status parameter supplied to a successful
* call to <b>pcntl_waitpid</b>.</p>
* @return int the return code, as an integer.
* @since 4.1
* @since 5.0
*/
function pcntl_wexitstatus ($status) {}
@ -247,8 +231,6 @@ function pcntl_wifcontinued ( $status){}
* parameter is the status parameter supplied to a successful
* call to <b>pcntl_waitpid</b>.</p>
* @return int the signal number, as an integer.
* @since 4.1
* @since 5.0
*/
function pcntl_wtermsig ($status) {}
@ -259,8 +241,6 @@ function pcntl_wtermsig ($status) {}
* parameter is the status parameter supplied to a successful
* call to <b>pcntl_waitpid</b>.</p>
* @return int the signal number.
* @since 4.1
* @since 5.0
*/
function pcntl_wstopsig ($status) {}
@ -284,8 +264,6 @@ function pcntl_wstopsig ($status) {}
* the value of that variable.
* </p>
* @return void <b>FALSE</b> on error and does not return on success.
* @since 4.2
* @since 5.0
*/
function pcntl_exec ($path, array $args = null, array $envs = null) {}
@ -299,8 +277,6 @@ function pcntl_exec ($path, array $args = null, array $envs = null) {}
* @return int the time in seconds that any previously scheduled alarm had
* remaining before it was to be delivered, or 0 if there
* was no previously scheduled alarm.
* @since 4.3
* @since 5.0
*/
function pcntl_alarm ($seconds) {}
@ -342,7 +318,6 @@ function pcntl_strerror ($errno) {}
* @return int <b>pcntl_getpriority</b> returns the priority of the process
* or <b>FALSE</b> on error. A lower numerical value causes more favorable
* scheduling.
* @since 5.0
*/
function pcntl_getpriority ($pid, $process_identifier = PRIO_PROCESS) {}
@ -365,7 +340,6 @@ function pcntl_getpriority ($pid, $process_identifier = PRIO_PROCESS) {}
* or <b>PRIO_PROCESS</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.0
*/
function pcntl_setpriority ($priority, $pid, $process_identifier = PRIO_PROCESS) {}
@ -390,7 +364,6 @@ function pcntl_setpriority ($priority, $pid, $process_identifier = PRIO_PROCESS)
* containing the list of the previously blocked signals.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.3
*/
function pcntl_sigprocmask ($how, array $set, array &$oldset = null) {}
@ -431,7 +404,6 @@ function pcntl_sigprocmask ($how, array $set, array &$oldset = null) {}
* fd: File descriptor number
* </p>
* @return int On success, <b>pcntl_sigwaitinfo</b> returns a signal number.
* @since 5.3
*/
function pcntl_sigwaitinfo (array $set, array &$siginfo = null) {}
@ -453,7 +425,6 @@ function pcntl_sigwaitinfo (array $set, array &$siginfo = null) {}
* Timeout in nanoseconds.
* </p>
* @return int On success, <b>pcntl_sigtimedwait</b> returns a signal number.
* @since 5.3
*/
function pcntl_sigtimedwait (array $set, array &$siginfo = null, $seconds = 0, $nanoseconds = 0) {}
@ -537,284 +508,237 @@ define ('PRIO_PROCESS', 0);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('SIG_BLOCK', 0);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('SIG_UNBLOCK', 1);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('SIG_SETMASK', 2);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('SIGRTMIN', 34);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('SIGRTMAX', 64);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('SI_USER', 0);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('SI_KERNEL', 128);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('SI_QUEUE', -1);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('SI_TIMER', -2);
define ('SI_MESGQ', -3);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('SI_ASYNCIO', -4);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('SI_SIGIO', -5);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('SI_TKILL', -6);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('CLD_EXITED', 1);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('CLD_KILLED', 2);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('CLD_DUMPED', 3);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('CLD_TRAPPED', 4);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('CLD_STOPPED', 5);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('CLD_CONTINUED', 6);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('TRAP_BRKPT', 1);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('TRAP_TRACE', 2);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('POLL_IN', 1);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('POLL_OUT', 2);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('POLL_MSG', 3);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('POLL_ERR', 4);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('POLL_PRI', 5);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('POLL_HUP', 6);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('ILL_ILLOPC', 1);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('ILL_ILLOPN', 2);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('ILL_ILLADR', 3);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('ILL_ILLTRP', 4);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('ILL_PRVOPC', 5);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('ILL_PRVREG', 6);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('ILL_COPROC', 7);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('ILL_BADSTK', 8);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('FPE_INTDIV', 1);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('FPE_INTOVF', 2);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('FPE_FLTDIV', 3);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('FPE_FLTOVF', 4);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('FPE_FLTUND', 7);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('FPE_FLTRES', 6);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('FPE_FLTINV', 7);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('FPE_FLTSUB', 8);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('SEGV_MAPERR', 1);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('SEGV_ACCERR', 2);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('BUS_ADRALN', 1);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('BUS_ADRERR', 2);
/**
* @link https://php.net/manual/en/pcntl.constants.php
* @since 5.3
*/
define ('BUS_OBJERR', 3);
define ('PCNTL_EINTR', 4);

View File

@ -153,8 +153,6 @@
* @return int|false <b>preg_match</b> returns 1 if the <i>pattern</i>
* matches given <i>subject</i>, 0 if it does not, or <b>FALSE</b>
* if an error occurred.
* @since 4.0
* @since 5.0
*/
function preg_match ($pattern, $subject, array &$matches = null, $flags = 0, $offset = 0) {}
@ -215,8 +213,6 @@ function preg_match ($pattern, $subject, array &$matches = null, $flags = 0, $of
* @param int $offset [optional]
* @return int|false the number of full pattern matches (which might be zero),
* or <b>FALSE</b> if an error occurred.
* @since 4.0
* @since 5.0
*/
function preg_match_all ($pattern, $subject, array &$matches = null, $flags = PREG_PATTERN_ORDER, $offset = 0) {}
@ -305,8 +301,6 @@ function preg_match_all ($pattern, $subject, array &$matches = null, $flags = PR
* If matches are found, the new <i>subject</i> will
* be returned, otherwise <i>subject</i> will be
* returned unchanged or <b>NULL</b> if an error occurred.
* @since 4.0
* @since 5.0
*/
function preg_replace ($pattern, $replacement, $subject, $limit = -1, &$count = null) {}
@ -378,8 +372,6 @@ function preg_replace ($pattern, $replacement, $subject, $limit = -1, &$count =
* <p>
* If matches are found, the new subject will be returned, otherwise
* <i>subject</i> will be returned unchanged.
* @since 4.0.5
* @since 5.0
*/
function preg_replace_callback ($regex, callable $callback, $subject, $limit = -1, &$count = null, $flags=[]) {}
@ -411,7 +403,6 @@ function preg_replace_callback_array ($patterns_and_callbacks, $subject , $limit
* If no matches are found or an error occurred, an empty array
* is returned when <i>subject</i> is an array
* or <b>NULL</b> otherwise.
* @since 5.3
*/
function preg_filter ($pattern, $replacement, $subject, $limit = -1, &$count = null) {}
@ -440,8 +431,6 @@ function preg_filter ($pattern, $replacement, $subject, $limit = -1, &$count = n
* @return string[]|array|false an array containing substrings of <i>subject</i>
* split along boundaries matched by <i>pattern</i>, or <b>FALSE</b>
* if an error occurred.
* @since 4.0
* @since 5.0
*/
function preg_split ($pattern, $subject, $limit = -1, $flags = 0) {}
@ -458,8 +447,6 @@ function preg_split ($pattern, $subject, $limit = -1, $flags = 0) {}
* used delimiter.
* </p>
* @return string the quoted (escaped) string.
* @since 4.0
* @since 5.0
*/
function preg_quote ($str, $delimiter = null) {}
@ -479,8 +466,6 @@ function preg_quote ($str, $delimiter = null) {}
* </p>
* @return array an array indexed using the keys from the
* <i>input</i> array.
* @since 4.0
* @since 5.0
*/
function preg_grep ($pattern, array $input, $flags = 0) {}
@ -494,7 +479,6 @@ function preg_grep ($pattern, array $input, $flags = 0) {}
* <b>PREG_RECURSION_LIMIT_ERROR</b> (see also pcre.recursion_limit)
* <b>PREG_BAD_UTF8_ERROR</b>
* <b>PREG_BAD_UTF8_OFFSET_ERROR</b> (since PHP 5.3.0)
* @since 5.2
*/
function preg_last_error () {}

View File

@ -35,8 +35,6 @@
* an existing connection.
* </p>
* @return resource|false PostgreSQL connection resource on success, <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function pg_connect ($connection_string, $connect_type = null) {}
@ -68,8 +66,6 @@ function pg_connect ($connection_string, $connect_type = null) {}
* an existing connection.
* </p>
* @return resource|false PostgreSQL connection resource on success, <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function pg_pconnect ($connection_string, $connect_type = null) {}
@ -83,8 +79,6 @@ function pg_pconnect ($connection_string, $connect_type = null) {}
* <b>pg_connect</b> or <b>pg_pconnect</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function pg_close ($connection = null) {}
@ -108,8 +102,6 @@ function pg_connect_poll ($connection = null) {}
* </p>
* @return int <b>PGSQL_CONNECTION_OK</b> or
* <b>PGSQL_CONNECTION_BAD</b>.
* @since 4.2
* @since 5.0
*/
function pg_connection_status ($connection) {}
@ -120,8 +112,6 @@ function pg_connection_status ($connection) {}
* PostgreSQL database connection resource.
* </p>
* @return bool <b>TRUE</b> if the connection is busy, <b>FALSE</b> otherwise.
* @since 4.2
* @since 5.0
*/
function pg_connection_busy ($connection) {}
@ -132,8 +122,6 @@ function pg_connection_busy ($connection) {}
* PostgreSQL database connection resource.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.2
* @since 5.0
*/
function pg_connection_reset ($connection) {}
@ -159,8 +147,6 @@ function pg_socket ($connection) {}
* </p>
* @return string|false A string containing the name of the host the
* <i>connection</i> is to, or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function pg_host ($connection = null) {}
@ -175,8 +161,6 @@ function pg_host ($connection = null) {}
* </p>
* @return string|false A string containing the name of the database the
* <i>connection</i> is to, or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function pg_dbname ($connection = null) {}
@ -192,8 +176,6 @@ function pg_dbname ($connection = null) {}
* @return int An int containing the port number of the database
* server the <i>connection</i> is to,
* or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function pg_port ($connection = null) {}
@ -208,8 +190,6 @@ function pg_port ($connection = null) {}
* </p>
* @return string A string containing the debug TTY of
* the <i>connection</i>, or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function pg_tty ($connection = null) {}
@ -224,8 +204,6 @@ function pg_tty ($connection = null) {}
* </p>
* @return string A string containing the <i>connection</i>
* options, or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function pg_options ($connection = null) {}
@ -241,7 +219,6 @@ function pg_options ($connection = null) {}
* @return array an array with client, protocol
* and server keys and values (if available). Returns
* <b>FALSE</b> on error or invalid connection.
* @since 5.0
*/
function pg_version ($connection = null) {}
@ -255,8 +232,6 @@ function pg_version ($connection = null) {}
* <b>pg_connect</b> or <b>pg_pconnect</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.3
* @since 5.0
*/
function pg_ping ($connection = null) {}
@ -278,7 +253,6 @@ function pg_ping ($connection = null) {}
* </p>
* @return string|false A string containing the value of the parameter, <b>FALSE</b> on failure or invalid
* <i>param_name</i>.
* @since 5.0
*/
function pg_parameter_status ($connection = null, $param_name) {}
@ -295,7 +269,6 @@ function pg_parameter_status ($connection = null, $param_name) {}
* <b>PGSQL_TRANSACTION_UNKNOWN</b> is reported if the connection is bad.
* <b>PGSQL_TRANSACTION_ACTIVE</b> is reported only when a query
* has been sent to the server and not yet completed.
* @since 5.1
*/
function pg_transaction_status ($connection) {}
@ -326,8 +299,6 @@ function pg_transaction_status ($connection) {}
* be properly escaped.
* </p>
* @return resource|false A query result resource on success or <b>FALSE</b> on failure.
* @since 4.2
* @since 5.0
*/
function pg_query ($connection = null, $query) {}
@ -364,14 +335,12 @@ function pg_query ($connection = null, $query) {}
* large object functions.
* </p>
* @return resource|false A query result resource on success or <b>FALSE</b> on failure.
* @since 5.1
*/
function pg_query_params ($connection = null, $query, array $params) {}
/**
* Submits a request to create a prepared statement with the
* @since 5.1
given parameters, and waits for completion.
* given parameters, and waits for completion.
* @link https://php.net/manual/en/function.pg-prepare.php
* @param resource $connection [optional] <p>
* PostgreSQL database connection resource. When
@ -418,7 +387,6 @@ function pg_prepare ($connection = null, $stmtname, $query) {}
* Elements are converted to strings by calling this function.
* </p>
* @return resource|false A query result resource on success or <b>FALSE</b> on failure.
* @since 5.1
*/
function pg_execute ($connection = null, $stmtname, array $params) {}
@ -437,8 +405,6 @@ function pg_execute ($connection = null, $stmtname, array $params) {}
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.</p>
* <p>
* Use <b>pg_get_result</b> to determine the query result.
* @since 4.2
* @since 5.0
*/
function pg_send_query ($connection, $query) {}
@ -461,7 +427,6 @@ function pg_send_query ($connection, $query) {}
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.</p>
* <p>
* Use <b>pg_get_result</b> to determine the query result.
* @since 5.1
*/
function pg_send_query_params ($connection, $query, array $params) {}
@ -486,7 +451,6 @@ function pg_send_query_params ($connection, $query, array $params) {}
* </p>
* @return bool <b>TRUE</b> on success, <b>FALSE</b> on failure. Use <b>pg_get_result</b>
* to determine the query result.
* @since 5.1
*/
function pg_send_prepare ($connection, $stmtname, $query) {}
@ -513,7 +477,6 @@ function pg_send_prepare ($connection, $stmtname, $query) {}
* </p>
* @return bool <b>TRUE</b> on success, <b>FALSE</b> on failure. Use <b>pg_get_result</b>
* to determine the query result.
* @since 5.1
*/
function pg_send_execute ($connection, $stmtname, array $params) {}
@ -524,8 +487,6 @@ function pg_send_execute ($connection, $stmtname, array $params) {}
* PostgreSQL database connection resource.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.2
* @since 5.0
*/
function pg_cancel_query ($connection) {}
@ -555,8 +516,6 @@ function pg_cancel_query ($connection) {}
* <p>
* <b>FALSE</b> is returned if <i>row</i> exceeds the number
* of rows in the set, or on any other error.
* @since 4.2
* @since 5.0
*/
function pg_fetch_result ($result, $row = null, $field) {}
@ -580,8 +539,6 @@ function pg_fetch_result ($result, $row = null, $field) {}
* <p>
* <b>FALSE</b> is returned if <i>row</i> exceeds the number
* of rows in the set, there are no more rows, or on any other error.
* @since 4.0
* @since 5.0
*/
function pg_fetch_row ($result, $row = null, $result_type = null) {}
@ -605,8 +562,6 @@ function pg_fetch_row ($result, $row = null, $result_type = null) {}
* <p>
* <b>FALSE</b> is returned if <i>row</i> exceeds the number
* of rows in the set, there are no more rows, or on any other error.
* @since 4.3
* @since 5.0
*/
function pg_fetch_assoc ($result, $row = null) {}
@ -643,8 +598,6 @@ function pg_fetch_assoc ($result, $row = null) {}
* <p>
* <b>FALSE</b> is returned if <i>row</i> exceeds the number
* of rows in the set, there are no more rows, or on any other error.
* @since 4.0
* @since 5.0
*/
function pg_fetch_array ($result, $row = null, $result_type = PGSQL_BOTH) {}
@ -670,8 +623,6 @@ function pg_fetch_array ($result, $row = null, $result_type = PGSQL_BOTH) {}
* <p>
* <b>FALSE</b> is returned if <i>row</i> exceeds the number
* of rows in the set, there are no more rows, or on any other error.
* @since 4.0
* @since 5.0
*/
function pg_fetch_object ($result, $row = null, $result_type = PGSQL_ASSOC) {}
@ -701,8 +652,6 @@ function pg_fetch_object ($result, $row = null, $result_type = PGSQL_ASSOC) {}
* <p>
* <b>FALSE</b> is returned if there are no rows in the result, or on any
* other error.
* @since 4.3
* @since 5.0
*/
function pg_fetch_all ($result, $result_type = PGSQL_ASSOC) {}
@ -723,7 +672,6 @@ function pg_fetch_all ($result, $result_type = PGSQL_ASSOC) {}
* <p>
* <b>FALSE</b> is returned if <i>column</i> is larger than the number
* of columns in the result, or on any other error.
* @since 5.1
*/
function pg_fetch_all_columns ($result, $column = 0) {}
@ -737,8 +685,6 @@ function pg_fetch_all_columns ($result, $column = 0) {}
* </p>
* @return int The number of rows affected by the query. If no tuple is
* affected, it will return 0.
* @since 4.2
* @since 5.0
*/
function pg_affected_rows ($result) {}
@ -749,8 +695,6 @@ function pg_affected_rows ($result) {}
* PostgreSQL database connection resource.
* </p>
* @return resource|false The result resource, or <b>FALSE</b> if no more results are available.
* @since 4.2
* @since 5.0
*/
function pg_get_result ($connection = null) {}
@ -767,8 +711,6 @@ function pg_get_result ($connection = null) {}
* Rows are numbered starting from zero.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.3
* @since 5.0
*/
function pg_result_seek ($result, $offset) {}
@ -791,8 +733,6 @@ function pg_result_seek ($result, $offset) {}
* <b>PGSQL_COPY_IN</b>, <b>PGSQL_BAD_RESPONSE</b>, <b>PGSQL_NONFATAL_ERROR</b> and
* <b>PGSQL_FATAL_ERROR</b> if <b>PGSQL_STATUS_LONG</b> is
* specified. Otherwise, a string containing the PostgreSQL command tag is returned.
* @since 4.2
* @since 5.0
*/
function pg_result_status ($result, $type = PGSQL_STATUS_LONG) {}
@ -805,8 +745,6 @@ function pg_result_status ($result, $type = PGSQL_STATUS_LONG) {}
* (among others).
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.2
* @since 5.0
*/
function pg_free_result ($result) {}
@ -821,8 +759,6 @@ function pg_free_result ($result) {}
* @return string A string containing the OID assigned to the most recently inserted
* row in the specified <i>connection</i>, or <b>FALSE</b> on error or
* no available OID.
* @since 4.2
* @since 5.0
*/
function pg_last_oid ($result) {}
@ -835,8 +771,6 @@ function pg_last_oid ($result) {}
* (among others).
* </p>
* @return int The number of rows in the result. On error, -1 is returned.
* @since 4.2
* @since 5.0
*/
function pg_num_rows ($result) {}
@ -849,8 +783,6 @@ function pg_num_rows ($result) {}
* (among others).
* </p>
* @return int The number of fields (columns) in the result. On error, -1 is returned.
* @since 4.2
* @since 5.0
*/
function pg_num_fields ($result) {}
@ -866,8 +798,6 @@ function pg_num_fields ($result) {}
* Field number, starting from 0.
* </p>
* @return string|false The field name, or <b>FALSE</b> on error.
* @since 4.2
* @since 5.0
*/
function pg_field_name ($result, $field_number) {}
@ -883,8 +813,6 @@ function pg_field_name ($result, $field_number) {}
* The name of the field.
* </p>
* @return int The field number (numbered from 0), or -1 on error.
* @since 4.2
* @since 5.0
*/
function pg_field_num ($result, $field_name) {}
@ -901,8 +829,6 @@ function pg_field_num ($result, $field_name) {}
* </p>
* @return int The internal field storage size (in bytes). -1 indicates a variable
* length field. <b>FALSE</b> is returned on error.
* @since 4.2
* @since 5.0
*/
function pg_field_size ($result, $field_number) {}
@ -919,8 +845,6 @@ function pg_field_size ($result, $field_number) {}
* </p>
* @return string|false A string containing the base name of the field's type, or <b>FALSE</b>
* on error.
* @since 4.2
* @since 5.0
*/
function pg_field_type ($result, $field_number) {}
@ -936,7 +860,6 @@ function pg_field_type ($result, $field_number) {}
* Field number, starting from 0.
* </p>
* @return int|false The OID of the field's base type. <b>FALSE</b> is returned on error.
* @since 5.1
*/
function pg_field_type_oid ($result, $field_number) {}
@ -951,8 +874,6 @@ function pg_field_type_oid ($result, $field_number) {}
* @param int $row_number
* @param mixed $field_name_or_number
* @return int|false The field printed length, or <b>FALSE</b> on error.
* @since 4.2
* @since 5.0
*/
function pg_field_prtlen ($result, $row_number, $field_name_or_number) {}
@ -974,8 +895,6 @@ function pg_field_prtlen ($result, $row_number, $field_name_or_number) {}
* </p>
* @return int 1 if the field in the given row is SQL NULL, 0
* if not. <b>FALSE</b> is returned if the row is out of range, or upon any other error.
* @since 4.2
* @since 5.0
*/
function pg_field_is_null ($result, $row, $field) {}
@ -996,7 +915,6 @@ function pg_field_is_null ($result, $row, $field) {}
* oid will instead be returned.
* </p>
* @return mixed On success either the fields table name or oid. Or, <b>FALSE</b> on failure.
* @since 5.2
*/
function pg_field_table ($result, $field_number, $oid_only = false) {}
@ -1020,8 +938,6 @@ function pg_field_table ($result, $field_number, $oid_only = false) {}
* </p>
* @return array|false An array containing the NOTIFY message name and backend PID.
* Otherwise if no NOTIFY is waiting, then <b>FALSE</b> is returned.
* @since 4.3
* @since 5.0
*/
function pg_get_notify ($connection, $result_type = null) {}
@ -1032,8 +948,6 @@ function pg_get_notify ($connection, $result_type = null) {}
* PostgreSQL database connection resource.
* </p>
* @return int The backend database process ID.
* @since 4.3
* @since 5.0
*/
function pg_get_pid ($connection) {}
@ -1047,8 +961,6 @@ function pg_get_pid ($connection) {}
* </p>
* @return string a string if there is an error associated with the
* <i>result</i> parameter, <b>FALSE</b> otherwise.
* @since 4.2
* @since 5.0
*/
function pg_result_error ($result) {}
@ -1072,7 +984,6 @@ function pg_result_error ($result) {}
* </p>
* @return string|null|false A string containing the contents of the error field, <b>NULL</b> if the field does not exist or <b>FALSE</b>
* on failure.
* @since 5.1
*/
function pg_result_error_field ($result, $fieldcode) {}
@ -1087,8 +998,6 @@ function pg_result_error_field ($result, $fieldcode) {}
* </p>
* @return string A string containing the last error message on the
* given <i>connection</i>, or <b>FALSE</b> on error.
* @since 4.2
* @since 5.0
*/
function pg_last_error ($connection = null) {}
@ -1101,8 +1010,6 @@ function pg_last_error ($connection = null) {}
* @param $operation [optional]
* @return string A string containing the last notice on the
* given <i>connection</i>, or <b>FALSE</b> on error.
* @since 4.0.6
* @since 5.0
*/
function pg_last_notice ($connection, $operation) {}
@ -1120,8 +1027,6 @@ function pg_last_notice ($connection, $operation) {}
* terminator is added automatically.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.3
* @since 5.0
*/
function pg_put_line ($connection = null, $data) {}
@ -1135,8 +1040,6 @@ function pg_put_line ($connection = null, $data) {}
* <b>pg_connect</b> or <b>pg_pconnect</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.3
* @since 5.0
*/
function pg_end_copy ($connection = null) {}
@ -1159,8 +1062,6 @@ function pg_end_copy ($connection = null) {}
* </p>
* @return array|false An array with one element for each line of COPY data.
* It returns <b>FALSE</b> on failure.
* @since 4.2
* @since 5.0
*/
function pg_copy_to ($connection, $table_name, $delimiter = null, $null_as = null) {}
@ -1188,8 +1089,6 @@ function pg_copy_to ($connection, $table_name, $delimiter = null, $null_as = nul
* <i>rows</i>. Default is \N ("\\N").
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.2
* @since 5.0
*/
function pg_copy_from ($connection, $table_name, array $rows, $delimiter = null, $null_as = null) {}
@ -1211,8 +1110,6 @@ function pg_copy_from ($connection, $table_name, array $rows, $delimiter = null,
* <b>pg_connect</b> or <b>pg_pconnect</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.1
* @since 5.0
*/
function pg_trace ($pathname, $mode = "w", $connection = null) {}
@ -1226,8 +1123,6 @@ function pg_trace ($pathname, $mode = "w", $connection = null) {}
* <b>pg_connect</b> or <b>pg_pconnect</b>.
* </p>
* @return bool Always returns <b>TRUE</b>.
* @since 4.0.1
* @since 5.0
*/
function pg_untrace ($connection = null) {}
@ -1248,8 +1143,6 @@ function pg_untrace ($connection = null) {}
* appeared in PostgreSQL 8.1.
* </p>
* @return int|false A large object OID or <b>FALSE</b> on error.
* @since 4.2
* @since 5.0
*/
function pg_lo_create ($connection = null, $object_id = null) {}
@ -1266,8 +1159,6 @@ function pg_lo_create ($connection = null, $object_id = null) {}
* The OID of the large object in the database.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.2
* @since 5.0
*/
function pg_lo_unlink ($connection, $oid) {}
@ -1288,8 +1179,6 @@ function pg_lo_unlink ($connection, $oid) {}
* write.
* </p>
* @return resource|false A large object resource or <b>FALSE</b> on error.
* @since 4.2
* @since 5.0
*/
function pg_lo_open ($connection, $oid, $mode) {}
@ -1298,8 +1187,6 @@ function pg_lo_open ($connection, $oid, $mode) {}
* @link https://php.net/manual/en/function.pg-lo-close.php
* @param resource $large_object
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.2
* @since 5.0
*/
function pg_lo_close ($large_object) {}
@ -1314,8 +1201,6 @@ function pg_lo_close ($large_object) {}
* </p>
* @return string A string containing <i>len</i> bytes from the
* large object, or <b>FALSE</b> on error.
* @since 4.2
* @since 5.0
*/
function pg_lo_read ($large_object, $len = 8192) {}
@ -1336,8 +1221,6 @@ function pg_lo_read ($large_object, $len = 8192) {}
* the length of <i>data</i>.
* </p>
* @return int|false The number of bytes written to the large object, or <b>FALSE</b> on error.
* @since 4.2
* @since 5.0
*/
function pg_lo_write ($large_object, $data, $len = null) {}
@ -1348,8 +1231,6 @@ function pg_lo_write ($large_object, $data, $len = null) {}
* PostgreSQL large object (LOB) resource, returned by <b>pg_lo_open</b>.
* </p>
* @return int|false Number of bytes read or <b>FALSE</b> on error.
* @since 4.2
* @since 5.0
*/
function pg_lo_read_all ($large_object) {}
@ -1375,8 +1256,6 @@ function pg_lo_read_all ($large_object) {}
* </p>
* @return int The OID of the newly created large object, or
* <b>FALSE</b> on failure.
* @since 4.2
* @since 5.0
*/
function pg_lo_import ($connection = null, $pathname, $object_id = null) {}
@ -1397,8 +1276,6 @@ function pg_lo_import ($connection = null, $pathname, $object_id = null) {}
* large object on the client filesystem.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.2
* @since 5.0
*/
function pg_lo_export ($connection = null, $oid, $pathname) {}
@ -1417,8 +1294,6 @@ function pg_lo_export ($connection = null, $oid, $pathname) {}
* or <b>PGSQL_SEEK_END</b> (seek from object end) .
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.2
* @since 5.0
*/
function pg_lo_seek ($large_object, $offset, $whence = PGSQL_SEEK_CUR) {}
@ -1430,8 +1305,6 @@ function pg_lo_seek ($large_object, $offset, $whence = PGSQL_SEEK_CUR) {}
* </p>
* @return int The current seek offset (in number of bytes) from the beginning of the large
* object. If there is an error, the return value is negative.
* @since 4.2
* @since 5.0
*/
function pg_lo_tell ($large_object) {}
@ -1448,8 +1321,6 @@ function pg_lo_tell ($large_object) {}
* A string containing text to be escaped.
* </p>
* @return string A string containing the escaped data.
* @since 4.2
* @since 5.0
*/
function pg_escape_string ($connection = null, $data) {}
@ -1467,8 +1338,6 @@ function pg_escape_string ($connection = null, $data) {}
* column.
* </p>
* @return string A string containing the escaped data.
* @since 4.2
* @since 5.0
*/
function pg_escape_bytea ($connection = null, $data) {}
@ -1514,15 +1383,12 @@ function pg_escape_literal ($connection = null, $data) {}
* a PHP binary string.
* </p>
* @return string A string containing the unescaped data.
* @since 4.3
* @since 5.0
*/
function pg_unescape_bytea ($data) {}
/**
* Determines the verbosity of messages returned by <b>pg_last_error</b>
* @since 5.1
and <b>pg_result_error</b>.
* and <b>pg_result_error</b>.
* @link https://php.net/manual/en/function.pg-set-error-verbosity.php
* @param resource $connection [optional] <p>
* PostgreSQL database connection resource. When
@ -1551,8 +1417,6 @@ function pg_set_error_verbosity ($connection = null, $verbosity) {}
* <b>pg_connect</b> or <b>pg_pconnect</b>.
* </p>
* @return string|false The client encoding, or <b>FALSE</b> on error.
* @since 4.0.3
* @since 5.0
*/
function pg_client_encoding ($connection = null) {}
@ -1577,8 +1441,6 @@ function pg_client_encoding ($connection = null) {}
* PostgreSQL manual for a more specific list.
* </p>
* @return int 0 on success or -1 on error.
* @since 4.0.3
* @since 5.0
*/
function pg_set_client_encoding ($connection = null, $encoding) {}
@ -1592,8 +1454,6 @@ function pg_set_client_encoding ($connection = null, $encoding) {}
* The name of the table.
* </p>
* @return array An array of the table definition, or <b>FALSE</b> on error.
* @since 4.3
* @since 5.0
*/
function pg_meta_data ($connection, $table_name) {}
@ -1615,8 +1475,6 @@ function pg_meta_data ($connection, $table_name) {}
* <b>PGSQL_CONV_IGNORE_NOT_NULL</b>, combined.
* </p>
* @return array An array of converted values, or <b>FALSE</b> on error.
* @since 4.3
* @since 5.0
*/
function pg_convert ($connection, $table_name, array $assoc_array, $options = 0) {}
@ -1644,8 +1502,6 @@ function pg_convert ($connection, $table_name, array $assoc_array, $options = 0)
* </p>
* @return mixed <b>TRUE</b> on success or <b>FALSE</b> on failure. Returns string if <b>PGSQL_DML_STRING</b> is passed
* via <i>options</i>.
* @since 4.3
* @since 5.0
*/
function pg_insert ($connection, $table_name, array $assoc_array, $options = PGSQL_DML_EXEC) {}
@ -1675,8 +1531,6 @@ function pg_insert ($connection, $table_name, array $assoc_array, $options = PGS
* </p>
* @return mixed <b>TRUE</b> on success or <b>FALSE</b> on failure. Returns string if <b>PGSQL_DML_STRING</b> is passed
* via <i>options</i>.
* @since 4.3
* @since 5.0
*/
function pg_update ($connection, $table_name, array $data, array $condition, $options = PGSQL_DML_EXEC) {}
@ -1702,8 +1556,6 @@ function pg_update ($connection, $table_name, array $data, array $condition, $op
* </p>
* @return mixed <b>TRUE</b> on success or <b>FALSE</b> on failure. Returns string if <b>PGSQL_DML_STRING</b> is passed
* via <i>options</i>.
* @since 4.3
* @since 5.0
*/
function pg_delete ($connection, $table_name, array $assoc_array, $options = PGSQL_DML_EXEC) {}
@ -1742,8 +1594,6 @@ function pg_delete ($connection, $table_name, array $assoc_array, $options = PGS
* </p>
* @return mixed <b>TRUE</b> on success or <b>FALSE</b> on failure. Returns string if <b>PGSQL_DML_STRING</b> is passed
* via <i>options</i>.
* @since 4.3
* @since 5.0
*/
function pg_select ($connection, $table_name, array $assoc_array, $options = PGSQL_DML_EXEC, $result_type = PGSQL_ASSOC) {}

View File

@ -12,8 +12,6 @@
* One of the PCNTL signals constants.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function posix_kill ($pid, $sig) {}
@ -21,8 +19,6 @@ function posix_kill ($pid, $sig) {}
* Return the current process identifier
* @link https://php.net/manual/en/function.posix-getpid.php
* @return int the identifier, as an integer.
* @since 4.0
* @since 5.0
*/
function posix_getpid () {}
@ -30,8 +26,6 @@ function posix_getpid () {}
* Return the parent process identifier
* @link https://php.net/manual/en/function.posix-getppid.php
* @return int the identifier, as an integer.
* @since 4.0
* @since 5.0
*/
function posix_getppid () {}
@ -39,8 +33,6 @@ function posix_getppid () {}
* Return the real user ID of the current process
* @link https://php.net/manual/en/function.posix-getuid.php
* @return int the user id, as an integer
* @since 4.0
* @since 5.0
*/
function posix_getuid () {}
@ -51,8 +43,6 @@ function posix_getuid () {}
* The user id.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function posix_setuid ($uid) {}
@ -60,8 +50,6 @@ function posix_setuid ($uid) {}
* Return the effective user ID of the current process
* @link https://php.net/manual/en/function.posix-geteuid.php
* @return int the user id, as an integer
* @since 4.0
* @since 5.0
*/
function posix_geteuid () {}
@ -72,8 +60,6 @@ function posix_geteuid () {}
* The user id.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.2
* @since 5.0
*/
function posix_seteuid ($uid) {}
@ -95,8 +81,6 @@ function posix_setrlimit ($resource, $softlimit, $hardlimit ) {}
* Return the real group ID of the current process
* @link https://php.net/manual/en/function.posix-getgid.php
* @return int the real group id, as an integer.
* @since 4.0
* @since 5.0
*/
function posix_getgid () {}
@ -107,8 +91,6 @@ function posix_getgid () {}
* The group id.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function posix_setgid ($gid) {}
@ -116,8 +98,6 @@ function posix_setgid ($gid) {}
* Return the effective group ID of the current process
* @link https://php.net/manual/en/function.posix-getegid.php
* @return int an integer of the effective group ID.
* @since 4.0
* @since 5.0
*/
function posix_getegid () {}
@ -128,8 +108,6 @@ function posix_getegid () {}
* The group id.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.2
* @since 5.0
*/
function posix_setegid ($gid) {}
@ -138,8 +116,6 @@ function posix_setegid ($gid) {}
* @link https://php.net/manual/en/function.posix-getgroups.php
* @return array an array of integers containing the numeric group ids of the group
* set of the current process.
* @since 4.0
* @since 5.0
*/
function posix_getgroups () {}
@ -147,8 +123,6 @@ function posix_getgroups () {}
* Return login name
* @link https://php.net/manual/en/function.posix-getlogin.php
* @return string the login name of the user, as a string.
* @since 4.0
* @since 5.0
*/
function posix_getlogin () {}
@ -156,8 +130,6 @@ function posix_getlogin () {}
* Return the current process group identifier
* @link https://php.net/manual/en/function.posix-getpgrp.php
* @return int the identifier, as an integer.
* @since 4.0
* @since 5.0
*/
function posix_getpgrp () {}
@ -165,8 +137,6 @@ function posix_getpgrp () {}
* Make the current process a session leader
* @link https://php.net/manual/en/function.posix-setsid.php
* @return int the session id, or -1 on errors.
* @since 4.0
* @since 5.0
*/
function posix_setsid () {}
@ -180,8 +150,6 @@ function posix_setsid () {}
* The process group id.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function posix_setpgid ($pid, $pgid) {}
@ -192,8 +160,6 @@ function posix_setpgid ($pid, $pgid) {}
* The process id.
* </p>
* @return int the identifier, as an integer.
* @since 4.0
* @since 5.0
*/
function posix_getpgid ($pid) {}
@ -207,8 +173,6 @@ function posix_getpgid ($pid) {}
* can be checked with <b>posix_get_last_error</b>.
* </p>
* @return int the identifier, as an integer.
* @since 4.0
* @since 5.0
*/
function posix_getsid ($pid) {}
@ -229,8 +193,6 @@ function posix_getsid ($pid) {}
* domainname is a GNU extension and not part of POSIX.1, so this
* field is only available on GNU systems or when using the GNU
* libc.
* @since 4.0
* @since 5.0
*/
function posix_uname () {}
@ -245,8 +207,6 @@ function posix_uname () {}
* stime - system time used by the current process.
* cutime - user time used by current process and children.
* cstime - system time used by current process and children.
* @since 4.0
* @since 5.0
*/
function posix_times () {}
@ -256,8 +216,6 @@ function posix_times () {}
* @return string|false Upon successful completion, returns string of the pathname to
* the current controlling terminal. Otherwise <b>FALSE</b> is returned and errno
* is set, which can be checked with <b>posix_get_last_error</b>.
* @since 4.0
* @since 5.0
*/
function posix_ctermid () {}
@ -269,8 +227,6 @@ function posix_ctermid () {}
* </p>
* @return string|false On success, returns a string of the absolute path of the
* <i>fd</i>. On failure, returns <b>FALSE</b>
* @since 4.0
* @since 5.0
*/
function posix_ttyname ($fd) {}
@ -285,8 +241,6 @@ function posix_ttyname ($fd) {}
* </p>
* @return bool <b>TRUE</b> if <i>fd</i> is an open descriptor connected
* to a terminal and <b>FALSE</b> otherwise.
* @since 4.0
* @since 5.0
*/
function posix_isatty ($fd) {}
@ -296,8 +250,6 @@ function posix_isatty ($fd) {}
* @return string a string of the absolute pathname on success.
* On error, returns <b>FALSE</b> and sets errno which can be checked with
* <b>posix_get_last_error</b>.
* @since 4.0
* @since 5.0
*/
function posix_getcwd () {}
@ -315,8 +267,6 @@ function posix_getcwd () {}
* (mode &#38;#38; ~umask).
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function posix_mkfifo ($pathname, $mode) {}
@ -341,7 +291,6 @@ function posix_mkfifo ($pathname, $mode) {}
* The minor device kernel identifier.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.1
*/
function posix_mknod ($pathname, $mode, $major = 0, $minor = 0) {}
@ -364,7 +313,6 @@ function posix_mknod ($pathname, $mode, $major = 0, $minor = 0) {}
* existence of the file.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.1
*/
function posix_access ($file, $mode = POSIX_F_OK) {}
@ -411,8 +359,6 @@ function posix_access ($file, $mode = POSIX_F_OK) {}
* </td>
* </tr>
* </table>
* @since 4.0
* @since 5.0
*/
function posix_getgrnam ($name) {}
@ -461,8 +407,6 @@ function posix_getgrnam ($name) {}
* </td>
* </tr>
* </table>
* @since 4.0
* @since 5.0
*/
function posix_getgrgid ($gid) {}
@ -539,8 +483,6 @@ function posix_getgrgid ($gid) {}
* </td>
* </tr>
* </table>
* @since 4.0
* @since 5.0
*/
function posix_getpwnam ($username) {}
@ -616,8 +558,6 @@ function posix_getpwnam ($username) {}
* </td>
* </tr>
* </table>
* @since 4.0
* @since 5.0
*/
function posix_getpwuid ($uid) {}
@ -702,8 +642,6 @@ function posix_getpwuid ($uid) {}
* </td>
* </tr>
* </table>
* @since 4.0
* @since 5.0
*/
function posix_getrlimit () {}
@ -712,16 +650,12 @@ function posix_getrlimit () {}
* @link https://php.net/manual/en/function.posix-get-last-error.php
* @return int the errno (error number) set by the last posix function that
* failed. If no errors exist, 0 is returned.
* @since 4.2
* @since 5.0
*/
function posix_get_last_error () {}
/**
* Alias of <b>posix_get_last_error</b>
* @link https://php.net/manual/en/function.posix-errno.php
* @since 4.2
* @since 5.0
*/
function posix_errno () {}
@ -734,8 +668,6 @@ function posix_errno () {}
* string "Success" is returned.
* </p>
* @return string the error message, as a string.
* @since 4.2
* @since 5.0
*/
function posix_strerror ($errno) {}
@ -749,7 +681,6 @@ function posix_strerror ($errno) {}
* Typically the group number from the password file.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.2
*/
function posix_initgroups ($name, $base_group_id) {}

View File

@ -33,8 +33,6 @@
* <b>PSPELL_FAST</b> - Fast mode (least number of
* suggestions)
* @return int|false the dictionary link identifier on success or <b>FALSE</b> on failure.
* @since 4.0.2
* @since 5.0
*/
function pspell_new ($language, $spelling = null, $jargon = null, $encoding = null, $mode = 0) {}
@ -72,8 +70,6 @@ function pspell_new ($language, $spelling = null, $jargon = null, $encoding = nu
* <b>PSPELL_FAST</b> - Fast mode (least number of
* suggestions)
* @return int the dictionary link identifier for use in other pspell functions.
* @since 4.0.2
* @since 5.0
*/
function pspell_new_personal ($personal, $language, $spelling = null, $jargon = null, $encoding = null, $mode = 0) {}
@ -85,8 +81,6 @@ function pspell_new_personal ($personal, $language, $spelling = null, $jargon =
* <b>pspell_config_create</b> when the config was created.
* </p>
* @return int a dictionary link identifier on success.
* @since 4.0.2
* @since 5.0
*/
function pspell_new_config ($config) {}
@ -98,8 +92,6 @@ function pspell_new_config ($config) {}
* The tested word.
* </p>
* @return bool <b>TRUE</b> if the spelling is correct, <b>FALSE</b> if not.
* @since 4.0.2
* @since 5.0
*/
function pspell_check ($dictionary_link, $word) {}
@ -111,8 +103,6 @@ function pspell_check ($dictionary_link, $word) {}
* The tested word.
* </p>
* @return array an array of possible spellings.
* @since 4.0.2
* @since 5.0
*/
function pspell_suggest ($dictionary_link, $word) {}
@ -130,8 +120,6 @@ function pspell_suggest ($dictionary_link, $word) {}
* The fixed spelling for the <i>misspelled</i> word.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.2
* @since 5.0
*/
function pspell_store_replacement ($dictionary_link, $misspelled, $correct) {}
@ -143,8 +131,6 @@ function pspell_store_replacement ($dictionary_link, $misspelled, $correct) {}
* The added word.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.2
* @since 5.0
*/
function pspell_add_to_personal ($dictionary_link, $word) {}
@ -156,8 +142,6 @@ function pspell_add_to_personal ($dictionary_link, $word) {}
* The added word.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.2
* @since 5.0
*/
function pspell_add_to_session ($dictionary_link, $word) {}
@ -166,8 +150,6 @@ function pspell_add_to_session ($dictionary_link, $word) {}
* @link https://php.net/manual/en/function.pspell-clear-session.php
* @param int $dictionary_link
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.2
* @since 5.0
*/
function pspell_clear_session ($dictionary_link) {}
@ -179,8 +161,6 @@ function pspell_clear_session ($dictionary_link) {}
* <b>pspell_new_personal</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.2
* @since 5.0
*/
function pspell_save_wordlist ($dictionary_link) {}
@ -210,8 +190,6 @@ function pspell_save_wordlist ($dictionary_link) {}
* using.
* </p>
* @return int|false Retuns a pspell config identifier, or <b>FALSE</b> on error.
* @since 4.0.2
* @since 5.0
*/
function pspell_config_create ($language, $spelling = null, $jargon = null, $encoding = null) {}
@ -224,8 +202,6 @@ function pspell_config_create ($language, $spelling = null, $jargon = null, $enc
* <b>FALSE</b> otherwise.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.2
* @since 5.0
*/
function pspell_config_runtogether ($dictionary_link, $flag) {}
@ -239,8 +215,6 @@ function pspell_config_runtogether ($dictionary_link, $flag) {}
* <b>PSPELL_FAST</b> - Fast mode (least number of
* suggestions)
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.2
* @since 5.0
*/
function pspell_config_mode ($dictionary_link, $mode) {}
@ -252,8 +226,6 @@ function pspell_config_mode ($dictionary_link, $mode) {}
* Words less than <i>n</i> characters will be skipped.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.2
* @since 5.0
*/
function pspell_config_ignore ($dictionary_link, $n) {}
@ -266,8 +238,6 @@ function pspell_config_ignore ($dictionary_link, $n) {}
* The file should be writable by whoever PHP runs as (e.g. nobody).
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.2
* @since 5.0
*/
function pspell_config_personal ($dictionary_link, $file) {}
@ -277,7 +247,6 @@ function pspell_config_personal ($dictionary_link, $file) {}
* @param int $conf
* @param string $directory
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.0
*/
function pspell_config_dict_dir ($conf, $directory) {}
@ -287,7 +256,6 @@ function pspell_config_dict_dir ($conf, $directory) {}
* @param int $conf
* @param string $directory
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.0
*/
function pspell_config_data_dir ($conf, $directory) {}
@ -299,16 +267,12 @@ function pspell_config_data_dir ($conf, $directory) {}
* The file should be writable by whoever PHP runs as (e.g. nobody).
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.2
* @since 5.0
*/
function pspell_config_repl ($dictionary_link, $file) {}
/**
* Determine whether to save a replacement pairs list
* @since 4.0.2
* @since 5.0
along with the wordlist
* along with the wordlist
* @link https://php.net/manual/en/function.pspell-config-save-repl.php
* @param int $dictionary_link
* @param bool $flag <p>

View File

@ -10,8 +10,6 @@
* </p>
* @return string a single string from the user. The line returned has the ending
* newline removed.
* @since 4.0
* @since 5.0
*/
function readline ($prompt = null) {}
@ -32,8 +30,6 @@ function readline ($prompt = null) {}
* </p>
* <p>
* If called with one or two parameters, the old value is returned.
* @since 4.0
* @since 5.0
*/
function readline_info ($varname = null, $newvalue = null) {}
@ -44,8 +40,6 @@ function readline_info ($varname = null, $newvalue = null) {}
* The line to be added in the history.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function readline_add_history ($line) {}
@ -53,8 +47,6 @@ function readline_add_history ($line) {}
* Clears the history
* @link https://php.net/manual/en/function.readline-clear-history.php
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function readline_clear_history () {}
@ -63,8 +55,6 @@ function readline_clear_history () {}
* @link https://php.net/manual/en/function.readline-list-history.php
* @return array an array of the entire command line history. The elements are
* indexed by integers starting at zero.
* @since 4.0
* @since 5.0
*/
function readline_list_history () {}
@ -75,8 +65,6 @@ function readline_list_history () {}
* Path to the filename containing the command history.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function readline_read_history ($filename = null) {}
@ -87,8 +75,6 @@ function readline_read_history ($filename = null) {}
* Path to the saved file.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function readline_write_history ($filename = null) {}
@ -100,8 +86,6 @@ function readline_write_history ($filename = null) {}
* partial command line and returns an array of possible matches.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function readline_completion_function (callable $function) {}
@ -116,7 +100,6 @@ function readline_completion_function (callable $function) {}
* user input returned.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.1
*/
function readline_callback_handler_install ($prompt, callable $callback) {}
@ -124,7 +107,6 @@ function readline_callback_handler_install ($prompt, callable $callback) {}
* Reads a character and informs the readline callback interface when a line is received
* @link https://php.net/manual/en/function.readline-callback-read-char.php
* @return void No value is returned.
* @since 5.1
*/
function readline_callback_read_char () {}
@ -133,7 +115,6 @@ function readline_callback_read_char () {}
* @link https://php.net/manual/en/function.readline-callback-handler-remove.php
* @return bool <b>TRUE</b> if a previously installed callback handler was removed, or
* <b>FALSE</b> if one could not be found.
* @since 5.1
*/
function readline_callback_handler_remove () {}
@ -141,7 +122,6 @@ function readline_callback_handler_remove () {}
* Redraws the display
* @link https://php.net/manual/en/function.readline-redisplay.php
* @return void No value is returned.
* @since 5.1
*/
function readline_redisplay () {}
@ -149,7 +129,6 @@ function readline_redisplay () {}
* Inform readline that the cursor has moved to a new line
* @link https://php.net/manual/en/function.readline-on-new-line.php
* @return void No value is returned.
* @since 5.1
*/
function readline_on_new_line () {}

View File

@ -13,8 +13,6 @@
* </p>
* @return string|false the recoded string or <b>FALSE</b>, if unable to
* perform the recode request.
* @since 4.0
* @since 5.0
*/
function recode_string ($request, $string) {}
@ -33,8 +31,6 @@ function recode_string ($request, $string) {}
* the <i>output</i>
* </p>
* @return bool <b>FALSE</b>, if unable to comply, <b>TRUE</b> otherwise.
* @since 4.0
* @since 5.0
*/
function recode_file ($request, $input, $output) {}
@ -43,8 +39,6 @@ function recode_file ($request, $input, $output) {}
* @link https://php.net/manual/en/function.recode.php
* @param $request
* @param $str
* @since 4.0
* @since 5.0
*/
function recode ($request, $str) {}

View File

@ -157,8 +157,6 @@ function eregi_replace ($pattern, $replacement, $string) {}
* only one element will be returned. Of course, this is also true if
* <i>string</i> is empty. If an error occurs,
* <b>split</b> returns <b>FALSE</b>.
* @since 4.0
* @since 5.0
* @removed 7.0
*/
function split ($pattern, $string, $limit = -1) {}
@ -201,8 +199,6 @@ function split ($pattern, $string, $limit = -1) {}
* only one element will be returned. Of course, this is also true if
* <i>string</i> is empty. If an error occurs,
* <b>spliti</b> returns <b>FALSE</b>.
* @since 4.0.1
* @since 5.0
*/
function spliti ($pattern, $string, $limit = -1) {}
@ -218,8 +214,6 @@ function spliti ($pattern, $string, $limit = -1) {}
* <i>string</i> with each alphabetic character converted to
* a bracket expression; this bracket expression contains that character's
* uppercase and lowercase form. Other characters remain unchanged.
* @since 4.0
* @since 5.0
*/
function sql_regcase ($string) {}

View File

@ -21,8 +21,6 @@
* </p>
* </p>
* @return string the name of the current session.
* @since 4.0
* @since 5.0
*/
function session_name ($name = null) {}
@ -35,8 +33,6 @@ function session_name ($name = null) {}
* used instead.
* </p>
* @return string the name of the current session module.
* @since 4.0
* @since 5.0
*/
function session_module_name ($module = null) {}
@ -56,8 +52,6 @@ function session_module_name ($module = null) {}
* </p>
* </p>
* @return string the path of the current directory used for data storage.
* @since 4.0
* @since 5.0
*/
function session_save_path ($path = null) {}
@ -79,8 +73,6 @@ function session_save_path ($path = null) {}
* @return string <b>session_id</b> returns the session id for the current
* session or the empty string ("") if there is no current
* session (no current session id exists).
* @since 4.0
* @since 5.0
*/
function session_id ($id = null) {}
@ -91,8 +83,6 @@ function session_id ($id = null) {}
* Whether to delete the old associated session file or not.
* </p>
* @return bool true on success or false on failure.
* @since 4.3.2
* @since 5.0
*/
function session_regenerate_id ($delete_old_session = false) {}
@ -110,8 +100,6 @@ function session_register_shutdown () {}
* The encoded data to be stored.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function session_decode ($data) {}
@ -126,8 +114,6 @@ function session_decode ($data) {}
* @return bool true on success or false on failure.
* @deprecated 5.3 This function has been DEPRECATED as of PHP 5.3.0
* @removed 5.4
* @since 4.0
* @since 5.0
*/
function session_register ($name, $_ = null) {}
@ -140,8 +126,6 @@ function session_register ($name, $_ = null) {}
* @return bool true on success or false on failure.
* @deprecated 5.3 This function has been DEPRECATED as of PHP 5.3.0
* @removed 5.4
* @since 4.0
* @since 5.0
*/
function session_unregister ($name) {}
@ -156,8 +140,6 @@ function session_unregister ($name) {}
* the current session, false otherwise.
* @deprecated 5.3 This function has been DEPRECATED as of PHP 5.3.0
* @removed 5.4
* @since 4.0
* @since 5.0
*/
function session_is_registered ($name) {}
@ -165,8 +147,6 @@ function session_is_registered ($name) {}
* Encodes the current session data as a string
* @link https://php.net/manual/en/function.session-encode.php
* @return string the contents of the current session encoded.
* @since 4.0
* @since 5.0
*/
function session_encode () {}
@ -177,8 +157,6 @@ function session_encode () {}
* In addition to the normal set of configuration directives, a read_and_close option may also be provided. If set to TRUE, this will result in the session being closed immediately after being read, thereby avoiding unnecessary locking if the session data won't be changed.</p>
* @return bool This function returns true if a session was successfully started,
* otherwise false.
* @since 4.0
* @since 5.0
* @since 7.0
*/
function session_start ($options = []) {}
@ -206,8 +184,6 @@ function session_gc() {}
* Destroys all data registered to a session
* @link https://php.net/manual/en/function.session-destroy.php
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function session_destroy () {}
@ -215,8 +191,6 @@ function session_destroy () {}
* Free all session variables
* @link https://php.net/manual/en/function.session-unset.php
* @return void|bool since 7.2.0 returns true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function session_unset () {}
@ -267,8 +241,6 @@ function session_unset () {}
* @param callback $validate_sid [optional]
* @param callback $update_timestamp [optional]
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function session_set_save_handler ($open, $close, $read, $write, $destroy, $gc, $create_sid = null, $validate_sid = null, $update_timestamp = null) {}
@ -338,8 +310,6 @@ function session_set_save_handler (SessionHandlerInterface $session_handler, $re
* </tr>
* </table>
* @return string the name of the current cache limiter.
* @since 4.0.3
* @since 5.0
* @since 7.0
*/
function session_cache_limiter ($cache_limiter = null) {}
@ -358,8 +328,6 @@ function session_cache_limiter ($cache_limiter = null) {}
* </p>
* @return int the current setting of session.cache_expire.
* The value returned should be read in minutes, defaults to 180.
* @since 4.2
* @since 5.0
* @since 7.0
*/
function session_cache_expire ($new_cache_expire = null) {}
@ -409,8 +377,6 @@ function session_set_cookie_params ($options) {}
* flag when setting the session cookie.
* </p>
* @return void|bool since 7.2.0 returns true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function session_set_cookie_params ($lifetime, $path = null, $domain = null, $secure = false, $httponly = false) {}
@ -429,8 +395,6 @@ function session_set_cookie_params ($lifetime, $path = null, $domain = null, $se
* should only be sent over secure connections.
* "httponly" - The
* cookie can only be accessed through the HTTP protocol.
* @since 4.0
* @since 5.0
*/
function session_get_cookie_params () {}
@ -438,8 +402,6 @@ function session_get_cookie_params () {}
* Write session data and end session
* @link https://php.net/manual/en/function.session-write-close.php
* @return void|bool since 7.2.0 returns true on success or false on failure.
* @since 4.0.4
* @since 5.0
*/
function session_write_close () {}
@ -447,8 +409,6 @@ function session_write_close () {}
* Alias of <b>session_write_close</b>
* @link https://php.net/manual/en/function.session-commit.php
* @return void|bool since 7.2.0 returns true on success or false on failure.
* @since 4.4
* @since 5.0
*/
function session_commit () {}

View File

@ -25,8 +25,6 @@
* @return resource On success <b>shmop_open</b> will return an id that you can
* use to access the shared memory segment you've created. <b>FALSE</b> is
* returned on failure.
* @since 4.0.4
* @since 5.0
*/
function shmop_open ($key, $flags, $mode, $size) {}
@ -44,8 +42,6 @@ function shmop_open ($key, $flags, $mode, $size) {}
* The number of bytes to read
* </p>
* @return string|false the data or <b>FALSE</b> on failure.
* @since 4.0.4
* @since 5.0
*/
function shmop_read ($shmid, $start, $count) {}
@ -57,8 +53,6 @@ function shmop_read ($shmid, $start, $count) {}
* <b>shmop_open</b>
* </p>
* @return void No value is returned.
* @since 4.0.4
* @since 5.0
*/
function shmop_close ($shmid) {}
@ -71,8 +65,6 @@ function shmop_close ($shmid) {}
* </p>
* @return int an int, which represents the number of bytes the shared memory
* block occupies.
* @since 4.0.4
* @since 5.0
*/
function shmop_size ($shmid) {}
@ -92,8 +84,6 @@ function shmop_size ($shmid) {}
* </p>
* @return int|false The size of the written <i>data</i>, or <b>FALSE</b> on
* failure.
* @since 4.0.4
* @since 5.0
*/
function shmop_write ($shmid, $data, $offset) {}
@ -105,8 +95,6 @@ function shmop_write ($shmid, $data, $offset) {}
* <b>shmop_open</b>
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.4
* @since 5.0
*/
function shmop_delete ($shmid) {}

View File

@ -319,8 +319,6 @@ class SNMPException extends RuntimeException {
* The number of times to retry if timeouts occur.
* </p>
* @return string|false SNMP object value on success or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function snmpget ($hostname, $community, $object_id, $timeout = 1000000, $retries = 5) {}
@ -334,7 +332,6 @@ function snmpget ($hostname, $community, $object_id, $timeout = 1000000, $retrie
* @param int $retries [optional] <p>The number of times to retry if timeouts occur.</p>
* @return string|false SNMP object value on success or <b>FALSE</b> on error.
* In case of an error, an E_WARNING message is shown.
* @since 5.0
*/
function snmpgetnext ($host, $community, $object_id, $timeout = 1000000, $retries = 5) {}
@ -362,8 +359,6 @@ function snmpgetnext ($host, $community, $object_id, $timeout = 1000000, $retrie
* @param int $retries [optional] <p>The number of times to retry if timeouts occur.</p>
* @return array an array of SNMP object values starting from the
* <i>object_id</i> as root or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function snmpwalk ($hostname, $community, $object_id, $timeout = 1000000, $retries = 5) {}
@ -377,8 +372,6 @@ function snmpwalk ($hostname, $community, $object_id, $timeout = 1000000, $retri
* @param int $retries [optional] <p>The number of times to retry if timeouts occur.</p>
* @return array|false an associative array of the SNMP object ids and their values on success or <b>FALSE</b> on error.
* In case of an error, an E_WARNING message is shown.
* @since 4.0
* @since 5.0
*/
function snmprealwalk ($host, $community, $object_id, $timeout = 1000000, $retries = 5) {}
@ -409,8 +402,6 @@ function snmprealwalk ($host, $community, $object_id, $timeout = 1000000, $retri
* @return array an associative array with object ids and their respective
* object value starting from the <i>object_id</i>
* as root or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function snmpwalkoid ($hostname, $community, $object_id, $timeout = 1000000, $retries = 5) {}
@ -476,8 +467,6 @@ function snmpwalkoid ($hostname, $community, $object_id, $timeout = 1000000, $re
* <p>
* If the SNMP host rejects the data type, an E_WARNING message like "Warning: Error in packet. Reason: (badValue) The value given has the wrong type or length." is shown.
* If an unknown or invalid OID is specified the warning probably reads "Could not add variable".
* @since 4.0
* @since 5.0
*/
function snmpset ($host, $community, $object_id, $type, $value, $timeout = 1000000, $retries = 5) {}
@ -485,8 +474,6 @@ function snmpset ($host, $community, $object_id, $type, $value, $timeout = 10000
* Fetches the current value of the UCD library's quick_print setting
* @link https://php.net/manual/en/function.snmp-get-quick-print.php
* @return bool <b>TRUE</b> if quick_print is on, <b>FALSE</b> otherwise.
* @since 4.0
* @since 5.0
*/
function snmp_get_quick_print () {}
@ -495,8 +482,6 @@ function snmp_get_quick_print () {}
* @link https://php.net/manual/en/function.snmp-set-quick-print.php
* @param bool $quick_print
* @return bool No value is returned.
* @since 4.0
* @since 5.0
*/
function snmp_set_quick_print ($quick_print) {}
@ -507,8 +492,6 @@ function snmp_set_quick_print ($quick_print) {}
* As the value is interpreted as boolean by the Net-SNMP library, it can only be "0" or "1".
* </p>
* @return bool
* @since 4.3
* @since 5.0
*/
function snmp_set_enum_print ($enum_print) {}
@ -529,7 +512,6 @@ function snmp_set_enum_print ($enum_print) {}
* </table>
* </p>
* @return bool No value is returned.
* @since 5.2
*/
function snmp_set_oid_output_format ($oid_format = SNMP_OID_OUTPUT_MODULE) {}
@ -538,8 +520,6 @@ function snmp_set_oid_output_format ($oid_format = SNMP_OID_OUTPUT_MODULE) {}
* @link https://php.net/manual/en/function.snmp-set-oid-numeric-print.php
* @param int $oid_format
* @return void
* @since 4.3
* @since 5.0
*/
function snmp_set_oid_numeric_print ($oid_format) {}
@ -562,7 +542,6 @@ function snmp_set_oid_numeric_print ($oid_format) {}
* The number of times to retry if timeouts occur.
* </p>
* @return string|false SNMP object value on success or <b>FALSE</b> on error.
* @since 5.2
*/
function snmp2_get ($host, $community, $object_id, $timeout = 1000000, $retries = 5) {}
@ -586,7 +565,6 @@ function snmp2_get ($host, $community, $object_id, $timeout = 1000000, $retries
* </p>
* @return string|false SNMP object value on success or <b>FALSE</b> on error.
* In case of an error, an E_WARNING message is shown.
* @since 5.2
*/
function snmp2_getnext ($host, $community, $object_id, $timeout = 1000000, $retries = 5) {}
@ -616,7 +594,6 @@ function snmp2_getnext ($host, $community, $object_id, $timeout = 1000000, $retr
* </p>
* @return array an array of SNMP object values starting from the
* <i>object_id</i> as root or <b>FALSE</b> on error.
* @since 5.2
*/
function snmp2_walk ($host, $community, $object_id, $timeout = 1000000, $retries = 5) {}
@ -640,7 +617,6 @@ function snmp2_walk ($host, $community, $object_id, $timeout = 1000000, $retries
* </p>
* @return array|false an associative array of the SNMP object ids and their values on success or <b>FALSE</b> on error.
* In case of an error, an E_WARNING message is shown.
* @since 5.2
*/
function snmp2_real_walk ($host, $community, $object_id, $timeout = 1000000, $retries = 5) {}
@ -706,7 +682,6 @@ function snmp2_real_walk ($host, $community, $object_id, $timeout = 1000000, $re
* <p>
* If the SNMP host rejects the data type, an E_WARNING message like "Warning: Error in packet. Reason: (badValue) The value given has the wrong type or length." is shown.
* If an unknown or invalid OID is specified the warning probably reads "Could not add variable".
* @since 5.2
*/
function snmp2_set ($host, $community, $object_id, $type, $value, $timeout = 1000000, $retries = 5) {}
@ -744,8 +719,6 @@ function snmp2_set ($host, $community, $object_id, $type, $value, $timeout = 100
* The number of times to retry if timeouts occur.
* </p>
* @return string|false SNMP object value on success or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function snmp3_get ($host, $sec_name, $sec_level, $auth_protocol, $auth_passphrase, $priv_protocol, $priv_passphrase, $object_id, $timeout = 1000000, $retries = 5) {}
@ -785,7 +758,6 @@ function snmp3_get ($host, $sec_name, $sec_level, $auth_protocol, $auth_passphra
* </p>
* @return string|false SNMP object value on success or <b>FALSE</b> on error.
* In case of an error, an E_WARNING message is shown.
* @since 5.0
*/
function snmp3_getnext ($host, $sec_name, $sec_level, $auth_protocol, $auth_passphrase, $priv_protocol, $priv_passphrase, $object_id, $timeout = 1000000, $retries = 5) {}
@ -830,8 +802,6 @@ function snmp3_getnext ($host, $sec_name, $sec_level, $auth_protocol, $auth_pass
* </p>
* @return array an array of SNMP object values starting from the
* <i>object_id</i> as root or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function snmp3_walk ($host, $sec_name, $sec_level, $auth_protocol, $auth_passphrase, $priv_protocol, $priv_passphrase, $object_id, $timeout = 1000000, $retries = 5) {}
@ -872,8 +842,6 @@ function snmp3_walk ($host, $sec_name, $sec_level, $auth_protocol, $auth_passphr
* @return array an associative array of the
* SNMP object ids and their values on success or <b>FALSE</b> on error.
* In case of an error, an E_WARNING message is shown.
* @since 4.0
* @since 5.0
*/
function snmp3_real_walk ($host, $sec_name, $sec_level, $auth_protocol, $auth_passphrase, $priv_protocol, $priv_passphrase, $object_id, $timeout = null, $retries = null) {}
@ -954,8 +922,6 @@ function snmp3_real_walk ($host, $sec_name, $sec_level, $auth_protocol, $auth_pa
* <p>
* If the SNMP host rejects the data type, an E_WARNING message like "Warning: Error in packet. Reason: (badValue) The value given has the wrong type or length." is shown.
* If an unknown or invalid OID is specified the warning probably reads "Could not add variable".
* @since 4.0
* @since 5.0
*/
function snmp3_set ($host, $sec_name, $sec_level, $auth_protocol, $auth_passphrase, $priv_protocol, $priv_passphrase, $object_id, $type, $value, $timeout = 1000000, $retries = 5) {}
@ -983,8 +949,6 @@ function snmp3_set ($host, $sec_name, $sec_level, $auth_protocol, $auth_passphra
* </tr>
* </table>
* @return bool
* @since 4.3.3
* @since 5.0
*/
function snmp_set_valueretrieval ($method) {}
@ -994,8 +958,6 @@ function snmp_set_valueretrieval ($method) {}
* @return int OR-ed combitantion of constants ( <b>SNMP_VALUE_LIBRARY</b> or
* <b>SNMP_VALUE_PLAIN</b> ) with
* possible SNMP_VALUE_OBJECT set.
* @since 4.3.3
* @since 5.0
*/
function snmp_get_valueretrieval () {}
@ -1004,7 +966,6 @@ function snmp_get_valueretrieval () {}
* @link https://php.net/manual/en/function.snmp-read-mib.php
* @param string $filename <p>The filename of the MIB.</p>
* @return bool
* @since 5.0
*/
function snmp_read_mib ($filename) {}

View File

@ -556,7 +556,6 @@ class SoapServer {
* The object to handle the requests.
* </p>
* @return void No value is returned.
* @since 5.2
*/
public function setObject ($object) {}

View File

@ -105,8 +105,6 @@ function socket_addrinfo_explain($addr) {}
* socket_strerror(socket_last_error()) . "\n";
* }
* </code>
* @since 4.1
* @since 5.0
*/
function socket_select (array &$read, array &$write, array &$except, $tv_sec, $tv_usec = 0) {}
@ -245,8 +243,6 @@ function socket_select (array &$read, array &$write, array &$except, $tv_sec, $t
* <b>socket_last_error</b>. This error code may be passed to
* <b>socket_strerror</b> to get a textual explanation of the
* error.
* @since 4.1
* @since 5.0
*/
function socket_create ($domain, $type, $protocol) {}
@ -274,8 +270,6 @@ function socket_export_stream($socket) {}
* <b>socket_last_error</b>. This code may be passed to
* <b>socket_strerror</b> to get a textual explanation of the
* error.
* @since 4.1
* @since 5.0
*/
function socket_create_listen ($port, $backlog = 128) {}
@ -309,8 +303,6 @@ function socket_create_listen ($port, $backlog = 128) {}
* Reference to an array in which the two socket resources will be inserted.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.1
* @since 5.0
*/
function socket_create_pair ($domain, $type, $protocol, array &$fd) {}
@ -325,8 +317,6 @@ function socket_create_pair ($domain, $type, $protocol, array &$fd) {}
* <b>socket_last_error</b>. This error code may be passed to
* <b>socket_strerror</b> to get a textual explanation of the
* error.
* @since 4.1
* @since 5.0
*/
function socket_accept ($socket) {}
@ -338,8 +328,6 @@ function socket_accept ($socket) {}
* or <b>socket_accept</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.1
* @since 5.0
*/
function socket_set_nonblock ($socket) {}
@ -351,8 +339,6 @@ function socket_set_nonblock ($socket) {}
* or <b>socket_accept</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.2
* @since 5.0
*/
function socket_set_block ($socket) {}
@ -382,8 +368,6 @@ function socket_set_block ($socket) {}
* <b>socket_last_error</b>. This code may be passed to
* <b>socket_strerror</b> to get a textual explanation of the
* error.
* @since 4.1
* @since 5.0
*/
function socket_listen ($socket, $backlog = 0) {}
@ -395,8 +379,6 @@ function socket_listen ($socket, $backlog = 0) {}
* or <b>socket_accept</b>.
* </p>
* @return void No value is returned.
* @since 4.1
* @since 5.0
*/
function socket_close ($socket) {}
@ -424,8 +406,6 @@ function socket_close ($socket) {}
* return zero which means no bytes have been written. Be sure to use the
* === operator to check for <b>FALSE</b> in case of an
* error.
* @since 4.1
* @since 5.0
*/
function socket_write ($socket, $buffer, $length = 0) {}
@ -457,8 +437,6 @@ function socket_write ($socket, $buffer, $length = 0) {}
* <p>
* <b>socket_read</b> returns a zero length string ("")
* when there is no more data to read.
* @since 4.1
* @since 5.0
*/
function socket_read ($socket, $length, $type = PHP_BINARY_READ) {}
@ -490,8 +468,6 @@ function socket_read ($socket, $length, $type = PHP_BINARY_READ) {}
* <b>FALSE</b> if the socket type is not any of <b>AF_INET</b>,
* <b>AF_INET6</b>, or <b>AF_UNIX</b>, in which
* case the last socket error code is not updated.
* @since 4.1
* @since 5.0
*/
function socket_getsockname ($socket, &$addr, &$port = null) {}
@ -525,8 +501,6 @@ function socket_getsockname ($socket, &$addr, &$port = null) {}
* <b>FALSE</b> if the socket type is not any of <b>AF_INET</b>,
* <b>AF_INET6</b>, or <b>AF_UNIX</b>, in which
* case the last socket error code is not updated.
* @since 4.1
* @since 5.0
*/
function socket_getpeername ($socket, &$address, &$port = null) {}
@ -557,8 +531,6 @@ function socket_getpeername ($socket, &$address, &$port = null) {}
* <p>
* If the socket is non-blocking then this function returns <b>FALSE</b> with an
* error Operation now in progress.
* @since 4.1
* @since 5.0
*/
function socket_connect ($socket, $address, $port = 0) {}
@ -571,8 +543,6 @@ function socket_connect ($socket, $address, $port = 0) {}
* </p>
* @return string the error message associated with the <i>errno</i>
* parameter.
* @since 4.1
* @since 5.0
*/
function socket_strerror ($errno) {}
@ -603,8 +573,6 @@ function socket_strerror ($errno) {}
* The error code can be retrieved with <b>socket_last_error</b>.
* This code may be passed to <b>socket_strerror</b> to get a
* textual explanation of the error.
* @since 4.1
* @since 5.0
*/
function socket_bind ($socket, $address, $port = 0) {}
@ -669,8 +637,6 @@ function socket_bind ($socket, $address, $port = 0) {}
* calling <b>socket_last_error</b>. This error code may be
* passed to <b>socket_strerror</b> to get a textual explanation
* of the error.
* @since 4.1
* @since 5.0
*/
function socket_recv ($socket, &$buf, $len, $flags) {}
@ -723,8 +689,6 @@ function socket_recv ($socket, &$buf, $len, $flags) {}
* </table>
* </p>
* @return int|false <b>socket_send</b> returns the number of bytes sent, or <b>FALSE</b> on error.
* @since 4.1
* @since 5.0
*/
function socket_send ($socket, $buf, $len, $flags) {}
@ -811,8 +775,6 @@ function socket_sendmsg ($socket, array $message, $flags ) {}
* calling <b>socket_last_error</b>. This error code may be
* passed to <b>socket_strerror</b> to get a textual explanation
* of the error.
* @since 4.1
* @since 5.0
*/
function socket_recvfrom ($socket, &$buf, $len, $flags, &$name, &$port = null) {}
@ -883,8 +845,6 @@ function socket_recvmsg ($socket , $message, $flags) {}
* </p>
* @return int|false <b>socket_sendto</b> returns the number of bytes sent to the
* remote host, or <b>FALSE</b> if an error occurred.
* @since 4.1
* @since 5.0
*/
function socket_sendto ($socket, $buf, $len, $flags, $addr, $port = 0) {}
@ -1251,8 +1211,6 @@ function socket_sendto ($socket, $buf, $len, $flags, $addr, $port = 0) {}
* </tr>
* </table>
* @return mixed|false the value of the given option, or <b>FALSE</b> on errors.
* @since 4.3
* @since 5.0
*/
function socket_get_option ($socket, $level, $optname) {}
@ -1280,8 +1238,6 @@ function socket_get_option ($socket, $level, $optname) {}
* The option value.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.3
* @since 5.0
*/
function socket_set_option ($socket, $level, $optname, $optval) {}
@ -1316,8 +1272,6 @@ function socket_set_option ($socket, $level, $optname, $optval) {}
* </table>
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.1
* @since 5.0
*/
function socket_shutdown ($socket, $how = 2) {}
@ -1328,8 +1282,6 @@ function socket_shutdown ($socket, $how = 2) {}
* A valid socket resource created with <b>socket_create</b>.
* </p>
* @return int This function returns a socket error code.
* @since 4.1
* @since 5.0
*/
function socket_last_error ($socket = null) {}
@ -1340,8 +1292,6 @@ function socket_last_error ($socket = null) {}
* A valid socket resource created with <b>socket_create</b>.
* </p>
* @return void No value is returned.
* @since 4.2
* @since 5.0
*/
function socket_clear_error ($socket = null) {}

View File

@ -26,7 +26,6 @@ class SQLite3 {
* SQLite database.
* </p>
* @return void No value is returned.
* @since 5.3
*/
public function open ($filename, $flags = SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_CREATE, $encryption_key = null) {}
@ -34,7 +33,6 @@ class SQLite3 {
* Closes the database connection
* @link https://php.net/manual/en/sqlite3.close.php
* @return bool <b>TRUE</b> on success, <b>FALSE</b> on failure.
* @since 5.3
*/
public function close () {}
@ -46,7 +44,6 @@ class SQLite3 {
* query).
* </p>
* @return bool <b>TRUE</b> if the query succeeded, <b>FALSE</b> on failure.
* @since 5.3
*/
public function exec ($query) {}
@ -55,7 +52,6 @@ class SQLite3 {
* @link https://php.net/manual/en/sqlite3.version.php
* @return array an associative array with the keys "versionString" and
* "versionNumber".
* @since 5.3
*/
public static function version () {}
@ -63,7 +59,6 @@ class SQLite3 {
* Returns the row ID of the most recent INSERT into the database
* @link https://php.net/manual/en/sqlite3.lastinsertrowid.php
* @return int the row ID of the most recent INSERT into the database
* @since 5.3
*/
public function lastInsertRowID () {}
@ -72,7 +67,6 @@ class SQLite3 {
* @link https://php.net/manual/en/sqlite3.lasterrorcode.php
* @return int an integer value representing the numeric result code of the most
* recent failed SQLite request.
* @since 5.3
*/
public function lastErrorCode () {}
@ -80,7 +74,6 @@ class SQLite3 {
* Returns English text describing the most recent failed SQLite request
* @link https://php.net/manual/en/sqlite3.lasterrormsg.php
* @return string an English string describing the most recent failed SQLite request.
* @since 5.3
*/
public function lastErrorMsg () {}
@ -104,14 +97,12 @@ class SQLite3 {
* directory specified in the configure option sqlite3.extension_dir.
* </p>
* @return bool <b>TRUE</b> if the extension is successfully loaded, <b>FALSE</b> on failure.
* @since 5.3
*/
public function loadExtension ($shared_library) {}
/**
* Returns the number of database rows that were changed (or inserted or
* deleted) by the most recent SQL statement
* @since 5.3
* @link https://php.net/manual/en/sqlite3.changes.php
* @return int an integer value corresponding to the number of
* database rows changed (or inserted or deleted) by the most recent SQL
@ -127,7 +118,6 @@ class SQLite3 {
* </p>
* @return string a properly escaped string that may be used safely in an SQL
* statement.
* @since 5.3
*/
public static function escapeString ($value) {}
@ -138,7 +128,6 @@ class SQLite3 {
* The SQL query to prepare.
* </p>
* @return SQLite3Stmt|false an <b>SQLite3Stmt</b> object on success or <b>FALSE</b> on failure.
* @since 5.3
*/
public function prepare ($query) {}
@ -150,7 +139,6 @@ class SQLite3 {
* </p>
* @return SQLite3Result an <b>SQLite3Result</b> object if the query returns results. Otherwise,
* returns <b>TRUE</b> if the query succeeded, <b>FALSE</b> on failure.
* @since 5.3
*/
public function query ($query) {}
@ -176,7 +164,6 @@ class SQLite3 {
* </p>
* <p>
* Invalid or failing queries will return <b>FALSE</b>.
* @since 5.3
*/
public function querySingle ($query, $entire_row = false) {}
@ -200,7 +187,6 @@ class SQLite3 {
* Currently, only <b>SQLITE3_DETERMINISTIC</b> is supported, which specifies that the function always returns
* the same result given the same inputs within a single SQL statement.</p>
* @return bool <b>TRUE</b> upon successful creation of the function, <b>FALSE</b> on failure.
* @since 5.3
*/
public function createFunction ($name, $callback, $argument_count = -1, int $flags = 0) {}
@ -225,7 +211,6 @@ class SQLite3 {
* </p>
* @return bool <b>TRUE</b> upon successful creation of the aggregate, <b>FALSE</b> on
* failure.
* @since 5.3
*/
public function createAggregate ($name, $step_callback, $final_callback, $argument_count = -1) {}
@ -282,7 +267,6 @@ class SQLite3 {
* An optional encryption key used when encrypting and decrypting an
* SQLite database.
* </p>
* @since 5.3
*/
public function __construct ($filename, $flags = null, $encryption_key = null) {}
@ -318,7 +302,6 @@ class SQLite3Stmt {
* Returns the number of parameters within the prepared statement
* @link https://php.net/manual/en/sqlite3stmt.paramcount.php
* @return int the number of parameters within the prepared statement.
* @since 5.3
*/
public function paramCount () {}
@ -326,7 +309,6 @@ class SQLite3Stmt {
* Closes the prepared statement
* @link https://php.net/manual/en/sqlite3stmt.close.php
* @return bool <b>TRUE</b>
* @since 5.3
*/
public function close () {}
@ -334,7 +316,6 @@ class SQLite3Stmt {
* Resets the prepared statement
* @link https://php.net/manual/en/sqlite3stmt.reset.php
* @return bool <b>TRUE</b> if the statement is successfully reset, <b>FALSE</b> on failure.
* @since 5.3
*/
public function reset () {}
@ -343,7 +324,6 @@ class SQLite3Stmt {
* @link https://php.net/manual/en/sqlite3stmt.clear.php
* @return bool <b>TRUE</b> on successful clearing of bound parameters, <b>FALSE</b> on
* failure.
* @since 5.3
*/
public function clear () {}
@ -352,7 +332,6 @@ class SQLite3Stmt {
* @link https://php.net/manual/en/sqlite3stmt.execute.php
* @return SQLite3Result an <b>SQLite3Result</b> object on successful execution of the prepared
* statement, <b>FALSE</b> on failure.
* @since 5.3
*/
public function execute () {}
@ -375,7 +354,6 @@ class SQLite3Stmt {
* </p>
* @return bool <b>TRUE</b> if the parameter is bound to the statement variable, <b>FALSE</b>
* on failure.
* @since 5.3
*/
public function bindParam ($sql_param, &$param, $type = null) {}
@ -398,7 +376,6 @@ class SQLite3Stmt {
* </p>
* @return bool <b>TRUE</b> if the value is bound to the statement variable, <b>FALSE</b>
* on failure.
* @since 5.3
*/
public function bindValue ($sql_param, $value, $type = null) {}
@ -430,7 +407,6 @@ class SQLite3Result {
* Returns the number of columns in the result set
* @link https://php.net/manual/en/sqlite3result.numcolumns.php
* @return int the number of columns in the result set.
* @since 5.3
*/
public function numColumns () {}
@ -442,7 +418,6 @@ class SQLite3Result {
* </p>
* @return string the string name of the column identified by
* <i>column_number</i>.
* @since 5.3
*/
public function columnName ($column_number) {}
@ -457,7 +432,6 @@ class SQLite3Result {
* <b>SQLITE3_INTEGER</b>, <b>SQLITE3_FLOAT</b>,
* <b>SQLITE3_TEXT</b>, <b>SQLITE3_BLOB</b>, or
* <b>SQLITE3_NULL</b>).
* @since 5.3
*/
public function columnType ($column_number) {}
@ -474,7 +448,6 @@ class SQLite3Result {
* </p>
* @return array|false a result row as an associatively or numerically indexed array or
* both. Alternately will return <b>FALSE</b> if there are no more rows.
* @since 5.3
*/
public function fetchArray ($mode = SQLITE3_BOTH) {}
@ -483,7 +456,6 @@ class SQLite3Result {
* @link https://php.net/manual/en/sqlite3result.reset.php
* @return bool <b>TRUE</b> if the result set is successfully reset
* back to the first row, <b>FALSE</b> on failure.
* @since 5.3
*/
public function reset () {}
@ -491,7 +463,6 @@ class SQLite3Result {
* Closes the result set
* @link https://php.net/manual/en/sqlite3result.finalize.php
* @return bool <b>TRUE</b>.
* @since 5.3
*/
public function finalize () {}

View File

@ -360,7 +360,6 @@ class object {
/**
* This static method is called for classes exported by var_export() since PHP 5.1.0.
* The only parameter of this method is an array containing exported properties in the form array('property' => value, ...).
* @since 5.1
*
* @param $an_array array
* @return mixed

View File

@ -33,8 +33,6 @@
* and execution is stopped. If <b>dl</b> fails because the
* specified library couldn't be loaded, in addition to <b>FALSE</b> an
* <b>E_WARNING</b> message is emitted.
* @since 4.0
* @since 5.0
*/
function dl ($library) {}
@ -73,16 +71,12 @@ function is_iterable($value) {}
* An ISO-8859-1 string.
* </p>
* @return string the UTF-8 translation of <i>data</i>.
* @since 4.0
* @since 5.0
*/
function utf8_encode ($data) {}
/**
* Converts a string with ISO-8859-1 characters encoded with UTF-8
* @since 4.0
* @since 5.0
to single-byte ISO-8859-1
* to single-byte ISO-8859-1
* @link https://php.net/manual/en/function.utf8-decode.php
* @param string $data <p>
* An UTF-8 encoded string.
@ -207,7 +201,6 @@ define ('__TRAIT__', '', true);
* the directory of the included file is returned. This is equivalent
* to dirname(__FILE__). This directory name
* does not have a trailing slash unless it is the root directory.
* @since 5.3
* @link https://php.net/manual/en/language.constants.predefined.php
*/
define ('__DIR__', '', true);
@ -215,7 +208,6 @@ define ('__DIR__', '', true);
/**
* The name of the current namespace (case-sensitive). This constant
* is defined in compile-time (Added in PHP 5.3.0).
* @since 5.3
* @link https://php.net/manual/en/language.constants.predefined.php
*/
define ('__NAMESPACE__', '', true);

View File

@ -193,7 +193,6 @@ function time_nanosleep ($seconds, $nanoseconds) {}
* The timestamp when the script should wake.
* </p>
* @return bool true on success or false on failure.
* @since 5.1
*/
function time_sleep_until ($timestamp) {}
@ -258,7 +257,6 @@ function time_sleep_until ($timestamp) {}
* recognized using the specified format</td>
* </tr>
* </table>
* @since 5.1
*/
function strptime ($date, $format) {}
@ -527,7 +525,6 @@ function html_entity_decode ($string, $quote_style = null, $charset = null) {}
* </table>
* </p>
* @return string the decoded string.
* @since 5.1
*/
function htmlspecialchars_decode ($string, $quote_style = null) {}
@ -873,7 +870,6 @@ function getimagesize ($filename, array &$imageinfo = null) {}
/**
* Get Mime-Type for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype
* @since 4.3
* @link https://php.net/manual/en/function.image-type-to-mime-type.php
* @param int $imagetype <p>
* One of the IMAGETYPE_XXX constants.

View File

@ -8,8 +8,6 @@
* The input string.
* </p>
* @return string the uppercased string.
* @since 4.0
* @since 5.0
*/
function strtoupper ($string) {}
@ -20,8 +18,6 @@ function strtoupper ($string) {}
* The input string.
* </p>
* @return string the lowercased string.
* @since 4.0
* @since 5.0
*/
function strtolower ($str) {}
@ -48,8 +44,6 @@ function strtolower ($str) {}
* <p>
* Returns <b>FALSE</b> if the needle was not found.
* </p>
* @since 4.0
* @since 5.0
*/
function strpos ($haystack, $needle, $offset = 0) {}
@ -75,7 +69,6 @@ function strpos ($haystack, $needle, $offset = 0) {}
* </p>
* @return int|false If needle is not found,
* stripos will return boolean false.
* @since 5.0
*/
function stripos ($haystack, $needle, $offset = null) {}
@ -100,8 +93,6 @@ function stripos ($haystack, $needle, $offset = null) {}
* <p>
* Returns <b>FALSE</b> if the needle was not found.
* </p>
* @since 4.0
* @since 5.0
*/
function strrpos ($haystack, $needle, $offset = 0) {}
@ -130,7 +121,6 @@ function strrpos ($haystack, $needle, $offset = 0) {}
* </p>
* <p>
* If needle is not found, false is returned.
* @since 5.0
*/
function strripos ($haystack, $needle, $offset = null) {}
@ -141,8 +131,6 @@ function strripos ($haystack, $needle, $offset = null) {}
* The string to be reversed.
* </p>
* @return string the reversed string.
* @since 4.0
* @since 5.0
*/
function strrev ($string) {}
@ -157,8 +145,6 @@ function strrev ($string) {}
* line that will be returned.
* </p>
* @return string the visual string.
* @since 4.0
* @since 5.0
*/
function hebrev ($hebrew_text, $max_chars_per_line = null) {}
@ -173,8 +159,6 @@ function hebrev ($hebrew_text, $max_chars_per_line = null) {}
* line that will be returned.
* </p>
* @return string the visual string.
* @since 4.0
* @since 5.0
* @deprecated 7.4
*/
function hebrevc ($hebrew_text, $max_chars_per_line = null) {}
@ -189,8 +173,6 @@ function hebrevc ($hebrew_text, $max_chars_per_line = null) {}
* Whenever to use XHTML compatible line breaks or not.
* </p>
* @return string the altered string.
* @since 4.0
* @since 5.0
*/
function nl2br ($string, $is_xhtml = true) {}
@ -210,8 +192,6 @@ function nl2br ($string, $is_xhtml = true) {}
* be cut off.
* </p>
* @return string the base name of the given path.
* @since 4.0
* @since 5.0
*/
function basename ($path, $suffix = null) {}
@ -235,8 +215,6 @@ function basename ($path, $suffix = null) {}
* indicating the current directory. Otherwise, the returned string is
* path with any trailing
* /component removed.
* @since 4.0
* @since 5.0
*/
function dirname ($path, $levels = 1) {}
@ -262,8 +240,6 @@ function dirname ($path, $levels = 1) {}
* <p>
* If options is used, this function will return a
* string if not all elements are requested.
* @since 4.0.3
* @since 5.0
*/
function pathinfo ($path, $options = null) {}
@ -277,8 +253,6 @@ function pathinfo ($path, $options = null) {}
* (\' becomes ' and so on.)
* Double backslashes (\\) are made into a single
* backslash (\).
* @since 4.0
* @since 5.0
*/
function stripslashes ($str) {}
@ -289,8 +263,6 @@ function stripslashes ($str) {}
* The string to be unescaped.
* </p>
* @return string the unescaped string.
* @since 4.0
* @since 5.0
*/
function stripcslashes ($str) {}
@ -311,8 +283,6 @@ function stripcslashes ($str) {}
* </p>
* @return string|false the portion of string, or false if needle
* is not found.
* @since 4.0
* @since 5.0
*/
function strstr ($haystack, $needle, $before_needle = null) {}
@ -333,8 +303,6 @@ function strstr ($haystack, $needle, $before_needle = null) {}
* </p>
* @return string|false the matched substring. If needle is not
* found, returns false.
* @since 4.0
* @since 5.0
*/
function stristr ($haystack, $needle, $before_needle = null) {}
@ -356,8 +324,6 @@ function stristr ($haystack, $needle, $before_needle = null) {}
* This function returns the portion of string, or <b>FALSE</b> if
* <b>needle</b> is not found.
* </p>
* @since 4.0
* @since 5.0
*/
function strrchr ($haystack, $needle) {}
@ -368,8 +334,6 @@ function strrchr ($haystack, $needle) {}
* The input string.
* </p>
* @return string the shuffled string.
* @since 4.3
* @since 5.0
*/
function str_shuffle ($str) {}
@ -389,8 +353,6 @@ function str_shuffle ($str) {}
* </p>
* @return string[]|int an array or an integer, depending on the
* format chosen.
* @since 4.3
* @since 5.0
*/
function str_word_count ($string, $format = null, $charlist = null) {}
@ -413,7 +375,6 @@ function str_word_count ($string, $format = null, $charlist = null) {}
* If the split_length length exceeds the length of
* string, the entire string is returned as the first
* (and only) array element.
* @since 5.0
*/
function str_split ($string, $split_length = 1) {}
@ -428,7 +389,6 @@ function str_split ($string, $split_length = 1) {}
* </p>
* @return string|false a string starting from the character found, or false if it is
* not found.
* @since 5.0
*/
function strpbrk ($haystack, $char_list) {}
@ -459,7 +419,6 @@ function strpbrk ($haystack, $char_list) {}
* main_str or length is set and
* is less than 1, substr_compare prints a warning and returns
* false.
* @since 5.0
*/
function substr_compare ($main_str, $str, $offset, $length = null, $case_insensitivity = null) {}
@ -476,8 +435,6 @@ function substr_compare ($main_str, $str, $offset, $length = null, $case_insensi
* str2; &gt; 0 if
* str1 is greater than
* str2, and 0 if they are equal.
* @since 4.0.5
* @since 5.0
*/
function strcoll ($str1, $str2) {}
@ -494,8 +451,6 @@ function strcoll ($str1, $str2) {}
* string will be returned unchanged.
* Non-numeric number causes returning &null; and
* emitting E_WARNING.
* @since 4.3
* @since 5.0
* @deprecated 7.4
*/
function money_format ($format, $number) {}
@ -562,8 +517,6 @@ function money_format ($format, $number) {}
* ?>
* </pre>
* @return string|false the extracted part of string or false on failure.
* @since 4.0
* @since 5.0
*/
function substr ($string, $start, $length = null) {}
@ -601,8 +554,6 @@ function substr ($string, $start, $length = null) {}
* </p>
* @return string|string[] The result string is returned. If string is an
* array then array is returned.
* @since 4.0
* @since 5.0
*/
function substr_replace ($string, $replacement, $start, $length = null) {}
@ -613,8 +564,6 @@ function substr_replace ($string, $replacement, $start, $length = null) {}
* The input string.
* </p>
* @return string the string with meta characters quoted.
* @since 4.0
* @since 5.0
*/
function quotemeta ($str) {}
@ -625,8 +574,6 @@ function quotemeta ($str) {}
* The input string.
* </p>
* @return string the resulting string.
* @since 4.0
* @since 5.0
*/
function ucfirst ($str) {}
@ -637,7 +584,6 @@ function ucfirst ($str) {}
* The input string.
* </p>
* @return string the resulting string.
* @since 5.3
*/
function lcfirst ($str) {}
@ -649,8 +595,6 @@ function lcfirst ($str) {}
* </p>
* @param string $delimiters [optional] <p>
* @return string the modified string.
* @since 4.0
* @since 5.0
*/
function ucwords ($str, $delimiters = " \t\r\n\f\v") {}
@ -670,7 +614,6 @@ function ucwords ($str, $delimiters = " \t\r\n\f\v") {}
* translating all occurrences of each character in
* from to the corresponding character in
* to.
* @since 5.0
*/
function strtr ($str, $from, $to) {}
@ -680,7 +623,6 @@ function strtr ($str, $from, $to) {}
* @param string $str The string being translated.
* @param array $replace_pairs The replace_pairs parameter may be used as a substitute for to and from in which case it's an array in the form array('from' => 'to', ...).
* @return string A copy of str, translating all occurrences of each character in from to the corresponding character in to.
* @since 5.0
*/
function strtr ($str, array $replace_pairs) {}
@ -691,8 +633,6 @@ function strtr ($str, array $replace_pairs) {}
* The string to be escaped.
* </p>
* @return string the escaped string.
* @since 4.0
* @since 5.0
*/
function addslashes ($str) {}
@ -745,8 +685,6 @@ function addslashes ($str) {}
* while in C all of these are predefined escape sequences.
* </p>
* @return string the escaped string.
* @since 4.0
* @since 5.0
*/
function addcslashes ($str, $charlist) {}
@ -772,8 +710,6 @@ function addcslashes ($str, $charlist) {}
* .. you can specify a range of characters.
* </p>
* @return string the modified string.
* @since 4.0
* @since 5.0
*/
function rtrim ($str, $charlist = " \t\n\r\0\x0B") {}
@ -800,8 +736,6 @@ function rtrim ($str, $charlist = " \t\n\r\0\x0B") {}
* </p>
* @param int $count [optional] If passed, this will hold the number of matched and replaced needles.
* @return string|string[] This function returns a string or an array with the replaced values.
* @since 4.0
* @since 5.0
*/
function str_replace ($search, $replace, $subject, &$count = null) {}
@ -826,7 +760,6 @@ function str_replace ($search, $replace, $subject, &$count = null) {}
* reference.
* </p>
* @return string|string[] a string or an array of replacements.
* @since 5.0
*/
function str_ireplace ($search, $replace, $subject, &$count = null) {}
@ -846,8 +779,6 @@ function str_ireplace ($search, $replace, $subject, &$count = null) {}
* will return an empty string.
* </p>
* @return string the repeated string.
* @since 4.0
* @since 5.0
*/
function str_repeat ($input, $multiplier) {}
@ -870,8 +801,6 @@ function str_repeat ($input, $multiplier) {}
* zero are listed.
* 3 - a string containing all unique characters is returned.
* 4 - a string containing all not used characters is returned.
* @since 4.0
* @since 5.0
*/
function count_chars ($string, $mode = null) {}
@ -888,8 +817,6 @@ function count_chars ($string, $mode = null) {}
* The line ending sequence.
* </p>
* @return string the chunked string.
* @since 4.0
* @since 5.0
*/
function chunk_split ($body, $chunklen = null, $end = null) {}
@ -906,8 +833,6 @@ function chunk_split ($body, $chunklen = null, $end = null) {}
* .. you can specify a range of characters.
* </p>
* @return string The trimmed string.
* @since 4.0
* @since 5.0
*/
function trim ($str, $charlist = " \t\n\r\0\x0B") {}
@ -939,8 +864,6 @@ function trim ($str, $charlist = " \t\n\r\0\x0B") {}
* (0x00)), the NUL-byte.
* "\x0B" (ASCII 11
* (0x0B)), a vertical tab.
* @since 4.0
* @since 5.0
*/
function ltrim ($str, $charlist = " \t\n\r\0\x0B") {}
@ -959,8 +882,6 @@ function ltrim ($str, $charlist = " \t\n\r\0\x0B") {}
* can not be changed with allowable_tags.
* </p>
* @return string the stripped string.
* @since 4.0
* @since 5.0
*/
function strip_tags ($str, $allowable_tags = null) {}
@ -979,8 +900,6 @@ function strip_tags ($str, $allowable_tags = null) {}
* percent for you.
* </p>
* @return int the number of matching chars in both strings.
* @since 4.0
* @since 5.0
*/
function similar_text ($first, $second, &$percent = null) {}
@ -1012,8 +931,6 @@ function similar_text ($first, $second, &$percent = null) {}
* limit is used, then an empty array will be
* returned. For any other limit, an array containing
* string will be returned.
* @since 4.0
* @since 5.0
*/
function explode ($delimiter, $string, $limit = null) {}
@ -1030,8 +947,6 @@ function explode ($delimiter, $string, $limit = null) {}
* </p>
* @return string a string containing a string representation of all the array
* elements in the same order, with the glue string between each element.
* @since 4.0
* @since 5.0
*/
function implode ($glue = "", array $pieces) {}
@ -1048,8 +963,6 @@ function implode ($glue = "", array $pieces) {}
* </p>
* @return string a string containing a string representation of all the array
* elements in the same order, with the glue string between each element.
* @since 4.0
* @since 5.0
*/
function join ($glue = "", $pieces) {}
@ -1122,8 +1035,6 @@ function join ($glue = "", $pieces) {}
* The return value of setlocale depends
* on the system that PHP is running. It returns exactly
* what the system setlocale function returns.
* @since 4.0
* @since 5.0
*/
function setlocale ($category, $locale, $_ = null) {}
@ -1244,7 +1155,5 @@ function setlocale ($category, $locale, $_ = null) {}
* grouping is. If an array element is equal to CHAR_MAX,
* no further grouping is done. If an array element is equal to 0, the previous
* element should be used.
* @since 4.0.5
* @since 5.0
*/
function localeconv () {}

View File

@ -142,8 +142,6 @@
* Returns 0 if parentheses surround the quantity and CURRENCY_SYMBOL.
* @return string|false the element as a string, or false if item
* is not valid.
* @since 4.1
* @since 5.0
*/
function nl_langinfo ($item) {}
@ -154,8 +152,6 @@ function nl_langinfo ($item) {}
* The input string.
* </p>
* @return string the soundex key as a string.
* @since 4.0
* @since 5.0
*/
function soundex ($str) {}
@ -186,8 +182,6 @@ function soundex ($str) {}
* @return int This function returns the Levenshtein-Distance between the
* two argument strings or -1, if one of the argument strings
* is longer than the limit of 255 characters.
* @since 4.0.1
* @since 5.0
*/
function levenshtein ($str1, $str2, $cost_ins = null, $cost_rep = null, $cost_del = null) {}
@ -198,8 +192,6 @@ function levenshtein ($str1, $str2, $cost_ins = null, $cost_rep = null, $cost_de
* The ascii code.
* </p>
* @return string the specified character.
* @since 4.0
* @since 5.0
*/
function chr ($ascii) {}
@ -210,8 +202,6 @@ function chr ($ascii) {}
* A character.
* </p>
* @return int the ASCII value as an integer.
* @since 4.0
* @since 5.0
*/
function ord ($string) {}
@ -227,8 +217,6 @@ function ord ($string) {}
* Since 7.2.0 this parameter is not optional.
* </p>
* @return void
* @since 4.0
* @since 5.0
*/
function parse_str ($str, array &$result = null) {}
@ -249,7 +237,6 @@ function parse_str ($str, array &$result = null) {}
* Defaults as a backslash (\)
* </p>
* @return array an indexed array containing the fields read.
* @since 5.3
*/
function str_getcsv ($input, $delimiter = ",", $enclosure = '"', $escape = "\\") {}
@ -277,8 +264,6 @@ function str_getcsv ($input, $delimiter = ",", $enclosure = '"', $escape = "\\")
* STR_PAD_RIGHT.
* </p>
* @return string the padded string.
* @since 4.0.1
* @since 5.0
*/
function str_pad ($input, $pad_length, $pad_string = " ", $pad_type = STR_PAD_RIGHT) {}
@ -289,8 +274,6 @@ function str_pad ($input, $pad_length, $pad_string = " ", $pad_type = STR_PAD_RI
* @param string $str The input string.
* @param string $character_mask [optional]
* @return string the modified string.
* @since 4.0
* @since 5.0
*/
function chop ($str, $character_mask = null) {}
@ -300,8 +283,6 @@ function chop ($str, $character_mask = null) {}
* Note: This function is case-sensitive. For case-insensitive searches, use stristr().
* Note: If you only want to determine if a particular needle occurs within haystack,
* use the faster and less memory intensive function strpos() instead.
* @since 4.0
* @since 5.0
*
* @param string $haystack The input string.
* @param mixed $needle If needle is not a string, it is converted to an integer and applied as the ordinal value of a character.
@ -334,8 +315,6 @@ function strchr ($haystack, $needle, $part = false) {}
* @param mixed $_ [optional]
* @return string a string produced according to the formatting string
* format.
* @since 4.0
* @since 5.0
*/
function sprintf ($format, $args = null, $_ = null) {}
@ -350,8 +329,6 @@ function sprintf ($format, $args = null, $_ = null) {}
* </p>
* @param mixed $_ [optional]
* @return int the length of the outputted string.
* @since 4.0
* @since 5.0
*/
function printf ($format, $args = null, $_ = null) {}
@ -365,8 +342,6 @@ function printf ($format, $args = null, $_ = null) {}
* @param array $args <p>
* </p>
* @return int the length of the outputted string.
* @since 4.1
* @since 5.0
*/
function vprintf ($format, array $args) {}
@ -382,8 +357,6 @@ function vprintf ($format, array $args) {}
* @return string Return array values as a formatted string according to
* format (which is described in the documentation
* for sprintf).
* @since 4.1
* @since 5.0
*/
function vsprintf ($format, array $args) {}
@ -399,7 +372,6 @@ function vsprintf ($format, array $args) {}
* </p>
* @param mixed $_ [optional]
* @return int the length of the string written.
* @since 5.0
*/
function fprintf ($handle, $format, $args = null, $_ = null) {}
@ -415,7 +387,6 @@ function fprintf ($handle, $format, $args = null, $_ = null) {}
* @param array $args <p>
* </p>
* @return int the length of the outputted string.
* @since 5.0
*/
function vfprintf ($handle, $format, array $args) {}
@ -442,8 +413,6 @@ function vfprintf ($handle, $format, array $args) {}
* will be returned as an array. Otherwise, if optional parameters are passed,
* the function will return the number of assigned values. The optional
* parameters must be passed by reference.
* @since 4.0.1
* @since 5.0
*/
function sscanf ($str, $format, &...$_) {}
@ -460,8 +429,6 @@ function sscanf ($str, $format, &...$_) {}
* returned as an array. Otherwise, if optional parameters are passed, the
* function will return the number of assigned values. The optional
* parameters must be passed by reference.
* @since 4.0.1
* @since 5.0
*/
function fscanf ($handle, $format, &$_ = null) {}
@ -495,8 +462,6 @@ function fscanf ($handle, $format, &$_ = null) {}
* <p>
* If the component parameter is specified a
* string is returned instead of an array.
* @since 4.0
* @since 5.0
*/
function parse_url ($url, $component = -1) {}
@ -515,8 +480,6 @@ function parse_url ($url, $component = -1) {}
* differs from the RFC 1738 encoding (see
* rawurlencode) in that for historical reasons, spaces
* are encoded as plus (+) signs.
* @since 4.0
* @since 5.0
*/
function urlencode ($str) {}
@ -527,8 +490,6 @@ function urlencode ($str) {}
* The string to be decoded.
* </p>
* @return string the decoded string.
* @since 4.0
* @since 5.0
*/
function urldecode ($str) {}
@ -545,8 +506,6 @@ function urldecode ($str) {}
* protecting literal characters from being interpreted as special URL
* delimiters, and for protecting URLs from being mangled by transmission
* media with character conversions (like some email systems).
* @since 4.0
* @since 5.0
*/
function rawurlencode ($str) {}
@ -557,8 +516,6 @@ function rawurlencode ($str) {}
* The URL to be decoded.
* </p>
* @return string the decoded URL, as a string.
* @since 4.0
* @since 5.0
*/
function rawurldecode ($str) {}
@ -594,7 +551,6 @@ function rawurldecode ($str) {}
* which implies that spaces are encoded as plus (+) signs.
* <p>If enc_type is PHP_QUERY_RFC3986, then encoding is performed according to » RFC 3986, and spaces will be percent encoded (%20).
* @return string a URL-encoded string.
* @since 5.0
*/
function http_build_query ($query_data, $numeric_prefix = null, $arg_separator = null, $enc_type = PHP_QUERY_RFC1738){}
@ -605,8 +561,6 @@ function http_build_query ($query_data, $numeric_prefix = null, $arg_separator =
* The symbolic link path.
* </p>
* @return string|false the contents of the symbolic link path or false on error.
* @since 4.0
* @since 5.0
*/
function readlink ($path) {}
@ -619,8 +573,6 @@ function readlink ($path) {}
* @return int linkinfo returns the st_dev field
* of the Unix C stat structure returned by the lstat
* system call. Returns 0 or false in case of error.
* @since 4.0
* @since 5.0
*/
function linkinfo ($path) {}
@ -634,8 +586,6 @@ function linkinfo ($path) {}
* The link name.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function symlink ($target, $link) {}
@ -645,8 +595,6 @@ function symlink ($target, $link) {}
* @param string $target Target of the link.
* @param string $link The link name.
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function link (string $target , string $link):bool {}
@ -658,8 +606,6 @@ function link (string $target , string $link):bool {}
* </p>
* @param resource $context [optional] &note.context-support;
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function unlink ($filename, $context = null):bool {}
@ -692,8 +638,6 @@ function unlink ($filename, $context = null):bool {}
* <p>
* To get the output of the executed command, be sure to set and use the
* output parameter.
* @since 4.0
* @since 5.0
*/
function exec ($command, array &$output = null, &$return_var = null) {}
@ -710,8 +654,6 @@ function exec ($command, array &$output = null, &$return_var = null) {}
* </p>
* @return string|false the last line of the command output on success, and false
* on failure.
* @since 4.0
* @since 5.0
*/
function system ($command, &$return_var = null) {}
@ -722,8 +664,6 @@ function system ($command, &$return_var = null) {}
* The command that will be escaped.
* </p>
* @return string The escaped string.
* @since 4.0
* @since 5.0
*/
function escapeshellcmd ($command) {}
@ -734,8 +674,6 @@ function escapeshellcmd ($command) {}
* The argument that will be escaped.
* </p>
* @return string The escaped string.
* @since 4.0.3
* @since 5.0
*/
function escapeshellarg ($arg) {}
@ -750,8 +688,6 @@ function escapeshellarg ($arg) {}
* return status of the Unix command will be placed here.
* </p>
* @return void
* @since 4.0
* @since 5.0
*/
function passthru ($command, &$return_var = null) {}
@ -762,8 +698,6 @@ function passthru ($command, &$return_var = null) {}
* The command that will be executed.
* </p>
* @return string|null The output from the executed command or NULL if an error occurred or the command produces no output.
* @since 4.0
* @since 5.0
*/
function shell_exec ($cmd) {}
@ -827,8 +761,6 @@ function shell_exec ($cmd) {}
* @return resource|false a resource representing the process, which should be freed using
* proc_close when you are finished with it. On failure
* returns false.
* @since 4.3
* @since 5.0
*/
function proc_open ($cmd, array $descriptorspec, array &$pipes, $cwd = null, array $env = null, array $other_options = null) {}
@ -840,8 +772,6 @@ function proc_open ($cmd, array $descriptorspec, array &$pipes, $cwd = null, arr
* be closed.
* </p>
* @return int the termination status of the process that was run.
* @since 4.3
* @since 5.0
*/
function proc_close ($process) {}
@ -859,7 +789,6 @@ function proc_close ($process) {}
* SIGTERM.
* </p>
* @return bool the termination status of the process that was run.
* @since 5.0
*/
function proc_terminate ($process, $signal = 15) {}
@ -937,7 +866,6 @@ function proc_terminate ($process, $signal = 15) {}
* execution (only meaningful if stopped is true).
* </td>
* </tr>
* @since 5.0
*/
function proc_get_status ($process) {}
@ -951,7 +879,6 @@ function proc_get_status ($process) {}
* @return bool true on success or false on failure.
* If an error occurs, like the user lacks permission to change the priority,
* an error of level E_WARNING is also generated.
* @since 5.0
*/
function proc_nice ($increment) {}
@ -962,8 +889,6 @@ function proc_nice ($increment) {}
* @param int $max [optional]
* @return int A pseudo random value between min
* (or 0) and max (or getrandmax, inclusive).
* @since 4.0
* @since 5.0
*/
function rand ($min = 0, $max = null) {}
@ -980,8 +905,6 @@ function rand ($min = 0, $max = null) {}
* Use one of the following constants to specify the implementation of the algorithm to use.
* </p>
* @return void
* @since 4.0
* @since 5.0
*/
function srand ($seed = null, $mode = MT_RAND_MT19937) {}
@ -989,8 +912,6 @@ function srand ($seed = null, $mode = MT_RAND_MT19937) {}
* Show largest possible random value
* @link https://php.net/manual/en/function.getrandmax.php
* @return int The largest possible random value returned by rand
* @since 4.0
* @since 5.0
*/
function getrandmax () {}
@ -1005,8 +926,6 @@ function getrandmax () {}
* </p>
* @return int A random integer value between min (or 0)
* and max (or mt_getrandmax, inclusive)
* @since 4.0
* @since 5.0
*/
function mt_rand ($min = 0, $max = null) {}
@ -1020,8 +939,6 @@ function mt_rand ($min = 0, $max = null) {}
* Use one of the following constants to specify the implementation of the algorithm to use.
* </p>
* @return void
* @since 4.0
* @since 5.0
*/
function mt_srand ($seed = null, $mode = MT_RAND_MT19937) {}
@ -1029,8 +946,6 @@ function mt_srand ($seed = null, $mode = MT_RAND_MT19937) {}
* Show largest possible random value
* @link https://php.net/manual/en/function.mt-getrandmax.php
* @return int the maximum random value returned by mt_rand
* @since 4.0
* @since 5.0
*/
function mt_getrandmax () {}
@ -1046,8 +961,6 @@ function mt_getrandmax () {}
* </p>
* @return int the port number, or false if service or
* protocol is not found.
* @since 4.0
* @since 5.0
*/
function getservbyname ($service, $protocol) {}
@ -1062,8 +975,6 @@ function getservbyname ($service, $protocol) {}
* or "udp" (in lowercase).
* </p>
* @return string the Internet service name as a string.
* @since 4.0
* @since 5.0
*/
function getservbyport ($port, $protocol) {}
@ -1074,8 +985,6 @@ function getservbyport ($port, $protocol) {}
* The protocol name.
* </p>
* @return int the protocol number or -1 if the protocol is not found.
* @since 4.0
* @since 5.0
*/
function getprotobyname ($name) {}
@ -1086,8 +995,6 @@ function getprotobyname ($name) {}
* The protocol number.
* </p>
* @return string the protocol name as a string.
* @since 4.0
* @since 5.0
*/
function getprotobynumber ($number) {}
@ -1095,8 +1002,6 @@ function getprotobynumber ($number) {}
* Gets PHP script owner's UID
* @link https://php.net/manual/en/function.getmyuid.php
* @return int the user ID of the current script, or false on error.
* @since 4.0
* @since 5.0
*/
function getmyuid () {}
@ -1104,8 +1009,6 @@ function getmyuid () {}
* Get PHP script owner's GID
* @link https://php.net/manual/en/function.getmygid.php
* @return int the group ID of the current script, or false on error.
* @since 4.1
* @since 5.0
*/
function getmygid () {}
@ -1113,8 +1016,6 @@ function getmygid () {}
* Gets PHP's process ID
* @link https://php.net/manual/en/function.getmypid.php
* @return int the current PHP process ID, or false on error.
* @since 4.0
* @since 5.0
*/
function getmypid () {}
@ -1122,7 +1023,5 @@ function getmypid () {}
* Gets the inode of the current script
* @link https://php.net/manual/en/function.getmyinode.php
* @return int the current script's inode as an integer, or false on error.
* @since 4.0
* @since 5.0
*/
function getmyinode () {}

View File

@ -6,8 +6,6 @@
* @return int the time of the last modification of the current
* page. The value returned is a Unix timestamp, suitable for
* feeding to date. Returns false on error.
* @since 4.0
* @since 5.0
*/
function getlastmod () {}
@ -23,8 +21,6 @@ function getlastmod () {}
* </p>
* @return string|false the original data or false on failure. The returned data may be
* binary.
* @since 4.0
* @since 5.0
*/
function base64_decode ($data, $strict = null) {}
@ -35,8 +31,6 @@ function base64_decode ($data, $strict = null) {}
* The data to encode.
* </p>
* @return string The encoded data, as a string.
* @since 4.0
* @since 5.0
*/
function base64_encode ($data) {}
@ -47,7 +41,6 @@ function base64_encode ($data) {}
* The data to be encoded.
* </p>
* @return string the uuencoded data.
* @since 5.0
*/
function convert_uuencode ($data) {}
@ -58,7 +51,6 @@ function convert_uuencode ($data) {}
* The uuencoded data.
* </p>
* @return string the decoded data as a string.
* @since 5.0
*/
function convert_uudecode ($data) {}
@ -73,8 +65,6 @@ function convert_uudecode ($data) {}
* of type float, the return type is also float,
* otherwise it is integer (as float usually has a
* bigger value range than integer).
* @since 4.0
* @since 5.0
*/
function abs ($number) {}
@ -89,8 +79,6 @@ function abs ($number) {}
* The return value of ceil is still of type
* float as the value range of float is
* usually bigger than that of integer.
* @since 4.0
* @since 5.0
*/
function ceil ($value) {}
@ -104,8 +92,6 @@ function ceil ($value) {}
* The return value of floor is still of type
* float because the value range of float is
* usually bigger than that of integer.
* @since 4.0
* @since 5.0
*/
function floor ($value) {}
@ -127,8 +113,6 @@ function floor ($value) {}
* PHP_ROUND_HALF_ODD.
* </p>
* @return float|false The rounded value
* @since 4.0
* @since 5.0
*/
function round ($val, $precision = 0, $mode = PHP_ROUND_HALF_UP) {}
@ -139,8 +123,6 @@ function round ($val, $precision = 0, $mode = PHP_ROUND_HALF_UP) {}
* A value in radians
* </p>
* @return float The sine of arg
* @since 4.0
* @since 5.0
*/
function sin ($arg) {}
@ -151,8 +133,6 @@ function sin ($arg) {}
* An angle in radians
* </p>
* @return float The cosine of arg
* @since 4.0
* @since 5.0
*/
function cos ($arg) {}
@ -163,8 +143,6 @@ function cos ($arg) {}
* The argument to process in radians
* </p>
* @return float The tangent of arg
* @since 4.0
* @since 5.0
*/
function tan ($arg) {}
@ -175,8 +153,6 @@ function tan ($arg) {}
* The argument to process
* </p>
* @return float The arc sine of arg in radians
* @since 4.0
* @since 5.0
*/
function asin ($arg) {}
@ -187,8 +163,6 @@ function asin ($arg) {}
* The argument to process
* </p>
* @return float The arc cosine of arg in radians.
* @since 4.0
* @since 5.0
*/
function acos ($arg) {}
@ -199,8 +173,6 @@ function acos ($arg) {}
* The argument to process
* </p>
* @return float The arc tangent of arg in radians.
* @since 4.0
* @since 5.0
*/
function atan ($arg) {}
@ -211,8 +183,6 @@ function atan ($arg) {}
* The argument to process
* </p>
* @return float Inverse hyperbolic tangent of arg
* @since 4.1
* @since 5.0
*/
function atanh ($arg) {}
@ -227,8 +197,6 @@ function atanh ($arg) {}
* </p>
* @return float The arc tangent of y/x
* in radians.
* @since 4.0
* @since 5.0
*/
function atan2 ($y, $x) {}
@ -239,8 +207,6 @@ function atan2 ($y, $x) {}
* The argument to process
* </p>
* @return float The hyperbolic sine of arg
* @since 4.1
* @since 5.0
*/
function sinh ($arg) {}
@ -251,8 +217,6 @@ function sinh ($arg) {}
* The argument to process
* </p>
* @return float The hyperbolic cosine of arg
* @since 4.1
* @since 5.0
*/
function cosh ($arg) {}
@ -263,8 +227,6 @@ function cosh ($arg) {}
* The argument to process
* </p>
* @return float The hyperbolic tangent of arg
* @since 4.1
* @since 5.0
*/
function tanh ($arg) {}
@ -275,8 +237,6 @@ function tanh ($arg) {}
* The argument to process
* </p>
* @return float The inverse hyperbolic sine of arg
* @since 4.1
* @since 5.0
*/
function asinh ($arg) {}
@ -287,16 +247,12 @@ function asinh ($arg) {}
* The value to process
* </p>
* @return float The inverse hyperbolic cosine of arg
* @since 4.1
* @since 5.0
*/
function acosh ($arg) {}
/**
* Returns exp(number) - 1, computed in a way that is accurate even
* @since 4.1
* @since 5.0
when the value of number is close to zero
when the value of number is close to zero
* @link https://php.net/manual/en/function.expm1.php
* @param float $arg <p>
* The argument to process
@ -307,9 +263,7 @@ function expm1 ($arg) {}
/**
* Returns log(1 + number), computed in a way that is accurate even when
* @since 4.1
* @since 5.0
the value of number is close to zero
the value of number is close to zero
* @link https://php.net/manual/en/function.log1p.php
* @param float $number <p>
* The argument to process
@ -322,8 +276,6 @@ function log1p ($number) {}
* Get value of pi
* @link https://php.net/manual/en/function.pi.php
* @return float The value of pi as float.
* @since 4.0
* @since 5.0
*/
function pi () {}
@ -336,8 +288,6 @@ function pi () {}
* @return bool true if val is a legal finite
* number within the allowed range for a PHP float on this platform,
* else false.
* @since 4.2
* @since 5.0
*/
function is_finite ($val) {}
@ -349,8 +299,6 @@ function is_finite ($val) {}
* </p>
* @return bool true if val is 'not a number',
* else false.
* @since 4.2
* @since 5.0
*/
function is_nan ($val) {}
@ -375,8 +323,6 @@ function intdiv ($dividend, $divisor) {}
* The value to check
* </p>
* @return bool true if val is infinite, else false.
* @since 4.2
* @since 5.0
*/
function is_infinite ($val) {}
@ -393,8 +339,6 @@ function is_infinite ($val) {}
* If the result can be represented as integer it will be returned as type
* integer, else it will be returned as type float.
* If the power cannot be computed false will be returned instead.
* @since 4.0
* @since 5.0
*/
function pow ($base, $exp) {}
@ -405,8 +349,6 @@ function pow ($base, $exp) {}
* The argument to process
* </p>
* @return float 'e' raised to the power of arg
* @since 4.0
* @since 5.0
*/
function exp ($arg) {}
@ -423,8 +365,6 @@ function exp ($arg) {}
* @return float The logarithm of arg to
* base, if given, or the
* natural logarithm.
* @since 4.0
* @since 5.0
*/
function log ($arg, $base = null) {}
@ -435,8 +375,6 @@ function log ($arg, $base = null) {}
* The argument to process
* </p>
* @return float The base-10 logarithm of arg
* @since 4.0
* @since 5.0
*/
function log10 ($arg) {}
@ -448,8 +386,6 @@ function log10 ($arg) {}
* </p>
* @return float The square root of arg
* or the special value NAN for negative numbers.
* @since 4.0
* @since 5.0
*/
function sqrt ($arg) {}
@ -463,8 +399,6 @@ function sqrt ($arg) {}
* Length of second side
* </p>
* @return float Calculated length of the hypotenuse
* @since 4.1
* @since 5.0
*/
function hypot ($x, $y) {}
@ -475,8 +409,6 @@ function hypot ($x, $y) {}
* Angular value in degrees
* </p>
* @return float The radian equivalent of number
* @since 4.0
* @since 5.0
*/
function deg2rad ($number) {}
@ -487,8 +419,6 @@ function deg2rad ($number) {}
* A radian value
* </p>
* @return float The equivalent of number in degrees
* @since 4.0
* @since 5.0
*/
function rad2deg ($number) {}
@ -499,8 +429,6 @@ function rad2deg ($number) {}
* The binary string to convert
* </p>
* @return int|float The decimal value of binary_string
* @since 4.0
* @since 5.0
*/
function bindec ($binary_string) {}
@ -511,8 +439,6 @@ function bindec ($binary_string) {}
* The hexadecimal string to convert
* </p>
* @return int|float The decimal representation of hex_string
* @since 4.0
* @since 5.0
*/
function hexdec ($hex_string) {}
@ -523,8 +449,6 @@ function hexdec ($hex_string) {}
* The octal string to convert
* </p>
* @return int|float The decimal representation of octal_string
* @since 4.0
* @since 5.0
*/
function octdec ($octal_string) {}
@ -643,8 +567,6 @@ function octdec ($octal_string) {}
* </tr>
* </table>
* @return string Binary string representation of number
* @since 4.0
* @since 5.0
*/
function decbin ($number) {}
@ -655,8 +577,6 @@ function decbin ($number) {}
* Decimal value to convert
* </p>
* @return string Octal string representation of number
* @since 4.0
* @since 5.0
*/
function decoct ($number) {}
@ -667,8 +587,6 @@ function decoct ($number) {}
* Decimal value to convert
* </p>
* @return string Hexadecimal string representation of number
* @since 4.0
* @since 5.0
*/
function dechex ($number) {}
@ -685,8 +603,6 @@ function dechex ($number) {}
* The base to convert number to
* </p>
* @return string number converted to base tobase
* @since 4.0
* @since 5.0
*/
function base_convert ($number, $frombase, $tobase) {}
@ -702,16 +618,12 @@ function base_convert ($number, $frombase, $tobase) {}
* @param string $dec_point [optional]
* @param string $thousands_sep [optional]
* @return string A formatted version of number.
* @since 4.0
* @since 5.0
*/
function number_format ($number , $decimals = 0 , $dec_point = '.' , $thousands_sep = ',' ) {}
/**
* Returns the floating point remainder (modulo) of the division
* @since 4.2
* @since 5.0
of the arguments
of the arguments
* @link https://php.net/manual/en/function.fmod.php
* @param float $x <p>
* The dividend
@ -731,7 +643,6 @@ function fmod ($x, $y) {}
* A 32bit IPv4, or 128bit IPv6 address.
* </p>
* @return string|false a string representation of the address or false on failure.
* @since 5.1
*/
function inet_ntop ($in_addr) {}
@ -743,7 +654,6 @@ function inet_ntop ($in_addr) {}
* </p>
* @return string the in_addr representation of the given
* address
* @since 5.1
*/
function inet_pton ($address) {}
@ -755,8 +665,6 @@ function inet_pton ($address) {}
* </p>
* @return int|false the IPv4 address or false if ip_address
* is invalid.
* @since 4.0
* @since 5.0
*/
function ip2long ($ip_address) {}
@ -767,8 +675,6 @@ function ip2long ($ip_address) {}
* A proper address representation.
* </p>
* @return string the Internet IP address as a string.
* @since 4.0
* @since 5.0
*/
function long2ip ($proper_address) {}
@ -784,7 +690,6 @@ function long2ip ($proper_address) {}
* @return string|array|false the value of the environment variable
* varname or an associative array with all environment variables if no variable name
* is provided, or false on an error.
* @since 4.0
* @since 5.5.38 The local_only parameter has been added.
* @since 5.6.24 The local_only parameter has been added.
* @since 7.0.9 The local_only parameter has been added.
@ -799,8 +704,6 @@ function getenv ($varname = null, $local_only = false) {}
* The setting, like "FOO=BAR"
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function putenv ($setting) {}
@ -822,8 +725,6 @@ function putenv ($setting) {}
* @param int $optind If the optind parameter is present, then the index where argument parsing stopped will be written to this variable.
* @return array This function will return an array of option / argument pairs or false on
* failure.
* @since 4.3
* @since 5.0
*/
function getopt ($options, array $longopts = null, &$optind = null) {}
@ -851,8 +752,6 @@ function sys_getloadavg () {}
* true then a float (in seconds) is returned.
* </p>
* @return string|float
* @since 4.0
* @since 5.0
*/
function microtime ($get_as_float = null) {}
@ -871,8 +770,6 @@ function microtime ($get_as_float = null) {}
* "usec" - microseconds
* "minuteswest" - minutes west of Greenwich
* "dsttime" - type of dst correction
* @since 4.0
* @since 5.0
*/
function gettimeofday ($return_float = null) {}
@ -885,8 +782,6 @@ function gettimeofday ($return_float = null) {}
* </p>
* @return array an associative array containing the data returned from the system
* call. All entries are accessible by using their documented field names.
* @since 4.0
* @since 5.0
*/
function getrusage ($who = null) {}
@ -909,8 +804,6 @@ function getrusage ($who = null) {}
* of the return value, which should make the results more unique.
* </p>
* @return string the unique identifier, as a string.
* @since 4.0
* @since 5.0
*/
function uniqid ($prefix = "", $more_entropy = false) {}
@ -921,8 +814,6 @@ function uniqid ($prefix = "", $more_entropy = false) {}
* The input string.
* </p>
* @return string the 8-bit binary string.
* @since 4.0
* @since 5.0
*/
function quoted_printable_decode ($str) {}
@ -933,7 +824,6 @@ function quoted_printable_decode ($str) {}
* The input string.
* </p>
* @return string the encoded string.
* @since 5.3
*/
function quoted_printable_encode ($str) {}
@ -950,8 +840,6 @@ function quoted_printable_encode ($str) {}
* The target Cyrillic character set, as a single character.
* </p>
* @return string the converted string.
* @since 4.0
* @since 5.0
* @deprecated 7.4
*/
function convert_cyr_string ($str, $from, $to) {}
@ -960,8 +848,6 @@ function convert_cyr_string ($str, $from, $to) {}
* Gets the name of the owner of the current PHP script
* @link https://php.net/manual/en/function.get-current-user.php
* @return string the username as a string.
* @since 4.0
* @since 5.0
*/
function get_current_user () {}
@ -973,8 +859,6 @@ function get_current_user () {}
* is imposed.
* </p>
* @return bool Returns TRUE on success, or FALSE on failure.
* @since 4.0
* @since 5.0
*/
function set_time_limit ($seconds) {}
@ -986,8 +870,6 @@ function set_time_limit ($seconds) {}
* </p>
* @return string the current value of the PHP configuration variable specified by
* option, or false if an error occurs.
* @since 4.0
* @since 5.0
*/
function get_cfg_var ($option) {}
@ -1017,8 +899,6 @@ function set_magic_quotes_runtime ($new_setting) {}
* Gets the current configuration setting of magic quotes gpc
* @link https://php.net/manual/en/function.get-magic-quotes-gpc.php
* @return int 0 if magic quotes gpc are off, 1 otherwise.
* @since 4.0
* @since 5.0
* @deprecated 7.4
*/
function get_magic_quotes_gpc () {}
@ -1027,8 +907,6 @@ function get_magic_quotes_gpc () {}
* Gets the current active configuration setting of magic_quotes_runtime
* @link https://php.net/manual/en/function.get-magic-quotes-runtime.php
* @return int 0 if magic quotes runtime is off, 1 otherwise.
* @since 4.0
* @since 5.0
* @deprecated 7.4
*/
function get_magic_quotes_runtime () {}
@ -1066,8 +944,6 @@ function get_magic_quotes_runtime () {}
* @return bool true on success or false on failure.
* @deprecated 5.3 This function has been DEPRECATED as of PHP 5.3.0
* @removed 5.4
* @since 4.1
* @since 5.0
*/
function import_request_variables ($types, $prefix = null) {}
@ -1136,7 +1012,5 @@ function import_request_variables ($types, $prefix = null) {}
* mail does.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function error_log ($message, $message_type = null, $destination = null, $extra_headers = null) {}

View File

@ -6,7 +6,6 @@
* @return array an associative array describing the last error with keys "type",
* "message", "file" and "line". Returns &null; if there hasn't been an error
* yet.
* @since 5.2
*/
function error_get_last () {}
@ -30,8 +29,6 @@ function error_get_last () {}
* &example.outputs;
* </p>
* @return mixed the function result, or false on error.
* @since 4.0
* @since 5.0
*/
function call_user_func ($function, ...$parameter) {}
@ -45,8 +42,6 @@ function call_user_func ($function, ...$parameter) {}
* The parameters to be passed to the function, as an indexed array.
* </p>
* @return mixed the function result, or false on error.
* @since 4.0.4
* @since 5.0
*/
function call_user_func_array ($function, array $param_arr) {}
@ -88,7 +83,6 @@ function call_user_method_array ($method_name, &$obj, array $params) {}
* </p>
* @param mixed $_ [optional]
* @return mixed the function result, or false on error.
* @since 5.3
*/
function forward_static_call ($function, $parameter = null, $_ = null) {}
@ -102,7 +96,6 @@ function forward_static_call ($function, $parameter = null, $_ = null) {}
* </p>
* @param array $parameters [optional]
* @return mixed the function result, or false on error.
* @since 5.3
*/
function forward_static_call_array ($function, array $parameters = null) {}
@ -131,8 +124,6 @@ function forward_static_call_array ($function, array $parameters = null) {}
* </p>
* @return string a string containing a byte-stream representation of
* value that can be stored anywhere.
* @since 4.0
* @since 5.0
*/
function serialize ($value) {}
@ -175,8 +166,6 @@ function serialize ($value) {}
* <p>
* In case the passed string is not unserializeable, false is returned and
* E_NOTICE is issued.
* @since 4.0
* @since 5.0
* @since 7.0
*/
function unserialize ($str, array $options = null) {}
@ -189,8 +178,6 @@ function unserialize ($str, array $options = null) {}
* </p>
* @param mixed $_ [optional]
* @return void
* @since 4.0
* @since 5.0
*/
function var_dump ($expression, $_ = null) {}
@ -208,8 +195,6 @@ function var_dump ($expression, $_ = null) {}
* @return string|null the variable representation when the return
* parameter is used and evaluates to true. Otherwise, this function will
* return &null;.
* @since 4.2
* @since 5.0
*/
function var_export ($expression, $return = null) {}
@ -220,8 +205,6 @@ function var_export ($expression, $return = null) {}
* The variable being evaluated.
* </p>
* @return void
* @since 4.2
* @since 5.0
*/
function debug_zval_dump ($variable) {}
@ -241,8 +224,6 @@ function debug_zval_dump ($variable) {}
* the value itself will be printed. If given an array, values
* will be presented in a format that shows keys and elements. Similar
* notation is used for objects.
* @since 4.0
* @since 5.0
*/
function print_r ($expression, $return = null) {}
@ -255,8 +236,6 @@ function print_r ($expression, $return = null) {}
* emalloc() is reported.
* </p>
* @return int the memory amount in bytes.
* @since 4.3.2
* @since 5.0
*/
function memory_get_usage ($real_usage = null) {}
@ -269,7 +248,6 @@ function memory_get_usage ($real_usage = null) {}
* emalloc() is reported.
* </p>
* @return int the memory peak in bytes.
* @since 5.2
*/
function memory_get_peak_usage ($real_usage = null) {}
@ -296,8 +274,6 @@ function memory_get_peak_usage ($real_usage = null) {}
* </p>
* @param mixed $_ [optional]
* @return void
* @since 4.0
* @since 5.0
*/
function register_shutdown_function ($function, $parameter = null, $_ = null) {}
@ -312,8 +288,6 @@ function register_shutdown_function ($function, $parameter = null, $_ = null) {}
* </p>
* @param mixed $_ [optional]
* @return bool true on success or false on failure.
* @since 4.0.3
* @since 5.0
*/
function register_tick_function ($function, $arg = null, $_ = null) {}
@ -325,8 +299,6 @@ function register_tick_function ($function, $arg = null, $_ = null) {}
* a method.
* </p>
* @return void
* @since 4.0.3
* @since 5.0
*/
function unregister_tick_function ($function) {}
@ -343,8 +315,6 @@ function unregister_tick_function ($function) {}
* @return string|bool If return is set to true, returns the highlighted
* code as a string instead of printing it out. Otherwise, it will return
* true on success, false on failure.
* @since 4.0
* @since 5.0
*/
function highlight_file ($filename, $return = false) {}
@ -353,8 +323,6 @@ function highlight_file ($filename, $return = false) {}
* @link https://php.net/manual/en/function.show-source.php
* @param $file_name
* @param $return [optional]
* @since 4.0
* @since 5.0
*/
function show_source ($file_name, $return = false) {}
@ -371,8 +339,6 @@ function show_source ($file_name, $return = false) {}
* @return string|bool If return is set to true, returns the highlighted
* code as a string instead of printing it out. Otherwise, it will return
* true on success, false on failure.
* @since 4.0
* @since 5.0
*/
function highlight_string ($str, $return = false) {}
@ -400,7 +366,6 @@ function hrtime($get_as_number = FALSE) {}
* only return an empty string. For more information on this bug and its
* prior behavior, see bug report
* #29606.
* @since 5.0
*/
function php_strip_whitespace ($filename) {}
@ -413,8 +378,6 @@ function php_strip_whitespace ($filename) {}
* </p>
* @return string the value of the configuration option as a string on success, or
* an empty string on failure or for null values.
* @since 4.0
* @since 5.0
*/
function ini_get ($varname) {}
@ -450,8 +413,6 @@ function ini_get ($varname) {}
* <p>
* It's possible for a directive to have multiple access levels, which is
* why access shows the appropriate bitmask values.
* @since 4.2
* @since 5.0
*/
function ini_get_all ($extension = null, $details = null) {}
@ -470,8 +431,6 @@ function ini_get_all ($extension = null, $details = null) {}
* The new value for the option.
* </p>
* @return string|false the old value on success, false on failure.
* @since 4.0
* @since 5.0
*/
function ini_set ($varname, $newvalue) {}
@ -481,8 +440,6 @@ function ini_set ($varname, $newvalue) {}
* @link https://php.net/manual/en/ini.list.php
* @param $varname
* @param $newvalue
* @since 4.0
* @since 5.0
*/
function ini_alter ($varname, $newvalue) {}
@ -494,8 +451,6 @@ function ini_alter ($varname, $newvalue) {}
* The configuration option name.
* </p>
* @return void
* @since 4.0
* @since 5.0
*/
function ini_restore ($varname) {}
@ -503,8 +458,6 @@ function ini_restore ($varname) {}
* Gets the current include_path configuration option
* @link https://php.net/manual/en/function.get-include-path.php
* @return string the path, as a string.
* @since 4.3
* @since 5.0
*/
function get_include_path () {}
@ -516,8 +469,6 @@ function get_include_path () {}
* </p>
* @return string|bool the old include_path on
* success or false on failure.
* @since 4.3
* @since 5.0
*/
function set_include_path ($new_include_path) {}
@ -525,8 +476,6 @@ function set_include_path ($new_include_path) {}
* Restores the value of the include_path configuration option
* @link https://php.net/manual/en/function.restore-include-path.php
* @return void
* @since 4.3
* @since 5.0
* @deprecated 7.4
*/
function restore_include_path () {}
@ -605,8 +554,6 @@ function restore_include_path () {}
* setcookie will fail and return false. If
* setcookie successfully runs, it will return true.
* This does not indicate whether the user accepted the cookie.
* @since 4.0
* @since 5.0
*/
function setcookie ($name, $value = "", $expire = 0, $path = "", $domain = "", $secure = false, $httponly = false) {}
@ -644,7 +591,6 @@ function setcookie($name, $value = '', array $options = []) {}
* @param bool $secure [optional]
* @param bool $httponly [optional]
* @return bool true on success or false on failure.
* @since 5.0
*/
function setrawcookie ($name, $value = '', $expire = 0, $path = "", $domain = "", $secure = false, $httponly = false) {}
@ -703,8 +649,6 @@ function setrawcookie ($name, $value = '', array $options = []) {}
* Forces the HTTP response code to the specified value.
* </p>
* @return void
* @since 4.0
* @since 5.0
*/
function header ($string, $replace = true, $http_response_code = null) {}
@ -716,7 +660,6 @@ function header ($string, $replace = true, $http_response_code = null) {}
* </p>
* This parameter is case-insensitive.
* @return void
* @since 5.3
*/
function header_remove ($name = null) {}
@ -735,8 +678,6 @@ function header_remove ($name = null) {}
* </p>
* @return bool headers_sent will return false if no HTTP headers
* have already been sent or true otherwise.
* @since 4.0
* @since 5.0
*/
function headers_sent (&$file = null, &$line = null) {}
@ -744,7 +685,6 @@ function headers_sent (&$file = null, &$line = null) {}
* Returns a list of response headers sent (or ready to send)
* @link https://php.net/manual/en/function.headers-list.php
* @return array a numerically indexed array of headers.
* @since 5.0
*/
function headers_list () {}
@ -752,8 +692,6 @@ function headers_list () {}
* Check whether client disconnected
* @link https://php.net/manual/en/function.connection-aborted.php
* @return int 1 if client disconnected, 0 otherwise.
* @since 4.0
* @since 5.0
*/
function connection_aborted () {}
@ -763,8 +701,6 @@ function connection_aborted () {}
* @return int the connection status bitfield, which can be used against the
* CONNECTION_XXX constants to determine the connection
* status.
* @since 4.0
* @since 5.0
*/
function connection_status () {}
@ -777,8 +713,6 @@ function connection_status () {}
* only return the previous setting without changing it.
* </p>
* @return int the previous setting, as an integer.
* @since 4.0
* @since 5.0
*/
function ignore_user_abort ($value = null) {}
@ -809,8 +743,6 @@ function ignore_user_abort ($value = null) {}
* </p>
* @return array|false The settings are returned as an associative array on success,
* and false on failure.
* @since 4.0
* @since 5.0
*/
function parse_ini_file ($filename, $process_sections = false, $scanner_mode = INI_SCANNER_NORMAL) {}
@ -833,7 +765,6 @@ function parse_ini_file ($filename, $process_sections = false, $scanner_mode = I
* </p>
* @return array|false The settings are returned as an associative array on success,
* and false on failure.
* @since 5.3
*/
function parse_ini_string ($ini, $process_sections = false, $scanner_mode = INI_SCANNER_NORMAL) {}
@ -844,8 +775,6 @@ function parse_ini_string ($ini, $process_sections = false, $scanner_mode = INI_
* The filename being checked.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.3
* @since 5.0
*/
function is_uploaded_file ($filename) {}
@ -868,8 +797,6 @@ function is_uploaded_file ($filename) {}
* cannot be moved for some reason, no action will occur, and
* move_uploaded_file will return
* false. Additionally, a warning will be issued.
* @since 4.0.3
* @since 5.0
*/
function move_uploaded_file ($filename, $destination) {}
@ -886,8 +813,6 @@ function net_get_interfaces() {}
* </p>
* @return string the host name or the unmodified ip_address
* on failure.
* @since 4.0
* @since 5.0
*/
function gethostbyaddr ($ip_address) {}
@ -899,16 +824,12 @@ function gethostbyaddr ($ip_address) {}
* </p>
* @return string the IPv4 address or a string containing the unmodified
* hostname on failure.
* @since 4.0
* @since 5.0
*/
function gethostbyname ($hostname) {}
/**
* Get a list of IPv4 addresses corresponding to a given Internet host
* @since 4.0
* @since 5.0
name
name
* @link https://php.net/manual/en/function.gethostbynamel.php
* @param string $hostname <p>
* The host name.
@ -923,7 +844,6 @@ function gethostbynamel ($hostname) {}
* @link https://php.net/manual/en/function.gethostname.php
* @return string|false a string with the hostname on success, otherwise false is
* returned.
* @since 5.3
*/
function gethostname () {}
@ -939,7 +859,6 @@ function gethostname () {}
* PTR, CNAME, AAAA, A6, SRV, NAPTR, TXT or ANY.
* </p>
* @return bool Returns <b>TRUE</b> if any records are found; returns <b>FALSE</b> if no records were found or if an error occurred.
* @since 5.0
*/
function dns_check_record ($host, $type = 'MX') {}
@ -956,8 +875,6 @@ function dns_check_record ($host, $type = 'MX') {}
* </p>
* @return bool true if any records are found; returns false if no records
* were found or if an error occurred.
* @since 4.0
* @since 5.0
*/
function checkdnsrr ($host, $type = null) {}
@ -967,7 +884,6 @@ function checkdnsrr ($host, $type = null) {}
* @param $hostname
* @param $mxhosts
* @param $weight [optional]
* @since 5.0
*/
function dns_get_mx ($hostname, array &$mxhosts, array &$weight = null) {}
@ -987,8 +903,6 @@ function dns_get_mx ($hostname, array &$mxhosts, array &$weight = null) {}
* </p>
* @return bool true if any records are found; returns false if no records
* were found or if an error occurred.
* @since 4.0
* @since 5.0
*/
function getmxrr ($hostname, array &$mxhosts, array &$weight = null) {}
@ -1198,6 +1112,5 @@ function getmxrr ($hostname, array &$mxhosts, array &$weight = null) {}
* </td>
* </tr>
* </table>
* @since 5.0
*/
function dns_get_record ($hostname, $type = DNS_ANY, array &$authns = null, array &$addtl = null, &$raw = false) {}

View File

@ -34,8 +34,6 @@ function boolval($var) {}
* leftmost characters of the string. The common rules of
* integer casting
* apply.
* @since 4.0
* @since 5.0
*/
function intval ($var, $base = 10) {}
@ -44,8 +42,6 @@ function intval ($var, $base = 10) {}
* @link https://php.net/manual/en/function.floatval.php
* @param mixed $var May be any scalar type. should not be used on objects, as doing so will emit an E_NOTICE level error and return 1.
* @return float value of the given variable. Empty arrays return 0, non-empty arrays return 1.
* @since 4.2
* @since 5.0
*/
function floatval ($var) {}
@ -71,8 +67,6 @@ function doubleval ($var) {}
* You cannot use strval() on arrays or objects that do not implement the __toString() method.
* </p>
* @return string The string value of var.
* @since 4.0
* @since 5.0
*/
function strval ($var) {}
@ -95,8 +89,6 @@ function strval ($var) {}
* "NULL"
* "unknown type"
* "resource (closed)" since 7.2.0
* @since 4.0
* @since 5.0
*/
function gettype ($var) {}
@ -133,8 +125,6 @@ function gettype ($var) {}
* </li>
* </ul>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function settype (&$var, $type) {}
@ -146,8 +136,6 @@ function settype (&$var, $type) {}
* </p>
* @return bool true if var is null, false
* otherwise.
* @since 4.0.4
* @since 5.0
*/
function is_null ($var) {}
@ -159,8 +147,6 @@ function is_null ($var) {}
* </p>
* @return bool true if var is a resource,
* false otherwise.
* @since 4.0
* @since 5.0
*/
function is_resource ($var) {}
@ -172,8 +158,6 @@ function is_resource ($var) {}
* </p>
* @return bool true if var is a boolean,
* false otherwise.
* @since 4.0
* @since 5.0
*/
function is_bool ($var) {}
@ -185,8 +169,6 @@ function is_bool ($var) {}
* </p>
* @return bool true if var is an integer,
* false otherwise.
* @since 4.0
* @since 5.0
*/
function is_long ($var) {}
@ -198,8 +180,6 @@ function is_long ($var) {}
* </p>
* @return bool true if var is a float,
* false otherwise.
* @since 4.0
* @since 5.0
*/
function is_float ($var) {}
@ -211,8 +191,6 @@ function is_float ($var) {}
* </p>
* @return bool true if var is an integer,
* false otherwise.
* @since 4.0
* @since 5.0
*/
function is_int ($var) {}
@ -224,8 +202,6 @@ function is_int ($var) {}
* </p>
* @return bool true if var is an integer,
* false otherwise.
* @since 4.0
* @since 5.0
*/
function is_integer ($var) {}
@ -237,8 +213,6 @@ function is_integer ($var) {}
* </p>
* @return bool true if var is a float,
* false otherwise.
* @since 4.0
* @since 5.0
*/
function is_double ($var) {}
@ -250,8 +224,6 @@ function is_double ($var) {}
* </p>
* @return bool true if var is a float,
* false otherwise.
* @since 4.0
* @since 5.0
* @deprecated 7.4
*/
function is_real ($var) {}
@ -264,8 +236,6 @@ function is_real ($var) {}
* </p>
* @return bool true if var is a number or a numeric
* string, false otherwise.
* @since 4.0
* @since 5.0
*/
function is_numeric ($var) {}
@ -277,8 +247,6 @@ function is_numeric ($var) {}
* </p>
* @return bool true if var is of type string,
* false otherwise.
* @since 4.0
* @since 5.0
*/
function is_string ($var) {}
@ -290,8 +258,6 @@ function is_string ($var) {}
* </p>
* @return bool true if var is an array,
* false otherwise.
* @since 4.0
* @since 5.0
*/
function is_array ($var) {}
@ -303,8 +269,6 @@ function is_array ($var) {}
* </p>
* @return bool true if var is an object, false otherwise.<br/>
* Since 7.2.0 returns true for unserialized objects without a class definition (class of <b>__PHP_Incomplete_Class</b>).
* @since 4.0
* @since 5.0
*/
function is_object ($var) {}
@ -316,8 +280,6 @@ function is_object ($var) {}
* </p>
* @return bool true if var is a scalar false
* otherwise.
* @since 4.0.5
* @since 5.0
*/
function is_scalar ($var) {}
@ -343,8 +305,6 @@ function is_scalar ($var) {}
* </p>
* @return bool <b>TRUE</b> if $var is callable, <b>FALSE</b>
* otherwise.
* @since 4.0.6
* @since 5.0
* @since 7.0
*/
function is_callable ($var, $syntax_only = null, &$callable_name = null) {}
@ -370,8 +330,6 @@ function is_countable($var) {}
* </p>
* <p>
* If PHP has been compiled with <tt>--enable-sigchild</tt>, the return value of this function is undefined.
* @since 4.0
* @since 5.0
*/
function pclose ($handle) {}
@ -393,8 +351,6 @@ function pclose ($handle) {}
* </p>
* <p>
* If an error occurs, returns false.
* @since 4.0
* @since 5.0
*/
function popen ($command, $mode) {}
@ -414,8 +370,6 @@ function popen ($command, $mode) {}
* @return false|int the number of bytes read from the file. If an error
* occurs, false is returned and unless the function was called as
* @readfile, an error message is printed.
* @since 4.0
* @since 5.0
*/
function readfile ($filename, $use_include_path = null, $context = null) {}
@ -427,8 +381,6 @@ function readfile ($filename, $use_include_path = null, $context = null) {}
* successfully opened by fopen.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function rewind ($handle) {}
@ -440,8 +392,6 @@ function rewind ($handle) {}
* </p>
* @param resource $context [optional] &note.context-support;
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function rmdir ($dirname, $context = null) {}
@ -453,8 +403,6 @@ function rmdir ($dirname, $context = null) {}
* </p>
* @return int umask without arguments simply returns the
* current umask otherwise the old umask is returned.
* @since 4.0
* @since 5.0
*/
function umask ($mask = null) {}
@ -466,8 +414,6 @@ function umask ($mask = null) {}
* opened by fopen or fsockopen.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function fclose ($handle) {}
@ -477,8 +423,6 @@ function fclose ($handle) {}
* @param resource $handle The file pointer must be valid, and must point to a file successfully opened by fopen() or fsockopen() (and not yet closed by fclose()).
* @return bool true if the file pointer is at EOF or an error occurs
* (including socket timeout); otherwise returns false.
* @since 4.0
* @since 5.0
*/
function feof ($handle) {}
@ -488,8 +432,6 @@ function feof ($handle) {}
* @param resource $handle The file pointer must be valid, and must point to a file successfully opened by fopen() or fsockopen() (and not yet closed by fclose()).
* @return string|false a string containing a single character read from the file pointed
* to by handle. Returns false on EOF.
* @since 4.0
* @since 5.0
*/
function fgetc ($handle) {}
@ -514,8 +456,6 @@ function fgetc ($handle) {}
* </p>
* <p>
* If an error occurs, returns false.
* @since 4.0
* @since 5.0
*/
function fgets ($handle, $length = null) {}
@ -536,8 +476,6 @@ function fgets ($handle, $length = null) {}
* </p>
* <p>
* If an error occurs, returns false.
* @since 4.0
* @since 5.0
* @deprecated 7.3
*/
function fgetss ($handle, $length = null, $allowable_tags = null) {}
@ -550,8 +488,6 @@ function fgetss ($handle, $length = null, $allowable_tags = null) {}
* Up to length number of bytes read.
* </p>
* @return string|false the read string or false on failure.
* @since 4.0
* @since 5.0
*/
function fread ($handle, $length) {}
@ -735,8 +671,6 @@ function fread ($handle, $length) {}
* </p>
* @param resource $context [optional] &note.context-support;
* @return resource|false a file pointer resource on success, or false on error.
* @since 4.0
* @since 5.0
*/
function fopen ($filename, $mode, $use_include_path = null, $context = null) {}
@ -748,8 +682,6 @@ function fopen ($filename, $mode, $use_include_path = null, $context = null) {}
* false. Otherwise, fpassthru returns
* the number of characters read from handle
* and passed through to the output.
* @since 4.0
* @since 5.0
*/
function fpassthru ($handle) {}
@ -774,8 +706,6 @@ function fpassthru ($handle) {}
* will be lost.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function ftruncate ($handle, $size) {}
@ -785,8 +715,6 @@ function ftruncate ($handle, $size) {}
* @param resource $handle &fs.file.pointer;
* @return array an array with the statistics of the file; the format of the array
* is described in detail on the stat manual page.
* @since 4.0
* @since 5.0
*/
function fstat ($handle) {}
@ -815,8 +743,6 @@ function fstat ($handle) {}
* </p>
* @return int Upon success, returns 0; otherwise, returns -1. Note that seeking
* past EOF is not considered an error.
* @since 4.0
* @since 5.0
*/
function fseek ($handle, $offset, $whence = SEEK_SET) {}
@ -834,8 +760,6 @@ function fseek ($handle, $offset, $whence = SEEK_SET) {}
* </p>
* <p>
* If an error occurs, returns false.
* @since 4.0
* @since 5.0
*/
function ftell ($handle) {}
@ -844,8 +768,6 @@ function ftell ($handle) {}
* @link https://php.net/manual/en/function.fflush.php
* @param resource $handle The file pointer must be valid, and must point to a file successfully opened by fopen() or fsockopen() (and not yet closed by fclose()).
* @return bool true on success or false on failure.
* @since 4.0.1
* @since 5.0
*/
function fflush ($handle) {}
@ -869,8 +791,6 @@ function fflush ($handle) {}
* stripped from string.
* </p>
* @return int|false the number of bytes written, or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function fwrite ($handle, $string, $length = null) {}
@ -896,8 +816,6 @@ function fwrite ($handle, $string, $length = null) {}
* stripped from string.
* </p>
* @return int|false the number of bytes written, or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function fputs ($handle, $string, $length = null) {}
@ -926,8 +844,6 @@ function fputs ($handle, $string, $length = null) {}
* </p>
* @param resource $context [optional] &note.context-support;
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function mkdir ($pathname, $mode = 0777, $recursive = false, $context = null) {}
@ -946,8 +862,6 @@ function mkdir ($pathname, $mode = 0777, $recursive = false, $context = null) {}
* </p>
* @param resource $context [optional] &note.context-support;
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function rename ($oldname, $newname, $context = null) {}
@ -970,8 +884,6 @@ function rename ($oldname, $newname, $context = null) {}
* stream_context_create.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function copy ($source, $dest, $context = null) {}
@ -987,8 +899,6 @@ function copy ($source, $dest, $context = null) {}
* Windows use only the first three characters of prefix.
* @return string|false the new temporary filename, or false on
* failure.
* @since 4.0
* @since 5.0
*/
function tempnam ($dir, $prefix) {}
@ -997,8 +907,6 @@ function tempnam ($dir, $prefix) {}
* @link https://php.net/manual/en/function.tmpfile.php
* @return resource|false a file handle, similar to the one returned by
* fopen, for the new file or false on failure.
* @since 4.0
* @since 5.0
*/
function tmpfile () {}
@ -1030,8 +938,6 @@ function tmpfile () {}
* FILE_IGNORE_NEW_LINES is used, so you still need to
* use rtrim if you do not want the line ending
* present.
* @since 4.0
* @since 5.0
*/
function file ($filename, $flags = null, $context = null) {}
@ -1058,8 +964,6 @@ function file ($filename, $flags = null, $context = null) {}
* of file is reached.
* </p>
* @return string|false The function returns the read data or false on failure.
* @since 4.3
* @since 5.0
*/
function file_get_contents ($filename, $use_include_path = false, $context = null, $offset = 0, $maxlen = null) {}
@ -1123,7 +1027,6 @@ function file_get_contents ($filename, $use_include_path = false, $context = nul
* <td>
* Acquire an exclusive lock on the file while proceeding to the
* writing. Mutually exclusive with FILE_APPEND.
* @since 5.1
* </td>
* </tr>
* </table>
@ -1134,6 +1037,5 @@ function file_get_contents ($filename, $use_include_path = false, $context = nul
* </p>
* @return int|false The function returns the number of bytes that were written to the file, or
* false on failure.
* @since 5.0
*/
function file_put_contents ($filename, $data, $flags = 0, $context = null) {}

View File

@ -72,8 +72,6 @@
* the timeout expires before anything interesting happens. On error false
* is returned and a warning raised (this can happen if the system call is
* interrupted by an incoming signal).
* @since 4.3
* @since 5.0
*/
function stream_select (array &$read, array &$write, array &$except, $tv_sec, $tv_usec = null) {}
@ -94,8 +92,6 @@ function stream_select (array &$read, array &$write, array &$except, $tv_sec, $t
* a listing of standard stream parameters.
* </p>
* @return resource A stream context resource.
* @since 4.3
* @since 5.0
*/
function stream_context_create (array $options = null, array $params = null) {}
@ -113,8 +109,6 @@ function stream_context_create (array $options = null, array $params = null) {}
* $params['paramname'] = "paramvalue";.
* </p>
* @return bool true on success or false on failure.
* @since 4.3
* @since 5.0
*/
function stream_context_set_params ($stream_or_context, array $params) {}
@ -126,7 +120,6 @@ function stream_context_set_params ($stream_or_context, array $params) {}
* context resource
* </p>
* @return array an associate array containing all context options and parameters.
* @since 5.3
*/
function stream_context_get_params ($stream_or_context) {}
@ -140,8 +133,6 @@ function stream_context_get_params ($stream_or_context) {}
* @param string $option
* @param mixed $value
* @return bool true on success or false on failure.
* @since 4.3
* @since 5.0
*/
function stream_context_set_option ($stream_or_context, $wrapper, $option, $value) {}
@ -151,8 +142,6 @@ function stream_context_set_option ($stream_or_context, $wrapper, $option, $valu
* @param resource $stream_or_context The stream or context resource to apply the options too.
* @param array $options The options to set for the default context.
* @return bool true on success or false on failure.
* @since 4.3
* @since 5.0
*/
function stream_context_set_option ($stream_or_context, array $options) {}
@ -163,8 +152,6 @@ function stream_context_set_option ($stream_or_context, array $options) {}
* The stream or context to get options from
* </p>
* @return array an associative array with the options.
* @since 4.3
* @since 5.0
*/
function stream_context_get_options ($stream_or_context) {}
@ -179,7 +166,6 @@ function stream_context_get_options ($stream_or_context) {}
* can be used to set the default context.
* </p>
* @return resource A stream context resource.
* @since 5.1
*/
function stream_context_get_default (array $options = null) {}
@ -195,7 +181,6 @@ function stream_context_get_default (array $options = null) {}
* $arr['wrapper']['option'] = $value.
* </p>
* @return resource the default stream context.
* @since 5.3
*/
function stream_context_set_default (array $options) {}
@ -231,8 +216,6 @@ function stream_context_set_default (array $options) {}
* </p>
* @return resource a resource which can be used to refer to this filter
* instance during a call to stream_filter_remove.
* @since 4.3
* @since 5.0
*/
function stream_filter_prepend ($stream, $filtername, $read_write = null, $params = null) {}
@ -267,8 +250,6 @@ function stream_filter_prepend ($stream, $filtername, $read_write = null, $param
* </p>
* @return resource a resource which can be used to refer to this filter
* instance during a call to stream_filter_remove.
* @since 4.3
* @since 5.0
*/
function stream_filter_append ($stream, $filtername, $read_write = null, $params = null) {}
@ -279,7 +260,6 @@ function stream_filter_append ($stream, $filtername, $read_write = null, $params
* The stream filter to be removed.
* </p>
* @return bool true on success or false on failure.
* @since 5.1
*/
function stream_filter_remove ($stream_filter) {}
@ -322,7 +302,6 @@ function stream_filter_remove ($stream_filter) {}
* fgets, fgetss,
* fwrite, fclose, and
* feof), false on failure.
* @since 5.0
*/
function stream_socket_client ($remote_socket, &$errno = null, &$errstr = null, $timeout = null, $flags = null, $context = null) {}
@ -373,7 +352,6 @@ function stream_socket_client ($remote_socket, &$errno = null, &$errstr = null,
* @param resource $context [optional] <p>
* </p>
* @return resource|false the created stream, or false on error.
* @since 5.0
*/
function stream_socket_server ($local_socket, &$errno = null, &$errstr = null, $flags = null, $context = null) {}
@ -394,7 +372,6 @@ function stream_socket_server ($local_socket, &$errno = null, &$errstr = null, $
* stream_socket_get_name.
* </p>
* @return resource|false Returns a stream to the accepted socket connection or FALSE on failure.
* @since 5.0
*/
function stream_socket_accept ($server_socket, $timeout = null, &$peername = null) {}
@ -409,7 +386,6 @@ function stream_socket_accept ($server_socket, $timeout = null, &$peername = nul
* to false the local socket name will be returned.
* </p>
* @return string The name of the socket.
* @since 5.0
*/
function stream_socket_get_name ($handle, $want_peer) {}
@ -449,7 +425,6 @@ function stream_socket_get_name ($handle, $want_peer) {}
* the address of the remote socket.
* </p>
* @return string the read data, as a string
* @since 5.0
*/
function stream_socket_recvfrom ($socket, $length, $flags = null, &$address = null) {}
@ -483,7 +458,6 @@ function stream_socket_recvfrom ($socket, $length, $flags = null, &$address = nu
* If specified, it must be in dotted quad (or [ipv6]) format.
* </p>
* @return int a result code, as an integer.
* @since 5.0
*/
function stream_socket_sendto ($socket, $data, $flags = null, $address = null) {}
@ -506,7 +480,6 @@ function stream_socket_sendto ($socket, $data, $flags = null, $address = null) {
* @return bool|int true on success, false if negotiation has failed or
* 0 if there isn't enough data and you should try again
* (only for non-blocking sockets).
* @since 5.1
*/
function stream_socket_enable_crypto ($stream, $enable, $crypto_type = null, $session_stream = null) {}
@ -554,7 +527,6 @@ function stream_socket_shutdown ($stream, $how) {}
* </p>
* @return array|false an array with the two socket resources on success, or
* false on failure.
* @since 5.1
*/
function stream_socket_pair ($domain, $type, $protocol) {}
@ -574,7 +546,6 @@ function stream_socket_pair ($domain, $type, $protocol) {}
* The offset where to start to copy data
* </p>
* @return int|false the total count of bytes copied, or false on failure.
* @since 5.0
*/
function stream_copy_to_stream ($source, $dest, $maxlength = null, $offset = null) {}
@ -592,7 +563,6 @@ function stream_copy_to_stream ($source, $dest, $maxlength = null, $offset = nul
* Seek to the specified offset before reading.
* </p>
* @return string|false a string or false on failure.
* @since 5.0
*/
function stream_get_contents ($handle, $maxlength = null, $offset = null) {}
@ -603,7 +573,6 @@ function stream_get_contents ($handle, $maxlength = null, $offset = null) {}
* The stream to check.
* </p>
* @return bool true on success or false on failure.
* @since 5.3
*/
function stream_supports_lock ($stream) {}
@ -643,8 +612,6 @@ function stream_supports_lock ($stream) {}
* fgetcsv returns &null; if an invalid
* handle is supplied or false on other errors,
* including end of file.
* @since 4.0
* @since 5.0
*/
function fgetcsv ($handle, $length = 0, $delimiter = ',', $enclosure = '"', $escape = '\\') {}
@ -665,7 +632,6 @@ function fgetcsv ($handle, $length = 0, $delimiter = ',', $enclosure = '"', $esc
* </p>
* @param string $escape_char The optional escape_char parameter sets the escape character (one character only).
* @return int|false the length of the written string or false on failure.
* @since 5.1
*/
function fputcsv ($handle, array $fields, $delimiter = ",", $enclosure = '"', $escape_char = "\\") {}
@ -683,8 +649,6 @@ function fputcsv ($handle, array $fields, $delimiter = ",", $enclosure = '"', $e
* (EWOULDBLOCK errno condition).
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function flock ($handle, $operation, &$wouldblock = null) {}
@ -724,8 +688,6 @@ function flock ($handle, $operation, &$wouldblock = null) {}
* Special characters in the value of the name property are substituted with
* '_', the rest is converted to lower case. If two meta tags have the same
* name, only the last one is returned.
* @since 4.0
* @since 5.0
*/
function get_meta_tags ($filename, $use_include_path = null) {}
@ -743,8 +705,6 @@ function get_meta_tags ($filename, $use_include_path = null) {}
* </p>
* @return int 0 on success, or EOF if the request cannot be honored.
* @see stream_set_read_buffer()
* @since 4.3
* @since 5.0
*/
function stream_set_write_buffer ($stream, $buffer) {}
@ -762,8 +722,6 @@ function stream_set_write_buffer ($stream, $buffer) {}
* </p>
* @return int 0 on success, or EOF if the request cannot be honored.
* @see stream_set_write_buffer()
* @since 4.3
* @since 5.0
*/
function stream_set_read_buffer ($stream, $buffer) {}
@ -778,8 +736,6 @@ function stream_set_read_buffer ($stream, $buffer) {}
* @param int $buffer The number of bytes to buffer. If buffer is 0 then write operations are unbuffered.
* This ensures that all writes with fwrite() are completed before other processes are allowed to write to that output stream.
* @return int
* @since 4.0
* @since 5.0
*/
function set_file_buffer ($fp, $buffer) {}
@ -815,8 +771,6 @@ function set_socket_blocking ($socket, $mode) {}
* on the stream.
* </p>
* @return bool true on success or false on failure.
* @since 4.3
* @since 5.0
*/
function stream_set_blocking ($stream, $mode) {}
@ -837,8 +791,6 @@ function stream_set_blocking ($stream, $mode) {}
* on the stream.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function socket_set_blocking ($socket, $mode) {}
@ -903,8 +855,6 @@ function socket_set_blocking ($socket, $mode) {}
* <p>
* uri (string) - the URI/filename associated with this
* stream.
* @since 4.3
* @since 5.0
*/
function stream_get_meta_data ($stream) {}
@ -925,7 +875,6 @@ function stream_get_meta_data ($stream) {}
* </p>
* <p>
* If an error occurs, returns false.
* @since 5.0
*/
function stream_get_line ($handle, $length, $ending = null) {}
@ -948,8 +897,6 @@ function stream_get_line ($handle, $length, $ending = null) {}
* <p>
* stream_wrapper_register will return false if the
* protocol already has a handler.
* @since 4.3.2
* @since 5.0
*/
function stream_wrapper_register ($protocol, $classname, $flags = null) {}
@ -973,8 +920,6 @@ function stream_wrapper_register ($protocol, $classname, $flags = null) {}
* <p>
* stream_wrapper_register will return false if the
* protocol already has a handler.
* @since 4.3
* @since 5.0
*/
function stream_register_wrapper ($protocol, $classname, $flags = 0) {}
@ -994,7 +939,6 @@ function stream_resolve_include_path ($filename) {}
* @param string $protocol <p>
* </p>
* @return bool true on success or false on failure.
* @since 5.1
*/
function stream_wrapper_unregister ($protocol) {}
@ -1004,7 +948,6 @@ function stream_wrapper_unregister ($protocol) {}
* @param string $protocol <p>
* </p>
* @return bool true on success or false on failure.
* @since 5.1
*/
function stream_wrapper_restore ($protocol) {}
@ -1013,7 +956,6 @@ function stream_wrapper_restore ($protocol) {}
* @link https://php.net/manual/en/function.stream-get-wrappers.php
* @return array an indexed array containing the name of all stream wrappers
* available on the running system.
* @since 5.0
*/
function stream_get_wrappers () {}
@ -1021,7 +963,6 @@ function stream_get_wrappers () {}
* Retrieve list of registered socket transports
* @link https://php.net/manual/en/function.stream-get-transports.php
* @return array an indexed array of socket transports names.
* @since 5.0
*/
function stream_get_transports () {}
@ -1050,7 +991,6 @@ function stream_is_local ($stream_or_url) {}
* @param resource $context [optional]
* @return array|false an indexed or associative array with the headers, or false on
* failure.
* @since 5.0
*/
function get_headers ($url, $format = null, $context = null) {}
@ -1067,8 +1007,6 @@ function get_headers ($url, $format = null, $context = null) {}
* The microseconds part of the timeout to be set.
* </p>
* @return bool true on success or false on failure.
* @since 4.3
* @since 5.0
*/
function stream_set_timeout ($stream, $seconds, $microseconds = null) {}
@ -1086,8 +1024,6 @@ function stream_set_timeout ($stream, $seconds, $microseconds = null) {}
* The microseconds part of the timeout to be set.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function socket_set_timeout ($stream, $seconds, $microseconds = 0) {}
@ -1153,8 +1089,6 @@ function socket_set_timeout ($stream, $seconds, $microseconds = 0) {}
* <p>
* uri (string) - the URI/filename associated with this
* stream.
* @since 4.3
* @since 5.0
*/
function socket_get_status ($stream) {}
@ -1170,8 +1104,6 @@ function socket_get_status ($stream) {}
* <p>
* realpath returns false on failure, e.g. if
* the file does not exist.
* @since 4.0
* @since 5.0
*/
function realpath ($path) {}
@ -1230,8 +1162,6 @@ function realpath ($path) {}
* </table>
* </p>
* @return bool true if there is a match, false otherwise.
* @since 4.3
* @since 5.0
*/
function fnmatch ($pattern, $string, $flags = null) {}
?>

View File

@ -41,8 +41,6 @@
* fgets, fgetss,
* fwrite, fclose, and
* feof). If the call fails, it will return false
* @since 4.0
* @since 5.0
*/
function fsockopen ($hostname, $port = null, &$errno = null, &$errstr = null, $timeout = null) {}
@ -56,8 +54,6 @@ function fsockopen ($hostname, $port = null, &$errno = null, &$errstr = null, $t
* @param string &$errstr [optional]
* @param float $timeout [optional]
* @return resource|false
* @since 4.0
* @since 5.0
*/
function pfsockopen ($hostname, $port = null, &$errno = null, &$errstr = null, $timeout = null) {}
@ -165,8 +161,6 @@ function pfsockopen ($hostname, $port = null, &$errno = null, &$errstr = null, $
* </p>
* @param mixed $_ [optional]
* @return string|false a binary string containing data or false if the format string contains errors
* @since 4.0
* @since 5.0
*/
function pack ($format, $args = null, $_ = null) {}
@ -182,8 +176,6 @@ function pack ($format, $args = null, $_ = null) {}
* @param int $offset [optional]
* @return array|false an associative array containing unpacked elements of binary
* string or false if the format string contains errors
* @since 4.0
* @since 5.0
*/
function unpack ($format, $data, $offset = 0) {}
@ -213,8 +205,6 @@ function unpack ($format, $data, $offset = 0) {}
* enabled the browser to accept cookies or not. The only way to test if
* cookies are accepted is to set one with setcookie,
* reload, and check for the value.
* @since 4.0
* @since 5.0
*/
function get_browser ($user_agent = null, $return_array = null) {}
@ -235,8 +225,6 @@ function get_browser ($user_agent = null, $return_array = null) {}
* may impact both appearance and security.
* </p>
* @return string|null the encrypted string or <b>NULL</b> if an error occurs
* @since 4.0
* @since 5.0
*/
function crypt ($str, $salt = null) {}
@ -263,8 +251,6 @@ function crypt ($str, $salt = null) {}
* opendir by prepending
* '@' to the
* front of the function name.
* @since 4.0
* @since 5.0
*/
function opendir ($path, $context = null) {}
@ -278,8 +264,6 @@ function opendir ($path, $context = null) {}
* is assumed.
* </p>
* @return void
* @since 4.0
* @since 5.0
*/
function closedir ($dir_handle = null) {}
@ -290,8 +274,6 @@ function closedir ($dir_handle = null) {}
* The new current directory
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function chdir ($directory) {}
@ -302,8 +284,6 @@ function chdir ($directory) {}
* The new directory
* </p>
* @return bool true on success or false on failure.
* @since 4.0.5
* @since 5.0
*/
function chroot ($directory) {}
@ -320,8 +300,6 @@ function chroot ($directory) {}
* does. See chmod for more information on
* modes and permissions.
* </p>
* @since 4.0
* @since 5.0
*/
function getcwd () {}
@ -335,8 +313,6 @@ function getcwd () {}
* is assumed.
* </p>
* @return void
* @since 4.0
* @since 5.0
*/
function rewinddir ($dir_handle = null) {}
@ -350,8 +326,6 @@ function rewinddir ($dir_handle = null) {}
* is assumed.
* </p>
* @return string|false the filename on success or false on failure.
* @since 4.0
* @since 5.0
*/
function readdir ($dir_handle = null) {}
@ -364,8 +338,6 @@ function readdir ($dir_handle = null) {}
* @param resource $context [optional]
* @return Directory|null|false an instance of Directory, or <b>NULL</b> with wrong
* parameters, or <b>FALSE</b> in case of another error
* @since 4.0
* @since 5.0
*/
function dir ($directory, $context = null) {}
@ -389,7 +361,6 @@ function dir ($directory, $context = null) {}
* failure. If directory is not a directory, then
* boolean false is returned, and an error of level
* E_WARNING is generated.
* @since 5.0
*/
function scandir ($directory, $sorting_order = null, $context = null) {}
@ -414,8 +385,6 @@ function scandir ($directory, $sorting_order = null, $context = null) {}
* <p>
* On some systems it is impossible to distinguish between empty match and an
* error.
* @since 4.3
* @since 5.0
*/
function glob ($pattern, $flags = null) {}
@ -427,8 +396,6 @@ function glob ($pattern, $flags = null) {}
* </p>
* @return int|false the time the file was last accessed, or false on failure.
* The time is returned as a Unix timestamp.
* @since 4.0
* @since 5.0
*/
function fileatime ($filename) {}
@ -440,8 +407,6 @@ function fileatime ($filename) {}
* </p>
* @return int|false the time the file was last changed, or false on failure.
* The time is returned as a Unix timestamp.
* @since 4.0
* @since 5.0
*/
function filectime ($filename) {}
@ -455,8 +420,6 @@ function filectime ($filename) {}
* of an error. The group ID is returned in numerical format, use
* posix_getgrgid to resolve it to a group name.
* Upon failure, false is returned.
* @since 4.0
* @since 5.0
*/
function filegroup ($filename) {}
@ -467,8 +430,6 @@ function filegroup ($filename) {}
* Path to the file.
* </p>
* @return int|false the inode number of the file, or false on failure.
* @since 4.0
* @since 5.0
*/
function fileinode ($filename) {}
@ -481,8 +442,6 @@ function fileinode ($filename) {}
* @return int|false the time the file was last modified, or false on failure.
* The time is returned as a Unix timestamp, which is
* suitable for the date function.
* @since 4.0
* @since 5.0
*/
function filemtime ($filename) {}
@ -495,8 +454,6 @@ function filemtime ($filename) {}
* @return int|false the user ID of the owner of the file, or false on failure.
* The user ID is returned in numerical format, use
* posix_getpwuid to resolve it to a username.
* @since 4.0
* @since 5.0
*/
function fileowner ($filename) {}
@ -507,8 +464,6 @@ function fileowner ($filename) {}
* Path to the file.
* </p>
* @return int|false the permissions on the file, or false on failure.
* @since 4.0
* @since 5.0
*/
function fileperms ($filename) {}
@ -520,8 +475,6 @@ function fileperms ($filename) {}
* </p>
* @return int|false the size of the file in bytes, or false (and generates an error
* of level E_WARNING) in case of an error.
* @since 4.0
* @since 5.0
*/
function filesize ($filename) {}
@ -538,8 +491,6 @@ function filesize ($filename) {}
* Returns false if an error occurs. filetype will also
* produce an E_NOTICE message if the stat call fails
* or if the file type is unknown.
* @since 4.0
* @since 5.0
*/
function filetype ($filename) {}
@ -568,8 +519,6 @@ function filetype ($filename) {}
* </p>
* <p>
* The check is done using the real UID/GID instead of the effective one.
* @since 4.0
* @since 5.0
*/
function file_exists ($filename) {}
@ -581,8 +530,6 @@ function file_exists ($filename) {}
* </p>
* @return bool true if the filename exists and is
* writable.
* @since 4.0
* @since 5.0
*/
function is_writable ($filename) {}
@ -594,8 +541,6 @@ function is_writable ($filename) {}
* </p>
* @return bool true if the filename exists and is
* writable.
* @since 4.0
* @since 5.0
*/
function is_writeable ($filename) {}
@ -607,8 +552,6 @@ function is_writeable ($filename) {}
* </p>
* @return bool true if the file or directory specified by
* filename exists and is readable, false otherwise.
* @since 4.0
* @since 5.0
*/
function is_readable ($filename) {}
@ -620,8 +563,6 @@ function is_readable ($filename) {}
* </p>
* @return bool true if the filename exists and is executable, or false on
* error.
* @since 4.0
* @since 5.0
*/
function is_executable ($filename) {}
@ -633,8 +574,6 @@ function is_executable ($filename) {}
* </p>
* @return bool true if the filename exists and is a regular file, false
* otherwise.
* @since 4.0
* @since 5.0
*/
function is_file ($filename) {}
@ -649,8 +588,6 @@ function is_file ($filename) {}
* </p>
* @return bool true if the filename exists and is a directory, false
* otherwise.
* @since 4.0
* @since 5.0
*/
function is_dir ($filename) {}
@ -662,8 +599,6 @@ function is_dir ($filename) {}
* </p>
* @return bool true if the filename exists and is a symbolic link, false
* otherwise.
* @since 4.0
* @since 5.0
*/
function is_link ($filename) {}
@ -755,8 +690,6 @@ function is_link ($filename) {}
* </p>
* <p>
* In case of error, stat returns false.
* @since 4.0
* @since 5.0
*/
function stat ($filename) {}
@ -773,8 +706,6 @@ function stat ($filename) {}
* except that if the filename parameter is a symbolic
* link, the status of the symbolic link is returned, not the status of the
* file pointed to by the symbolic link.
* @since 4.0
* @since 5.0
*/
function lstat ($filename) {}
@ -788,8 +719,6 @@ function lstat ($filename) {}
* A user name or number.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function chown ($filename, $user) {}
@ -803,8 +732,6 @@ function chown ($filename, $user) {}
* A group name or number.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function chgrp ($filename, $group) {}
@ -869,8 +796,6 @@ function lchgrp ($filename, $group) {}
* </p>
* <p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function chmod ($filename, $mode) {}
@ -890,8 +815,6 @@ function chmod ($filename, $mode) {}
* time.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function touch ($filename, $time = null, $atime = null) {}
@ -906,8 +829,6 @@ function touch ($filename, $time = null, $atime = null) {}
* clear_realpath_cache is true.
* </p>
* @return void
* @since 4.0
* @since 5.0
*/
function clearstatcache ($clear_realpath_cache = null, $filename = null) {}
@ -919,8 +840,6 @@ function clearstatcache ($clear_realpath_cache = null, $filename = null) {}
* </p>
* @return float|false the total number of bytes as a float
* or false on failure.
* @since 4.1
* @since 5.0
*/
function disk_total_space ($directory) {}
@ -937,8 +856,6 @@ function disk_total_space ($directory) {}
* </p>
* @return float|false the number of available bytes as a float
* or false on failure.
* @since 4.1
* @since 5.0
*/
function disk_free_space ($directory) {}
@ -947,8 +864,6 @@ function disk_free_space ($directory) {}
* @link https://php.net/manual/en/function.diskfreespace.php
* @see disk_free_space
* @param $directory
* @since 4.0
* @since 5.0
*/
function diskfreespace ($directory) {}
@ -1037,8 +952,6 @@ function diskfreespace ($directory) {}
* <p>
* It is important to note that just because the mail was accepted for delivery,
* it does NOT mean the mail will actually reach the intended destination.
* @since 4.0
* @since 5.0
*/
function mail ($to, $subject, $message, $additional_headers = null, $additional_parameters = null) {}
@ -1049,8 +962,6 @@ function mail ($to, $subject, $message, $additional_headers = null, $additional_
* The email address that's being hashed.
* </p>
* @return int The hash value of addr.
* @since 4.0.2
* @since 5.0
* @deprecated 7.4
*/
function ezmlm_hash ($addr) {}
@ -1174,8 +1085,6 @@ function ezmlm_hash ($addr) {}
* operating systems
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function openlog ($ident, $option, $facility) {}

View File

@ -54,8 +54,6 @@
* errno.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function syslog ($priority, $message) {}
@ -63,8 +61,6 @@ function syslog ($priority, $message) {}
* Close connection to system logger
* @link https://php.net/manual/en/function.closelog.php
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function closelog () {}
@ -75,8 +71,6 @@ function closelog () {}
* @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
* @since 5.0
*/
function header_register_callback ( callable $callback ) {}
@ -116,8 +110,6 @@ function stream_set_chunk_size ($fp , $chunk_size) {}
* @link https://php.net/manual/en/function.define-syslog-variables.php
* @deprecated 5.3
* @return void
* @since 4.0
* @since 5.0
* @removed 5.4
*/
function define_syslog_variables () {}
@ -126,8 +118,6 @@ function define_syslog_variables () {}
* Combined linear congruential generator
* @link https://php.net/manual/en/function.lcg-value.php
* @return float A pseudo random float value in the range of (0, 1)
* @since 4.0
* @since 5.0
*/
function lcg_value () {}
@ -142,8 +132,6 @@ function lcg_value () {}
* The default value of 0 means no restriction.
* </p>
* @return string|false the metaphone key as a string, or FALSE on failure
* @since 4.0
* @since 5.0
*/
function metaphone ($str, $phonemes = 0) {}
@ -212,8 +200,6 @@ function metaphone ($str, $phonemes = 0) {}
* and return false if called.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function ob_start ($output_callback = null, $chunk_size = null, $erase = null) {}
@ -221,8 +207,6 @@ function ob_start ($output_callback = null, $chunk_size = null, $erase = null) {
* Flush (send) the output buffer
* @link https://php.net/manual/en/function.ob-flush.php
* @return void
* @since 4.2
* @since 5.0
*/
function ob_flush () {}
@ -230,8 +214,6 @@ function ob_flush () {}
* Clean (erase) the output buffer
* @link https://php.net/manual/en/function.ob-clean.php
* @return void
* @since 4.2
* @since 5.0
*/
function ob_clean () {}
@ -241,8 +223,6 @@ function ob_clean () {}
* @return bool true on success or false on failure. Reasons for failure are first that you called the
* function without an active buffer or that for some reason a buffer could
* not be deleted (possible for special buffer).
* @since 4.0
* @since 5.0
*/
function ob_end_flush () {}
@ -252,8 +232,6 @@ function ob_end_flush () {}
* @return bool true on success or false on failure. Reasons for failure are first that you called the
* function without an active buffer or that for some reason a buffer could
* not be deleted (possible for special buffer).
* @since 4.0
* @since 5.0
*/
function ob_end_clean () {}
@ -261,8 +239,6 @@ function ob_end_clean () {}
* Flush the output buffer, return it as a string and turn off output buffering
* @link https://php.net/manual/en/function.ob-get-flush.php
* @return string|false the output buffer or false if no buffering is active.
* @since 4.3
* @since 5.0
*/
function ob_get_flush () {}
@ -271,8 +247,6 @@ function ob_get_flush () {}
* @link https://php.net/manual/en/function.ob-get-clean.php
* @return string|false the contents of the output buffer and end output buffering.
* If output buffering isn't active then false is returned.
* @since 4.3
* @since 5.0
*/
function ob_get_clean () {}
@ -281,8 +255,6 @@ function ob_get_clean () {}
* @link https://php.net/manual/en/function.ob-get-length.php
* @return int|false the length of the output buffer contents or false if no
* buffering is active.
* @since 4.0.2
* @since 5.0
*/
function ob_get_length () {}
@ -291,8 +263,6 @@ function ob_get_length () {}
* @link https://php.net/manual/en/function.ob-get-level.php
* @return int the level of nested output buffering handlers or zero if output
* buffering is not active.
* @since 4.2
* @since 5.0
*/
function ob_get_level () {}
@ -364,8 +334,6 @@ function ob_get_level () {}
* <tr><td>size</td><td>...</td></tr>
* <tr><td>blocksize</td><td>...</td></tr>
* </table>
* @since 4.2
* @since 5.0
*/
function ob_get_status ($full_status = null) {}
@ -374,8 +342,6 @@ function ob_get_status ($full_status = null) {}
* @link https://php.net/manual/en/function.ob-get-contents.php
* @return string|false This will return the contents of the output buffer or false, if output
* buffering isn't active.
* @since 4.0
* @since 5.0
*/
function ob_get_contents () {}
@ -386,8 +352,6 @@ function ob_get_contents () {}
* 1 to turn implicit flushing on, 0 otherwise.
* </p>
* @return void
* @since 4.0
* @since 5.0
*/
function ob_implicit_flush ($flag = 1) {}
@ -399,8 +363,6 @@ function ob_implicit_flush ($flag = 1) {}
* an anonymous function was used with ob_start,
* ob_list_handlers will return "default output
* handler".
* @since 4.3
* @since 5.0
*/
function ob_list_handlers () {}
@ -416,8 +378,6 @@ function ob_list_handlers () {}
* see sort.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function ksort (array &$array, $sort_flags = null) {}
@ -433,8 +393,6 @@ function ksort (array &$array, $sort_flags = null) {}
* sort.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function krsort (array &$array, $sort_flags = null) {}
@ -445,8 +403,6 @@ function krsort (array &$array, $sort_flags = null) {}
* The input array.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function natsort (array &$array) {}
@ -457,8 +413,6 @@ function natsort (array &$array) {}
* The input array.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function natcasesort (array &$array) {}
@ -474,8 +428,6 @@ function natcasesort (array &$array) {}
* see sort.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function asort (array &$array, $sort_flags = null) {}
@ -491,8 +443,6 @@ function asort (array &$array, $sort_flags = null) {}
* sort.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function arsort (array &$array, $sort_flags = null) {}
@ -511,8 +461,6 @@ function arsort (array &$array, $sort_flags = null) {}
* SORT_REGULAR - compare items normally
* (don't change types)
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function sort (array &$array, $sort_flags = null) {}
@ -528,8 +476,6 @@ function sort (array &$array, $sort_flags = null) {}
* sort.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function rsort (array &$array, $sort_flags = null) {}
@ -545,8 +491,6 @@ function rsort (array &$array, $sort_flags = null) {}
* respectively less than, equal to, or greater than the second.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function usort (array &$array, $cmp_function) {}
@ -561,8 +505,6 @@ function usort (array &$array, $cmp_function) {}
* examples of user-defined comparison functions.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function uasort (array &$array, $cmp_function) {}
@ -584,8 +526,6 @@ function uasort (array &$array, $cmp_function) {}
* second.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function uksort (array &$array, $cmp_function) {}
@ -596,8 +536,6 @@ function uksort (array &$array, $cmp_function) {}
* The array.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function shuffle (array &$array) {}
@ -632,8 +570,6 @@ function shuffle (array &$array) {}
* funcname.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function array_walk (array &$array, $funcname, $userdata = null) {}
@ -662,7 +598,6 @@ function array_walk (array &$array, $funcname, $userdata = null) {}
* funcname.
* </p>
* @return bool true on success or false on failure.
* @since 5.0
*/
function array_walk_recursive (array &$input, $funcname, $userdata = null) {}
@ -692,8 +627,6 @@ function array_walk_recursive (array &$input, $funcname, $userdata = null) {}
* Caution: count may return 0 for a variable that isn't set,
* but it may also return 0 for a variable that has been initialized with an
* empty array. Use isset to test if a variable is set.
* @since 4.0
* @since 5.0
*/
function count ($var, $mode = COUNT_NORMAL) {}
@ -707,8 +640,6 @@ function count ($var, $mode = COUNT_NORMAL) {}
* passed by reference.
* </p>
* @return mixed the value of the last element or false for empty array.
* @since 4.0
* @since 5.0
* @meta
*/
function end (array &$array) {}
@ -722,8 +653,6 @@ function end (array &$array) {}
* @return mixed the array value in the previous place that's pointed to by
* the internal array pointer, or false if there are no more
* elements.
* @since 4.0
* @since 5.0
* @meta
*/
function prev (array &$array) {}
@ -736,8 +665,6 @@ function prev (array &$array) {}
* </p>
* @return mixed the array value in the next place that's pointed to by the
* internal array pointer, or false if there are no more elements.
* @since 4.0
* @since 5.0
* @meta
*/
function next (array &$array) {}
@ -750,8 +677,6 @@ function next (array &$array) {}
* </p>
* @return mixed the value of the first array element, or false if the array is
* empty.
* @since 4.0
* @since 5.0
* @meta
*/
function reset (array &$array) {}
@ -767,8 +692,6 @@ function reset (array &$array) {}
* internal pointer. It does not move the pointer in any way. If the
* internal pointer points beyond the end of the elements list or the array is
* empty, current returns false.
* @since 4.0
* @since 5.0
* @meta
*/
function current (array $array) {}
@ -784,8 +707,6 @@ function current (array $array) {}
* internal pointer. It does not move the pointer in any way. If the
* internal pointer points beyond the end of the elements list or the array is
* empty, key returns &null;.
* @since 4.0
* @since 5.0
*/
function key (array $array) {}
@ -798,8 +719,6 @@ function key (array $array) {}
* @param mixed $values [optional] any comparable value
* @return mixed min returns the numerically lowest of the
* parameter values.
* @since 4.0
* @since 5.0
*/
function min ($value1, $value2 = null, ...$values) {}
@ -812,8 +731,6 @@ function min ($value1, $value2 = null, ...$values) {}
* @param mixed $values [optional] any comparable value
* @return mixed max returns the numerically highest of the
* parameter values, either within a arg array or two arguments.
* @since 4.0
* @since 5.0
*/
function max ($value1, $value2 = null, ...$values) {}
@ -838,8 +755,6 @@ function max ($value1, $value2 = null, ...$values) {}
* </p>
* @return bool true if needle is found in the array,
* false otherwise.
* @since 4.0
* @since 5.0
*/
function in_array ($needle, array $haystack, $strict = false) {}
@ -870,8 +785,6 @@ function in_array ($needle, array $haystack, $strict = false) {}
* more than once, the first matching key is returned. To return the keys for
* all matching values, use array_keys with the optional
* search_value parameter instead.
* @since 4.0.5
* @since 5.0
*/
function array_search ($needle, array $haystack, $strict = null) {}
@ -900,8 +813,6 @@ function array_search ($needle, array $haystack, $strict = null) {}
* $_REQUEST, for example.
* @return int the number of variables successfully imported into the symbol
* table.
* @since 4.0
* @since 5.0
*/
function extract (array $var_array, $extract_type = null, $prefix = null) {}
@ -917,8 +828,6 @@ function extract (array $var_array, $extract_type = null, $prefix = null) {}
* </p>
* @param mixed $_ [optional]
* @return array the output array with all the variables added to it.
* @since 4.0
* @since 5.0
*/
function compact ($varname, $_ = null) {}
@ -936,8 +845,6 @@ function compact ($varname, $_ = null) {}
* Value to use for filling
* </p>
* @return array the filled array
* @since 4.2
* @since 5.0
*/
function array_fill ($start_index, $num, $value) {}
@ -952,7 +859,6 @@ function array_fill ($start_index, $num, $value) {}
* Value to use for filling
* </p>
* @return array the filled array
* @since 5.2
*/
function array_fill_keys (array $keys, $value) {}
@ -973,8 +879,6 @@ function array_fill_keys (array $keys, $value) {}
* </p>
* @return array an array of elements from start to
* end, inclusive.
* @since 4.0
* @since 5.0
*/
function range ($start, $end, $step = 1) {}
@ -1006,8 +910,6 @@ function range ($start, $end, $step = 1) {}
* In other words, the sort is lexicographical.
* </p>
* @return bool true on success or false on failure.
* @since 4.0
* @since 5.0
*/
function array_multisort (array &$array1, $array1_sort_order = null, $array1_sort_flags = null, $_ = null) {}
@ -1023,8 +925,6 @@ function array_multisort (array &$array1, $array1_sort_order = null, $array1_sor
* The pushed variables.
* </p>
* @return int the number of elements in the array.
* @since 4.0
* @since 5.0
*/
function array_push (array &$array, ...$vars) {}
@ -1037,8 +937,6 @@ function array_push (array &$array, ...$vars) {}
* @return mixed the last value of array.
* If array is empty (or is not an array),
* &null; will be returned.
* @since 4.0
* @since 5.0
* @meta
*/
function array_pop (array &$array) {}
@ -1051,8 +949,6 @@ function array_pop (array &$array) {}
* </p>
* @return mixed the shifted value, or &null; if array is
* empty or is not an array.
* @since 4.0
* @since 5.0
* @meta
*/
function array_shift (array &$array) {}
@ -1069,8 +965,6 @@ function array_shift (array &$array) {}
* The prepended variables.
* </p>
* @return int the number of elements in the array.
* @since 4.0
* @since 5.0
*/
function array_unshift (array &$array, ...$vars) {}
@ -1117,8 +1011,6 @@ function array_unshift (array &$array, ...$vars) {}
* around it, unless the element is an array itself.
* </p>
* @return array the array consisting of the extracted elements.
* @since 4.0
* @since 5.0
*/
function array_splice (array &$input, $offset, $length = null, $replacement = null) {}
@ -1149,8 +1041,6 @@ function array_splice (array &$input, $offset, $length = null, $replacement = nu
* preserve_keys to true.
* </p>
* @return array the slice.
* @since 4.0
* @since 5.0
* @meta
*/
function array_slice (array $array, $offset, $length = null, $preserve_keys = false) {}
@ -1164,8 +1054,6 @@ function array_slice (array $array, $offset, $length = null, $preserve_keys = fa
* @param array $array2 [optional]
* @param array $_ [optional]
* @return array the resulting array.
* @since 4.0
* @since 5.0
*/
function array_merge (array $array1, array $array2 = null, array $_ = null) {}

View File

@ -16,8 +16,6 @@ define ("ARRAY_FILTER_USE_KEY", 2);
* @link https://php.net/manual/en/function.array-merge-recursive.php
* @param array $_ [optional] Variable list of arrays to recursively merge.
* @return array An array of values resulted from merging the arguments together.
* @since 4.0.1
* @since 5.0
*/
function array_merge_recursive(array $_ = null) { }
@ -39,7 +37,6 @@ function array_merge_recursive(array $_ = null) { }
* @param array $array2 [optional]
* @param array $_ [optional]
* @return array or null if an error occurs.
* @since 5.3
*/
function array_replace(array $array, array $array1, array $array2 = null, array $_ = null) { }
@ -55,7 +52,6 @@ function array_replace(array $array, array $array1, array $array2 = null, array
* @param array $array2 [optional]
* @param array $_ [optional]
* @return array an array, or &null; if an error occurs.
* @since 5.3
*/
function array_replace_recursive(array $array, array $array1, array $array2 = null, array $_ = null) { }
@ -72,8 +68,6 @@ function array_replace_recursive(array $array, array $array1, array $array2 = nu
* Determines if strict comparison (===) should be used during the search.
* </p>
* @return array an array of all the keys in input.
* @since 4.0
* @since 5.0
*/
function array_keys(array $input, $search_value = null, $strict = null) { }
@ -84,8 +78,6 @@ function array_keys(array $input, $search_value = null, $strict = null) { }
* The array.
* </p>
* @return array an indexed array of values.
* @since 4.0
* @since 5.0
* @meta
*/
function array_values(array $input) { }
@ -98,8 +90,6 @@ function array_values(array $input) { }
* </p>
* @return array an associative array of values from input as
* keys and their count as value.
* @since 4.0
* @since 5.0
*/
function array_count_values(array $input) { }
@ -125,8 +115,6 @@ function array_column(array $array, $column, $index_key = null) { }
* If set to true keys are preserved.
* </p>
* @return array the reversed array.
* @since 4.0
* @since 5.0
* @meta
*/
function array_reverse(array $array, $preserve_keys = null) { }
@ -150,8 +138,6 @@ function array_reverse(array $array, $preserve_keys = null) { }
* <p>
* If the array is empty and initial is not passed,
* array_reduce returns null.
* @since 4.0.5
* @since 5.0
* @meta
*/
function array_reduce(array $input, $function, $initial = null) { }
@ -175,8 +161,6 @@ function array_reduce(array $input, $function, $initial = null) { }
* positive then the array is padded on the right, if it's negative then
* on the left. If the absolute value of pad_size is less than or equal to
* the length of the input then no padding takes place.
* @since 4.0
* @since 5.0
*/
function array_pad(array $input, $pad_size, $pad_value) { }
@ -187,8 +171,6 @@ function array_pad(array $input, $pad_size, $pad_value) { }
* An array of key/value pairs to be flipped.
* </p>
* @return array Returns the flipped array.
* @since 4.0
* @since 5.0
*/
function array_flip(array $array) { }
@ -203,8 +185,6 @@ function array_flip(array $array) { }
* CASE_LOWER (default)
* </p>
* @return array an array with its keys lower or uppercased
* @since 4.2
* @since 5.0
* @meta
*/
function array_change_key_case(array $input, $case = null) { }
@ -222,8 +202,6 @@ function array_change_key_case(array $input, $case = null) { }
* returns the key for a random entry. Otherwise, it returns an array
* of keys for the random entries. This is done so that you can pick
* random keys as well as values out of the array.
* @since 4.0
* @since 5.0
* @meta
*/
function array_rand(array $input, $num_req = null) { }
@ -257,8 +235,6 @@ function array_rand(array $input, $num_req = null) { }
* </li>
* </ul>
* @return array the filtered array.
* @since 4.0.1
* @since 5.0
* @meta
*/
function array_unique(array $array, $sort_flags = SORT_STRING) { }
@ -275,8 +251,6 @@ function array_unique(array $array, $sort_flags = SORT_STRING) { }
* @param array $_ [optional]
* @return array an array containing all of the values in
* array1 whose values exist in all of the parameters.
* @since 4.0.1
* @since 5.0
* @meta
*/
function array_intersect(array $array1, array $array2, array $_ = null) { }
@ -294,7 +268,6 @@ function array_intersect(array $array1, array $array2, array $_ = null) { }
* @return array an associative array containing all the entries of
* array1 which have keys that are present in all
* arguments.
* @since 5.1
* @meta
*/
function array_intersect_key(array $array1, array $array2, array $_ = null) { }
@ -314,7 +287,6 @@ function array_intersect_key(array $array1, array $array2, array $_ = null) { }
* </p>
* @return array the values of array1 whose keys exist
* in all the arguments.
* @since 5.1
* @meta
*/
function array_intersect_ukey(array $array1, array $array2, array $_ = null, $key_compare_func) { }
@ -340,7 +312,6 @@ function array_intersect_ukey(array $array1, array $array2, array $_ = null, $ke
* </p>
* @return array an array containing all the values of array1
* that are present in all the arguments.
* @since 5.0
* @meta
*/
function array_uintersect(array $array1, array $array2, array $_ = null, $data_compare_func) { }
@ -357,8 +328,6 @@ function array_uintersect(array $array1, array $array2, array $_ = null, $data_c
* @param array $_ [optional]
* @return array an associative array containing all the values in
* array1 that are present in all of the arguments.
* @since 4.3
* @since 5.0
* @meta
*/
function array_intersect_assoc(array $array1, array $array2, array $_ = null) { }
@ -382,7 +351,6 @@ function array_intersect_assoc(array $array1, array $array2, array $_ = null) {
* </p>
* @return array an array containing all the values of
* array1 that are present in all the arguments.
* @since 5.0
* @meta
*/
function array_uintersect_assoc(array $array1, array $array2, array $_ = null, $data_compare_func) { }
@ -402,7 +370,6 @@ function array_uintersect_assoc(array $array1, array $array2, array $_ = null, $
* </p>
* @return array the values of array1 whose values exist
* in all of the arguments.
* @since 5.0
* @meta
*/
function array_intersect_uassoc(array $array1, array $array2, array $_ = null, $key_compare_func) { }
@ -429,7 +396,6 @@ function array_intersect_uassoc(array $array1, array $array2, array $_ = null, $
* </p>
* @return array an array containing all the values of
* array1 that are present in all the arguments.
* @since 5.0
* @meta
*/
function array_uintersect_uassoc(array $array1, array $array2, array $_ = null, $data_compare_func, $key_compare_func) { }
@ -446,8 +412,6 @@ function array_uintersect_uassoc(array $array1, array $array2, array $_ = null,
* @param array $_ [optional]
* @return array an array containing all the entries from
* array1 that are not present in any of the other arrays.
* @since 4.0.1
* @since 5.0
* @meta
*/
function array_diff(array $array1, array $array2, array $_ = null) { }
@ -465,7 +429,6 @@ function array_diff(array $array1, array $array2, array $_ = null) { }
* @return array an array containing all the entries from
* array1 whose keys are not present in any of the
* other arrays.
* @since 5.1
* @meta
*/
function array_diff_key(array $array1, array $array2, array $_ = null) { }
@ -488,7 +451,6 @@ function array_diff_key(array $array1, array $array2, array $_ = null) { }
* </p>
* @return array an array containing all the entries from
* array1 that are not present in any of the other arrays.
* @since 5.1
* @meta
*/
function array_diff_ukey(array $array1, array $array2, array $_ = null, $key_compare_func) { }
@ -514,7 +476,6 @@ function array_diff_ukey(array $array1, array $array2, array $_ = null, $key_com
* </p>
* @return array an array containing all the values of array1
* that are not present in any of the other arguments.
* @since 5.0
* @meta
*/
function array_udiff(array $array1, array $array2, array $_ = null, $data_compare_func) { }
@ -531,8 +492,6 @@ function array_udiff(array $array1, array $array2, array $_ = null, $data_compar
* @param array $_ [optional]
* @return array an array containing all the values from
* array1 that are not present in any of the other arrays.
* @since 4.3
* @since 5.0
* @meta
*/
function array_diff_assoc(array $array1, array $array2, array $_ = null) { }
@ -565,7 +524,6 @@ function array_diff_assoc(array $array1, array $array2, array $_ = null) { }
* callback. In this aspect the behaviour is opposite to the behaviour of
* array_diff_assoc which uses internal function for
* comparison.
* @since 5.0
* @meta
*/
function array_udiff_assoc(array $array1, array $array2, array $_ = null, $data_compare_func) { }
@ -588,7 +546,6 @@ function array_udiff_assoc(array $array1, array $array2, array $_ = null, $data_
* </p>
* @return array an array containing all the entries from
* array1 that are not present in any of the other arrays.
* @since 5.0
* @meta
*/
function array_diff_uassoc(array $array1, array $array2, array $_ = null, $key_compare_func) { }
@ -628,7 +585,6 @@ function array_diff_uassoc(array $array1, array $array2, array $_ = null, $key_c
* @return array an array containing all the values from
* array1 that are not present in any of the other
* arguments.
* @since 5.0
* @meta
*/
function array_udiff_uassoc(array $array1, array $array2, array $_ = null, $data_compare_func, $key_compare_func) { }
@ -640,8 +596,6 @@ function array_udiff_uassoc(array $array1, array $array2, array $_ = null, $data
* The input array.
* </p>
* @return int|float the sum of values as an integer or float.
* @since 4.0.4
* @since 5.0
*/
function array_sum(array $array) { }
@ -652,7 +606,6 @@ function array_sum(array $array) { }
* The array.
* </p>
* @return int|float the product as an integer or float.
* @since 5.1
*/
function array_product(array $array) { }
@ -688,8 +641,6 @@ function array_product(array $array) { }
* </li>
* </ul>
* @return array the filtered array.
* @since 4.0.6
* @since 5.0
* @meta
*/
function array_filter(array $input, $callback = null, $flag = 0) { }
@ -706,8 +657,6 @@ function array_filter(array $input, $callback = null, $flag = 0) { }
* @param array $_ [optional]
* @return array an array containing all the elements of arr1
* after applying the callback function to each one.
* @since 4.0.6
* @since 5.0
* @meta
*/
function array_map($callback, array $arr1, array $_ = null) { }
@ -727,8 +676,6 @@ function array_map($callback, array $arr1, array $_ = null) { }
* </p>
* @return array a multidimensional numerically indexed array, starting with zero,
* with each dimension containing size elements.
* @since 4.2
* @since 5.0
*/
function array_chunk(array $input, $size, $preserve_keys = null) { }
@ -744,7 +691,6 @@ function array_chunk(array $input, $size, $preserve_keys = null) { }
* </p>
* @return array|false the combined array, false if the number of elements
* for each array isn't equal or if the arrays are empty.
* @since 5.0
* @meta
*/
function array_combine(array $keys, array $values) { }
@ -759,8 +705,6 @@ function array_combine(array $keys, array $values) { }
* An array with keys to check.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.7
* @since 5.0
*/
function array_key_exists($key, array $search) { }
@ -792,8 +736,6 @@ function array_key_last(array $array) { }
* &Alias; <function>current</function>
* @link https://php.net/manual/en/function.pos.php
* @param $arg
* @since 4.0
* @since 5.0
*/
function pos(&$arg) { }
@ -803,8 +745,6 @@ function pos(&$arg) { }
* @param array|Countable $var
* @param int $mode [optional]
* @return int
* @since 4.0
* @since 5.0
*/
function sizeof($var, $mode = COUNT_NORMAL) { }
@ -818,8 +758,6 @@ function sizeof($var, $mode = COUNT_NORMAL) { }
* An array with keys to check.
* </p>
* @return bool true on success or false on failure.
* @since 4.0.7
* @since 5.0
*/
function key_exists($key, $search) { }
@ -836,8 +774,6 @@ function key_exists($key, $search) { }
* @param string $description [optional]
* <p>An optional description that will be included in the failure message if the assertion fails.</p>
* @return bool false if the assertion is false, true otherwise.
* @since 4.0
* @since 5.0
*/
function assert($assertion, $description = '') { }
@ -901,8 +837,6 @@ class AssertionError extends Error {
* An optional new value for the option.
* </p>
* @return mixed the original setting of any option or false on errors.
* @since 4.0
* @since 5.0
*/
function assert_options($what, $value = null) { }
@ -939,8 +873,6 @@ function assert_options($what, $value = null) { }
* When using the optional operator argument, the
* function will return true if the relationship is the one specified
* by the operator, false otherwise.
* @since 4.1
* @since 5.0
*/
function version_compare($version1, $version2, $operator = null) { }
@ -955,8 +887,6 @@ function version_compare($version1, $version2, $operator = null) { }
* </p>
* @return int On success the return value will be the created key value, otherwise
* -1 is returned.
* @since 4.2
* @since 5.0
*/
function ftok($pathname, $proj) { }
@ -967,8 +897,6 @@ function ftok($pathname, $proj) { }
* The input string.
* </p>
* @return string the ROT13 version of the given string.
* @since 4.2
* @since 5.0
*/
function str_rot13($str) { }
@ -977,7 +905,6 @@ function str_rot13($str) { }
* @link https://php.net/manual/en/function.stream-get-filters.php
* @return array an indexed array containing the name of all stream filters
* available.
* @since 5.0
*/
function stream_get_filters() { }
@ -1103,7 +1030,6 @@ function stream_isatty($name) {}
* <p>
* stream_filter_register will return false if the
* filtername is already defined.
* @since 5.0
*/
function stream_filter_register($filtername, $classname) { }
@ -1112,7 +1038,6 @@ function stream_filter_register($filtername, $classname) { }
* @link https://php.net/manual/en/function.stream-bucket-make-writeable.php
* @param resource $brigade
* @return object
* @since 5.0
*/
function stream_bucket_make_writeable($brigade) { }
@ -1122,7 +1047,6 @@ function stream_bucket_make_writeable($brigade) { }
* @param resource $brigade
* @param resource $bucket
* @return void
* @since 5.0
*/
function stream_bucket_prepend($brigade, $bucket) { }
@ -1132,7 +1056,6 @@ function stream_bucket_prepend($brigade, $bucket) { }
* @param resource $brigade
* @param object $bucket
* @return void
* @since 5.0
*/
function stream_bucket_append($brigade, $bucket) { }
@ -1142,7 +1065,6 @@ function stream_bucket_append($brigade, $bucket) { }
* @param resource $stream
* @param string $buffer
* @return object
* @since 5.0
*/
function stream_bucket_new($stream, $buffer) { }
@ -1156,8 +1078,6 @@ function stream_bucket_new($stream, $buffer) { }
* The variable value.
* </p>
* @return bool true on success or false on failure.
* @since 4.3
* @since 5.0
*/
function output_add_rewrite_var($name, $value) { }
@ -1189,8 +1109,6 @@ function output_add_rewrite_var($name, $value) { }
*
* @link https://php.net/manual/en/function.output-reset-rewrite-vars.php
* @return bool true on success or false on failure.
* @since 4.3
* @since 5.0
*/
function output_reset_rewrite_vars() { }

View File

@ -12,7 +12,6 @@ define ('INI_ALL', 7);
/**
* Normal INI scanner mode
* @since 5.3
* @link https://php.net/manual/en/filesystem.constants.php
*/
define ('INI_SCANNER_NORMAL', 0);
@ -26,7 +25,6 @@ define ('INI_SCANNER_TYPED', 2);
/**
* Raw INI scanner mode
* @since 5.3
* @link https://php.net/manual/en/filesystem.constants.php
*/
define ('INI_SCANNER_RAW', 1);
@ -138,28 +136,24 @@ define ('NAN', NAN);
/**
* Round halves up
* @link https://php.net/manual/en/math.constants.php
* @since 5.3
*/
define ('PHP_ROUND_HALF_UP', 1);
/**
* Round halves down
* @link https://php.net/manual/en/math.constants.php
* @since 5.3
*/
define ('PHP_ROUND_HALF_DOWN', 2);
/**
* Round halves to even numbers
* @link https://php.net/manual/en/math.constants.php
* @since 5.3
*/
define ('PHP_ROUND_HALF_EVEN', 3);
/**
* Round halves to odd numbers
* @link https://php.net/manual/en/math.constants.php
* @since 5.3
*/
define ('PHP_ROUND_HALF_ODD', 4);
define ('INFO_GENERAL', 1);
@ -282,7 +276,6 @@ define ('ENT_NOQUOTES', 0);
* Silently discard invalid code unit sequences instead of returning an empty string.
* Using this flag is discouraged as it may have security implications.
* @link https://php.net/manual/en/function.htmlspecialchars.php
* @since 5.3
*/
define ('ENT_IGNORE', 4);
define ('STR_PAD_LEFT', 0);
@ -294,7 +287,6 @@ define ('PATHINFO_EXTENSION', 4);
/**
* @link https://php.net/manual/en/filesystem.constants.php
* @since 5.2
*/
define ('PATHINFO_FILENAME', 8);
define ('CHAR_MAX', 127);
@ -820,7 +812,6 @@ define ('SORT_STRING', 2);
/**
* SORT_LOCALE_STRING is used to compare items as
* strings, based on the current locale.
* @since 4.4
* @since 5.0.2
* @link https://php.net/manual/en/array.constants.php
*/
@ -1014,7 +1005,6 @@ define ('IMAGETYPE_XBM', 16);
/**
* Image type constant used by the {@link image_type_to_mime_type()} and {@link image_type_to_extension()} functions.
* @link https://php.net/manual/en/image.constants.php
* @since 5.3
*/
define ('IMAGETYPE_ICO', 17);

View File

@ -13,8 +13,6 @@
* exists, the <i>perms</i> will be ignored.
* </p>
* @return resource a resource handle that can be used to access the System V message queue.
* @since 4.3
* @since 5.0
*/
function msg_get_queue ($key, $perms = 0666) {}
@ -53,8 +51,6 @@ function msg_get_queue ($key, $perms = 0666) {}
* follows: <i>msg_lspid</i> is set to the process-ID of the
* calling process, <i>msg_qnum</i> is incremented by 1 and
* <i>msg_stime</i> is set to the current time.
* @since 4.3
* @since 5.0
*/
function msg_send ($queue, $msgtype, $message, $serialize = true, $blocking = true, &$errorcode = null) {}
@ -142,8 +138,6 @@ function msg_send ($queue, $msgtype, $message, $serialize = true, $blocking = tr
* follows: msg_lrpid is set to the process-ID of the
* calling process, msg_qnum is decremented by 1 and
* msg_rtime is set to the current time.
* @since 4.3
* @since 5.0
*/
function msg_receive ($queue, $desiredmsgtype, &$msgtype, $maxsize, &$message, $unserialize = true, $flags = 0, &$errorcode = null) {}
@ -154,8 +148,6 @@ function msg_receive ($queue, $desiredmsgtype, &$msgtype, $maxsize, &$message, $
* Message queue resource handle
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.3
* @since 5.0
*/
function msg_remove_queue ($queue) {}
@ -232,8 +224,6 @@ function msg_remove_queue ($queue) {}
* </td>
* </tr>
* </table>
* @since 4.3
* @since 5.0
*/
function msg_stat_queue ($queue) {}
@ -248,8 +238,6 @@ function msg_stat_queue ($queue) {}
* that you require in the <i>data</i> array.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.3
* @since 5.0
*/
function msg_set_queue ($queue, array $data) {}
@ -260,7 +248,6 @@ function msg_set_queue ($queue, array $data) {}
* Queue key.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.3
*/
function msg_queue_exists ($key) {}

View File

@ -21,8 +21,6 @@
* </p>
* @return resource|false a positive semaphore identifier on success, or <b>FALSE</b> on
* error.
* @since 4.0
* @since 5.0
*/
function sem_get ($key, $max_acquire = 1, $perm = 0666, $auto_release = 1) {}
@ -39,8 +37,6 @@ function sem_get ($key, $max_acquire = 1, $perm = 0666, $auto_release = 1) {}
* semaphore cannot be immediately acquired.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function sem_acquire ($sem_identifier, $nowait = false) {}
@ -52,8 +48,6 @@ function sem_acquire ($sem_identifier, $nowait = false) {}
* <b>sem_get</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function sem_release ($sem_identifier) {}
@ -65,8 +59,6 @@ function sem_release ($sem_identifier) {}
* by <b>sem_get</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.1
* @since 5.0
*/
function sem_remove ($sem_identifier) {}

View File

@ -17,8 +17,6 @@
* The optional permission bits. Default to 0666.
* </p>
* @return resource a shared memory segment identifier.
* @since 4.0
* @since 5.0
*/
function shm_attach ($key, $memsize = null, $perm = 0666) {}
@ -30,8 +28,6 @@ function shm_attach ($key, $memsize = null, $perm = 0666) {}
* <b>shm_attach</b>
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function shm_remove ($shm_identifier) {}
@ -43,8 +39,6 @@ function shm_remove ($shm_identifier) {}
* <b>shm_attach</b>
* </p>
* @return bool <b>shm_detach</b> always returns <b>TRUE</b>.
* @since 4.0
* @since 5.0
*/
function shm_detach ($shm_identifier) {}
@ -65,8 +59,6 @@ function shm_detach ($shm_identifier) {}
* that cannot be serialized.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function shm_put_var ($shm_identifier, $variable_key, $variable) {}
@ -80,7 +72,6 @@ function shm_put_var ($shm_identifier, $variable_key, $variable) {}
* The variable key.
* </p>
* @return bool <b>TRUE</b> if the entry exists, otherwise <b>FALSE</b>
* @since 5.3
*/
function shm_has_var ($shm_identifier, $variable_key) {}
@ -94,8 +85,6 @@ function shm_has_var ($shm_identifier, $variable_key) {}
* The variable key.
* </p>
* @return mixed the variable with the given key.
* @since 4.0
* @since 5.0
*/
function shm_get_var ($shm_identifier, $variable_key) {}
@ -110,8 +99,6 @@ function shm_get_var ($shm_identifier, $variable_key) {}
* The variable key.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function shm_remove_var ($shm_identifier, $variable_key) {}

View File

@ -217,7 +217,6 @@ class tidy {
* </p>
* @return string a string if the option exists and has documentation available, or
* <b>FALSE</b> otherwise.
* @since 5.1
*/
public function getOptDoc ($optname) {}
@ -773,7 +772,6 @@ function tidy_config_count (tidy $object) {}
* </p>
* @return string a string if the option exists and has documentation available, or
* <b>FALSE</b> otherwise.
* @since 5.1
*/
function tidy_get_opt_doc (tidy $object, $optname) {}
@ -832,7 +830,6 @@ function tidy_get_body (tidy $object) {}
* The buffer mode.
* </p>
* @return string the modified buffer.
* @since 5.0
*/
function ob_tidyhandler ($input, $mode = null) {}

View File

@ -25,8 +25,6 @@
* &gt;, !, etc...),
* or a three element array containing the token index in element 0, the string
* content of the original token in element 1 and the line number in element 2.
* @since 4.2
* @since 5.0
*/
function token_get_all ($source, $flags = 0) {}
@ -37,8 +35,6 @@ function token_get_all ($source, $flags = 0) {}
* The token value.
* </p>
* @return string The symbolic name of the given <i>token</i>.
* @since 4.2
* @since 5.0
*/
function token_name ($token) {}

View File

@ -12,8 +12,6 @@
* An optional comment string that appears in the packet header.
* </p>
* @return string|false the WDDX packet, or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function wddx_serialize_value ($var, $comment = null) {}
@ -26,8 +24,6 @@ function wddx_serialize_value ($var, $comment = null) {}
* </p>
* @param mixed $_ [optional]
* @return string|false the WDDX packet, or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function wddx_serialize_vars ($var_name, $_ = null) {}
@ -38,8 +34,6 @@ function wddx_serialize_vars ($var_name, $_ = null) {}
* An optional comment string.
* </p>
* @return resource|false a packet ID for use in later functions, or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function wddx_packet_start ($comment = null) {}
@ -50,8 +44,6 @@ function wddx_packet_start ($comment = null) {}
* A WDDX packet, returned by <b>wddx_packet_start</b>.
* </p>
* @return string the string containing the WDDX packet.
* @since 4.0
* @since 5.0
*/
function wddx_packet_end ($packet_id) {}
@ -67,8 +59,6 @@ function wddx_packet_end ($packet_id) {}
* </p>
* @param mixed $_ [optional]
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function wddx_add_vars ($packet_id, $var_name, $_ = null) {}
@ -80,8 +70,6 @@ function wddx_add_vars ($packet_id, $var_name, $_ = null) {}
* </p>
* @return mixed the deserialized value which can be a string, a number or an
* array. Note that structures are deserialized into associative arrays.
* @since 4.0
* @since 5.0
*/
function wddx_deserialize ($packet) {}

View File

@ -19,8 +19,6 @@
* US-ASCII.
* </p>
* @return resource a resource handle for the new XML parser.
* @since 4.0
* @since 5.0
*/
function xml_parser_create ($encoding = null) {}
@ -44,8 +42,6 @@ function xml_parser_create ($encoding = null) {}
* the string specified in <i>separator</i>.
* </p>
* @return resource a resource handle for the new XML parser.
* @since 4.0.5
* @since 5.0
*/
function xml_parser_create_ns ($encoding = null, $separator = ':') {}
@ -59,8 +55,6 @@ function xml_parser_create_ns ($encoding = null, $separator = ':') {}
* The object where to use the XML parser.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function xml_set_object ($parser, &$object) {}
@ -90,8 +84,6 @@ function xml_set_object ($parser, &$object) {}
* The first parameter, parser, is a
* reference to the XML parser calling the handler.
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function xml_set_element_handler ($parser, callable $start_element_handler, callable $end_element_handler) {}
@ -116,8 +108,6 @@ function xml_set_element_handler ($parser, callable $start_element_handler, call
* The first parameter, parser, is a
* reference to the XML parser calling the handler.
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function xml_set_character_data_handler ($parser, callable $handler) {}
@ -143,8 +133,6 @@ function xml_set_character_data_handler ($parser, callable $handler) {}
* The first parameter, parser, is a
* reference to the XML parser calling the handler.
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function xml_set_processing_instruction_handler ($parser, callable $handler) {}
@ -169,8 +157,6 @@ function xml_set_processing_instruction_handler ($parser, callable $handler) {}
* The first parameter, parser, is a
* reference to the XML parser calling the handler.
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function xml_set_default_handler ($parser, callable $handler) {}
@ -200,8 +186,6 @@ function xml_set_default_handler ($parser, callable $handler) {}
* reference to the XML parser calling the
* handler.
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function xml_set_unparsed_entity_decl_handler ($parser, callable $handler) {}
@ -229,8 +213,6 @@ function xml_set_unparsed_entity_decl_handler ($parser, callable $handler) {}
* The first parameter, parser, is a
* reference to the XML parser calling the handler.
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function xml_set_notation_decl_handler ($parser, callable $handler) {}
@ -262,8 +244,6 @@ function xml_set_notation_decl_handler ($parser, callable $handler) {}
* The first parameter, parser, is a
* reference to the XML parser calling the handler.
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function xml_set_external_entity_ref_handler ($parser, callable $handler) {}
@ -293,8 +273,6 @@ function xml_set_external_entity_ref_handler ($parser, callable $handler) {}
* The first parameter, parser, is a
* reference to the XML parser calling the handler.
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.5
* @since 5.0
*/
function xml_set_start_namespace_decl_handler ($parser, callable $handler) {}
@ -323,8 +301,6 @@ function xml_set_start_namespace_decl_handler ($parser, callable $handler) {}
* The first parameter, parser, is a
* reference to the XML parser calling the handler.
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0.5
* @since 5.0
*/
function xml_set_end_namespace_decl_handler ($parser, callable $handler) {}
@ -357,8 +333,6 @@ function xml_set_end_namespace_decl_handler ($parser, callable $handler) {}
* <p>
* Entity errors are reported at the end of the data thus only if
* <i>is_final</i> is set and <b>TRUE</b>.
* @since 4.0
* @since 5.0
*/
function xml_parse ($parser, $data, $is_final = false) {}
@ -380,8 +354,6 @@ function xml_parse ($parser, $data, $is_final = false) {}
* @return int <b>xml_parse_into_struct</b> returns 0 for failure and 1 for
* success. This is not the same as <b>FALSE</b> and <b>TRUE</b>, be careful with
* operators such as ===.
* @since 4.0
* @since 5.0
*/
function xml_parse_into_struct ($parser, $data, array &$values, array &$index = null) {}
@ -395,8 +367,6 @@ function xml_parse_into_struct ($parser, $data, array &$values, array &$index =
* not refer to a valid parser, or else it returns one of the error
* codes listed in the error codes
* section.
* @since 4.0
* @since 5.0
*/
function xml_get_error_code ($parser) {}
@ -408,8 +378,6 @@ function xml_get_error_code ($parser) {}
* </p>
* @return string a string with a textual description of the error
* <i>code</i>, or <b>FALSE</b> if no description was found.
* @since 4.0
* @since 5.0
*/
function xml_error_string ($code) {}
@ -422,8 +390,6 @@ function xml_error_string ($code) {}
* @return int|false This function returns <b>FALSE</b> if <i>parser</i> does
* not refer to a valid parser, or else it returns which line the
* parser is currently at in its data buffer.
* @since 4.0
* @since 5.0
*/
function xml_get_current_line_number ($parser) {}
@ -438,8 +404,6 @@ function xml_get_current_line_number ($parser) {}
* the current line (as given by
* <b>xml_get_current_line_number</b>) the parser is
* currently at.
* @since 4.0
* @since 5.0
*/
function xml_get_current_column_number ($parser) {}
@ -452,8 +416,6 @@ function xml_get_current_column_number ($parser) {}
* @return int|false This function returns <b>FALSE</b> if <i>parser</i> does
* not refer to a valid parser, or else it returns which byte index
* the parser is currently at in its data buffer (starting at 0).
* @since 4.0
* @since 5.0
*/
function xml_get_current_byte_index ($parser) {}
@ -463,8 +425,6 @@ function xml_get_current_byte_index ($parser) {}
* @param resource $parser A reference to the XML parser to free.
* @return bool This function returns <b>FALSE</b> if <i>parser</i> does not
* refer to a valid parser, or else it frees the parser and returns <b>TRUE</b>.
* @since 4.0
* @since 5.0
*/
function xml_parser_free ($parser) {}
@ -528,8 +488,6 @@ function xml_parser_free ($parser) {}
* @return bool This function returns <b>FALSE</b> if <i>parser</i> does not
* refer to a valid parser, or if the option could not be set. Else the
* option is set and <b>TRUE</b> is returned.
* @since 4.0
* @since 5.0
*/
function xml_parser_set_option ($parser, $option, $value) {}
@ -544,8 +502,6 @@ function xml_parser_set_option ($parser, $option, $value) {}
* not refer to a valid parser or if <i>option</i> isn't
* valid (generates also a <b>E_WARNING</b>).
* Else the option's value is returned.
* @since 4.0
* @since 5.0
*/
function xml_parser_get_option ($parser, $option) {}

View File

@ -296,7 +296,6 @@ class XMLReader {
* Retrieve XML from current node
* @link https://php.net/manual/en/xmlreader.readinnerxml.php
* @return string the contents of the current node as a string. Empty string on failure.
* @since 5.2
*/
public function readInnerXml () {}
@ -304,7 +303,6 @@ class XMLReader {
* Retrieve XML from current node, including it self
* @link https://php.net/manual/en/xmlreader.readouterxml.php
* @return string the contents of current node, including itself, as a string. Empty string on failure.
* @since 5.2
*/
public function readOuterXml () {}
@ -313,7 +311,6 @@ class XMLReader {
* @link https://php.net/manual/en/xmlreader.readstring.php
* @return string the content of the current node as a string. Empty string on
* failure.
* @since 5.2
*/
public function readString () {}
@ -324,7 +321,6 @@ class XMLReader {
* The filename of the XSD schema.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.2
*/
public function setSchema ($filename) {}
@ -351,7 +347,6 @@ class XMLReader {
* filename or URI pointing to a RelaxNG Schema.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.2
*/
public function setRelaxNGSchema ($filename) {}

View File

@ -7,8 +7,6 @@
* @link https://php.net/manual/en/function.xmlrpc-encode.php
* @param mixed $value
* @return string
* @since 4.1
* @since 5.0
*/
function xmlrpc_encode ($value) {}
@ -23,8 +21,6 @@ function xmlrpc_encode ($value) {}
* </p>
* @return mixed either an array, or an integer, or a string, or a boolean according
* to the response returned by the XMLRPC method.
* @since 4.1
* @since 5.0
*/
function xmlrpc_decode ($xml, $encoding = "iso-8859-1") {}
@ -35,8 +31,6 @@ function xmlrpc_decode ($xml, $encoding = "iso-8859-1") {}
* @param string $method
* @param string $encoding [optional]
* @return mixed
* @since 4.1
* @since 5.0
*/
function xmlrpc_decode_request ($xml, &$method, $encoding = null) {}
@ -54,8 +48,6 @@ function xmlrpc_decode_request ($xml, &$method, $encoding = null) {}
* emphasised):
* <p>output_type: php, xml</p>
* @return string a string containing the XML representation of the request.
* @since 4.1
* @since 5.0
*/
function xmlrpc_encode_request ($method, $params, array $output_options = null) {}
@ -66,8 +58,6 @@ function xmlrpc_encode_request ($method, $params, array $output_options = null)
* PHP value
* </p>
* @return string the XML-RPC type.
* @since 4.1
* @since 5.0
*/
function xmlrpc_get_type ($value) {}
@ -82,8 +72,6 @@ function xmlrpc_get_type ($value) {}
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* If successful, <i>value</i> is converted to an object.
* @since 4.1
* @since 5.0
*/
function xmlrpc_set_type (&$value, $type) {}
@ -96,8 +84,6 @@ function xmlrpc_set_type (&$value, $type) {}
* @return bool <b>TRUE</b> if the argument means fault, <b>FALSE</b> otherwise. Fault
* description is available in $arg["faultString"], fault
* code is in $arg["faultCode"].
* @since 4.3
* @since 5.0
*/
function xmlrpc_is_fault (array $arg) {}
@ -105,8 +91,6 @@ function xmlrpc_is_fault (array $arg) {}
* Creates an xmlrpc server
* @link https://php.net/manual/en/function.xmlrpc-server-create.php
* @return resource
* @since 4.1
* @since 5.0
*/
function xmlrpc_server_create () {}
@ -115,8 +99,6 @@ function xmlrpc_server_create () {}
* @link https://php.net/manual/en/function.xmlrpc-server-destroy.php
* @param resource $server
* @return int
* @since 4.1
* @since 5.0
*/
function xmlrpc_server_destroy ($server) {}
@ -127,8 +109,6 @@ function xmlrpc_server_destroy ($server) {}
* @param string $method_name
* @param callable $function
* @return bool
* @since 4.1
* @since 5.0
*/
function xmlrpc_server_register_method ($server, $method_name, $function) {}
@ -140,8 +120,6 @@ function xmlrpc_server_register_method ($server, $method_name, $function) {}
* @param mixed $user_data
* @param array $output_options [optional]
* @return string
* @since 4.1
* @since 5.0
*/
function xmlrpc_server_call_method ($server, $xml, $user_data, array $output_options = null) {}
@ -150,8 +128,6 @@ function xmlrpc_server_call_method ($server, $xml, $user_data, array $output_opt
* @link https://php.net/manual/en/function.xmlrpc-parse-method-descriptions.php
* @param string $xml
* @return array
* @since 4.1
* @since 5.0
*/
function xmlrpc_parse_method_descriptions ($xml) {}
@ -161,8 +137,6 @@ function xmlrpc_parse_method_descriptions ($xml) {}
* @param resource $server
* @param array $desc
* @return int
* @since 4.1
* @since 5.0
*/
function xmlrpc_server_add_introspection_data ($server, array $desc) {}
@ -172,8 +146,6 @@ function xmlrpc_server_add_introspection_data ($server, array $desc) {}
* @param resource $server
* @param string $function
* @return bool
* @since 4.1
* @since 5.0
*/
function xmlrpc_server_register_introspection_callback ($server, $function) {}

View File

@ -15,7 +15,6 @@ class XSLTProcessor {
* <b>SimpleXMLElement</b> object.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.0
*/
public function importStylesheet ($stylesheet) {}
@ -26,7 +25,6 @@ class XSLTProcessor {
* The node to be transformed.
* </p>
* @return DOMDocument|false The resulting <b>DOMDocument</b> or <b>FALSE</b> on error.
* @since 5.0
*/
public function transformToDoc (DOMNode $doc) {}
@ -40,7 +38,6 @@ class XSLTProcessor {
* The target URI for the transformation.
* </p>
* @return int|false the number of bytes written or <b>FALSE</b> if an error occurred.
* @since 5.0
*/
public function transformToUri ($doc, $uri) {}
@ -51,7 +48,6 @@ class XSLTProcessor {
* The transformed document.
* </p>
* @return string|false The result of the transformation as a string or <b>FALSE</b> on error.
* @since 5.0
*/
public function transformToXml ($doc) {}
@ -68,7 +64,6 @@ class XSLTProcessor {
* The new value of the XSLT parameter.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.0
*/
public function setParameter ($namespace, $name, $value) {}
@ -82,7 +77,6 @@ class XSLTProcessor {
* The local name of the XSLT parameter.
* </p>
* @return string|false The value of the parameter (as a string), or <b>FALSE</b> if it's not set.
* @since 5.0
*/
public function getParameter ($namespaceURI, $localName) {}
@ -96,7 +90,6 @@ class XSLTProcessor {
* The local name of the XSLT parameter.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.0
*/
public function removeParameter ($namespaceURI, $localName) {}
@ -131,7 +124,6 @@ class XSLTProcessor {
* Path to the file to dump profiling information.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 5.3
*/
public function setProfiling ($filename) {}

View File

@ -17,8 +17,6 @@
* an error occurs, <b>FALSE</b> is returned and unless the function was
* called as @readgzfile, an error message is
* printed.
* @since 4.0
* @since 5.0
*/
function readgzfile ($filename, $use_include_path = 0) {}
@ -30,8 +28,6 @@ function readgzfile ($filename, $use_include_path = 0) {}
* successfully opened by <b>gzopen</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function gzrewind ($zp) {}
@ -43,8 +39,6 @@ function gzrewind ($zp) {}
* successfully opened by <b>gzopen</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* @since 4.0
* @since 5.0
*/
function gzclose ($zp) {}
@ -57,8 +51,6 @@ function gzclose ($zp) {}
* </p>
* @return int|bool <b>TRUE</b> if the gz-file pointer is at EOF or an error occurs;
* otherwise returns <b>FALSE</b>.
* @since 4.0
* @since 5.0
*/
function gzeof ($zp) {}
@ -70,8 +62,6 @@ function gzeof ($zp) {}
* successfully opened by <b>gzopen</b>.
* </p>
* @return string|false The uncompressed character or <b>FALSE</b> on EOF (unlike <b>gzeof</b>).
* @since 4.0
* @since 5.0
*/
function gzgetc ($zp) {}
@ -86,8 +76,6 @@ function gzgetc ($zp) {}
* The length of data to get.
* </p>
* @return string|false The uncompressed string, or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function gzgets ($zp, $length) {}
@ -106,8 +94,6 @@ function gzgets ($zp, $length) {}
* be stripped.
* </p>
* @return string|false The uncompressed and striped string, or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
* @deprecated 7.3
*/
function gzgetss ($zp, $length, $allowable_tags = null) {}
@ -123,8 +109,6 @@ function gzgetss ($zp, $length, $allowable_tags = null) {}
* The number of bytes to read.
* </p>
* @return string The data that have been read.
* @since 4.0
* @since 5.0
*/
function gzread ($zp, $length) {}
@ -154,8 +138,6 @@ function gzread ($zp, $length) {}
* </p>
* <p>
* If the open fails, the function returns <b>FALSE</b>.
* @since 4.0
* @since 5.0
*/
function gzopen ($filename, $mode, $use_include_path = 0) {}
@ -168,8 +150,6 @@ function gzopen ($filename, $mode, $use_include_path = 0) {}
* </p>
* @return int The number of uncompressed characters read from <i>gz</i>
* and passed through to the input, or <b>FALSE</b> on error.
* @since 4.0
* @since 5.0
*/
function gzpassthru ($zp) {}
@ -194,8 +174,6 @@ function gzpassthru ($zp) {}
* </p>
* @return int Upon success, returns 0; otherwise, returns -1. Note that seeking
* past EOF is not considered an error.
* @since 4.0
* @since 5.0
*/
function gzseek ($zp, $offset, $whence = SEEK_SET) {}
@ -207,8 +185,6 @@ function gzseek ($zp, $offset, $whence = SEEK_SET) {}
* successfully opened by <b>gzopen</b>.
* </p>
* @return int|false The position of the file pointer or <b>FALSE</b> if an error occurs.
* @since 4.0
* @since 5.0
*/
function gztell ($zp) {}
@ -236,8 +212,6 @@ function gztell ($zp) {}
* </p>
* @return int the number of (uncompressed) bytes written to the given gz-file
* stream.
* @since 4.0
* @since 5.0
*/
function gzwrite ($zp, $string, $length = null) {}
@ -247,8 +221,6 @@ function gzwrite ($zp, $string, $length = null) {}
* @param $fp
* @param $str
* @param $length [optional]
* @since 4.0
* @since 5.0
*/
function gzputs ($fp, $str, $length) {}
@ -263,8 +235,6 @@ function gzputs ($fp, $str, $length) {}
* want to search for the file in the include_path too.
* </p>
* @return array An array containing the file, one line per cell.
* @since 4.0
* @since 5.0
*/
function gzfile ($filename, $use_include_path = 0) {}
@ -285,8 +255,6 @@ function gzfile ($filename, $use_include_path = 0) {}
* One of <b>ZLIB_ENCODING_*</b> constants.
* </p>
* @return string|false The compressed string or <b>FALSE</b> if an error occurred.
* @since 4.0.1
* @since 5.0
*/
function gzcompress ($data, $level = -1, $encoding = ZLIB_ENCODING_DEFLATE) {}
@ -305,8 +273,6 @@ function gzcompress ($data, $level = -1, $encoding = ZLIB_ENCODING_DEFLATE) {}
* The function will return an error if the uncompressed data is more than
* 32768 times the length of the compressed input <i>data</i>
* or more than the optional parameter <i>length</i>.
* @since 4.0.1
* @since 5.0
*/
function gzuncompress ($data, $length = 0) {}
@ -325,8 +291,6 @@ function gzuncompress ($data, $length = 0) {}
* One of <b>ZLIB_ENCODING_*</b> constants.
* </p>
* @return string|false The deflated string or <b>FALSE</b> if an error occurred.
* @since 4.0.4
* @since 5.0
*/
function gzdeflate ($data, $level = -1, $encoding = ZLIB_ENCODING_RAW) {}
@ -345,8 +309,6 @@ function gzdeflate ($data, $level = -1, $encoding = ZLIB_ENCODING_RAW) {}
* The function will return an error if the uncompressed data is more than
* 32768 times the length of the compressed input <i>data</i>
* or more than the optional parameter <i>length</i>.
* @since 4.0.4
* @since 5.0
*/
function gzinflate ($data, $length = 0) {}
@ -376,8 +338,6 @@ function gzinflate ($data, $length = 0) {}
* data, and an Adler checksum.
* </p>
* @return string|false The encoded string, or <b>FALSE</b> if an error occurred.
* @since 4.0.4
* @since 5.0
*/
function gzencode ($data, $level = -1, $encoding_mode = FORCE_GZIP) {}
@ -426,8 +386,6 @@ function zlib_decode ($data, $max_decoded_len = null) {}
* @link https://php.net/manual/en/function.zlib-get-coding-type.php
* @return string Possible return values are gzip, deflate,
* or <b>FALSE</b>.
* @since 4.3.2
* @since 5.0
*/
function zlib_get_coding_type () {}
@ -437,8 +395,6 @@ function zlib_get_coding_type () {}
* @param string $buffer
* @param int $mode
* @return string
* @since 4.0.4
* @since 5.0
*/
function ob_gzhandler ($buffer, $mode) {}