Remove whitespaces from stubs.

This commit is contained in:
zlianon 2020-05-10 16:58:53 +02:00 committed by andrey-sokolov
parent cdd2c066ca
commit eff2ef85ad
153 changed files with 2057 additions and 2080 deletions

View File

@ -143,9 +143,9 @@ function each (array &$array) {}
* @link https://php.net/manual/en/function.error-reporting.php
* @param int $level [optional] <p>
* The new error_reporting
* level. It takes on either a bitmask, or named constants. Using named
* constants is strongly encouraged to ensure compatibility for future
* versions. As error levels are added, the range of integers increases,
* level. It takes on either a bitmask, or named constants. Using named
* constants is strongly encouraged to ensure compatibility for future
* versions. As error levels are added, the range of integers increases,
* so older integer-based error levels will not always behave as expected.
* </p>
* <p>
@ -276,8 +276,8 @@ function error_reporting ($level = null) {}
* however it is not recommended and may cause unpredictable behavior.
* </p>
* @param bool $case_insensitive [optional] <p>
* If set to true, the constant will be defined case-insensitive.
* The default behavior is case-sensitive; i.e.
* If set to true, the constant will be defined case-insensitive.
* The default behavior is case-sensitive; i.e.
* CONSTANT and Constant represent
* different values.
* Defining case-insensitive constants is deprecated as of PHP 7.3.0.
@ -402,7 +402,7 @@ function class_exists ($class_name, $autoload = true) {}
* @param bool $autoload [optional] <p>
* Whether to call &link.autoload; or not by default.
* </p>
* @return bool true if the interface given by
* @return bool true if the interface given by
* <i>interface_name</i> has been defined, false otherwise.
* @since 5.0.2
*/
@ -418,7 +418,7 @@ function interface_exists ($interface_name, $autoload = true) {}
* function, false otherwise.
* </p>
* <p>
* This function will return false for constructs, such as
* This function will return false for constructs, such as
* <b>include_once</b> and <b>echo</b>.
*/
function function_exists ($function_name) {}
@ -440,7 +440,7 @@ function class_alias ($original, $alias, $autoload = TRUE) {}
* </p>
* <p>
* The script originally called is considered an "included file," so it will
* be listed together with the files referenced by
* be listed together with the files referenced by
* <b>include</b> and family.
* </p>
* <p>
@ -467,10 +467,10 @@ function get_required_files () {}
* </p>
* @param bool $allow_string [optional] <p>
* If this parameter set to false, string class name as object is not allowed.
* This also prevents from calling autoloader if the class doesn't exist.
* This also prevents from calling autoloader if the class doesn't exist.
* </p>
* @return bool This function returns true if the object <i>object</i>,
* belongs to a class which is a subclass of
* belongs to a class which is a subclass of
* <i>class_name</i>, false otherwise.
*/
function is_subclass_of ($object, $class_name, $allow_string = TRUE) {}
@ -501,7 +501,7 @@ function is_a ($object, $class_name, $allow_string = FALSE) {}
* </p>
* @return array an associative array of declared properties visible from the
* current scope, with their default value.
* The resulting array elements are in the form of
* The resulting array elements are in the form of
* varname => value.
*/
function get_class_vars ($class_name) {}
@ -533,8 +533,8 @@ function get_class_methods ($class_name) {}
* Generates a user-level error/warning/notice message
* @link https://php.net/manual/en/function.trigger-error.php
* @param string $error_msg <p>
* The designated error message for this error. It's limited to 1024
* characters in length. Any additional characters beyond 1024 will be
* The designated error message for this error. It's limited to 1024
* characters in length. Any additional characters beyond 1024 will be
* truncated.
* </p>
* @param int $error_type [optional] <p>
@ -559,7 +559,7 @@ function user_error ($message, $error_type = E_USER_NOTICE) {}
* @link https://php.net/manual/en/function.set-error-handler.php
* @param callable|null $error_handler <p>
* The user function needs to accept two parameters: the error code, and a
* string describing the error. Then there are three optional parameters
* string describing the error. Then there are three optional parameters
* that may be supplied: the filename in which the error occurred, the
* line number in which the error occurred, and the context in which the
* error occurred (an array that points to the active symbol table at the
@ -693,11 +693,11 @@ function create_function ($args, $code) {}
* </p>
* @return string If the given <i>handle</i> is a resource, this function
* will return a string representing its type. If the type is not identified
* by this function, the return value will be the string
* by this function, the return value will be the string
* Unknown.
* </p>
* <p>
* This function will return false and generate an error if
* This function will return false and generate an error if
* <i>handle</i> is not a resource.
*/
function get_resource_type ($handle) {}
@ -813,7 +813,7 @@ function get_extension_funcs ($module_name) {}
* )
* </pre>
* </p>
* @return array
* @return array
*/
function get_defined_constants ($categorize = false) {}
@ -956,14 +956,14 @@ function gc_enabled () {}
/**
* Activates the circular reference collector
* @link https://php.net/manual/en/function.gc-enable.php
* @return void
* @return void
*/
function gc_enable () {}
/**
* Deactivates the circular reference collector
* @link https://php.net/manual/en/function.gc-disable.php
* @return void
* @return void
*/
function gc_disable () {}

View File

@ -588,7 +588,7 @@ final class Closure {
* @since 7.0
*/
function call ($newthis, ...$parameters) {}
/**
* @param callable $callable
* @return Closure

View File

@ -383,4 +383,3 @@ define('STDOUT', fopen('php://stdout', 'w'));
define('STDERR', fopen('php://stderr', 'w'));
define('PHP_FD_SETSIZE', 1024);

View File

@ -15,4 +15,4 @@ class ErrorInfo
/** @var Token|null If applicable - the Parle\Token related to the error, otherwise NULL. */
public $token;
}
}

View File

@ -133,4 +133,4 @@ class Lexer
* @param int $pos Reset position.
*/
public function reset(int $pos) : void {}
}
}

View File

@ -10,4 +10,4 @@ use Throwable;
class LexerException extends Exception implements Throwable
{
}
}

View File

@ -9,4 +9,4 @@ use Throwable;
class ParserException extends Exception implements Throwable
{
}
}

View File

@ -41,4 +41,4 @@ class Stack
* @return void
*/
public function push($item) {}
}
}

View File

@ -19,4 +19,4 @@ class Token
/** @var string Token value. */
public $value;
}
}

View File

@ -62,7 +62,7 @@ interface Reflector {
/**
* To string
* @link https://php.net/manual/en/reflector.tostring.php
* @return string
* @return string
*/
function __toString ();
@ -336,7 +336,7 @@ class ReflectionFunction extends ReflectionFunctionAbstract implements Reflector
* arguments which are passed to the function much like
* call_user_func is.
* </p>
* @return mixed
* @return mixed
*/
public function invoke ($args = null) {}
@ -806,7 +806,7 @@ class ReflectionClass implements Reflector {
/**
* Clones object
* @link https://php.net/manual/en/reflectionclass.clone.php
* @return void
* @return void
*/
final private function __clone () {}
@ -1344,14 +1344,14 @@ class ReflectionProperty implements Reflector {
/**
* Clone
* @link https://php.net/manual/en/reflectionproperty.clone.php
* @return void
* @return void
*/
final private function __clone () {}
/**
* Export
* @link https://php.net/manual/en/reflectionproperty.export.php
* @param mixed $class
* @param mixed $class
* @param string $name <p>
* The property name.
* </p>
@ -2035,15 +2035,15 @@ final class ReflectionReference
* @return self|null
*/
public static function fromArrayElement($array, $key) {}
/**
* Returns unique identifier for the reference. The return value format is unspecified
* @return int|string
*/
public function getId() {}
private function __construct() {}
private function __clone() {}
}

View File

@ -226,7 +226,7 @@ class SplFileInfo {
* @link https://php.net/manual/en/splfileinfo.openfile.php
* @param string $open_mode [optional] <p>
* The mode for opening the file. See the <b>fopen</b>
* documentation for descriptions of possible modes. The default
* documentation for descriptions of possible modes. The default
* is read only.
* </p>
* @param bool $use_include_path [optional] <p>
@ -244,9 +244,9 @@ class SplFileInfo {
* Sets the class name used with <b>SplFileInfo::openFile</b>
* @link https://php.net/manual/en/splfileinfo.setfileclass.php
* @param string $class_name [optional] <p>
* The class name to use when openFile() is called.
* The class name to use when openFile() is called.
* </p>
* @return void
* @return void
* @since 5.1.2
*/
public function setFileClass ($class_name = null) {}
@ -257,7 +257,7 @@ class SplFileInfo {
* @param string $class_name [optional] <p>
* The class name to use.
* </p>
* @return void
* @return void
* @since 5.1.2
*/
public function setInfoClass ($class_name = null) {}
@ -303,7 +303,7 @@ class DirectoryIterator extends SplFileInfo implements SeekableIterator {
/**
* Rewind the DirectoryIterator back to the start
* @link https://php.net/manual/en/directoryiterator.rewind.php
* @return void
* @return void
*/
public function rewind () {}
@ -331,7 +331,7 @@ class DirectoryIterator extends SplFileInfo implements SeekableIterator {
/**
* Move forward to next DirectoryIterator item
* @link https://php.net/manual/en/directoryiterator.next.php
* @return void
* @return void
*/
public function next () {}
@ -341,7 +341,7 @@ class DirectoryIterator extends SplFileInfo implements SeekableIterator {
* @param int $position <p>
* The zero-based numeric position to seek to.
* </p>
* @return void
* @return void
*/
public function seek ($position) {}
}
@ -376,14 +376,14 @@ class FilesystemIterator extends DirectoryIterator {
/**
* Rewinds back to the beginning
* @link https://php.net/manual/en/filesystemiterator.rewind.php
* @return void
* @return void
*/
public function rewind () {}
/**
* Move to the next file
* @link https://php.net/manual/en/filesystemiterator.next.php
* @return void
* @return void
*/
public function next () {}
@ -417,7 +417,7 @@ class FilesystemIterator extends DirectoryIterator {
* The handling flags to set.
* See the FilesystemIterator constants.
* </p>
* @return void
* @return void
*/
public function setFlags ($flags = null) {}
}
@ -473,14 +473,14 @@ class RecursiveDirectoryIterator extends FilesystemIterator implements Recursive
/**
* Rewinds back to the beginning
* @link https://php.net/manual/en/filesystemiterator.rewind.php
* @return void
* @return void
*/
public function rewind () {}
/**
* Move to the next file
* @link https://php.net/manual/en/filesystemiterator.next.php
* @return void
* @return void
*/
public function next () {}
@ -503,7 +503,7 @@ class RecursiveDirectoryIterator extends FilesystemIterator implements Recursive
}
/**
* Iterates through a file system in a similar fashion to
* Iterates through a file system in a similar fashion to
* <b>glob</b>.
* @link https://php.net/manual/en/class.globiterator.php
*/
@ -568,7 +568,7 @@ class SplFileObject extends SplFileInfo implements RecursiveIterator, SeekableIt
/**
* Rewind the file to the first line
* @link https://php.net/manual/en/splfileobject.rewind.php
* @return void
* @return void
*/
public function rewind () {}
@ -653,7 +653,7 @@ class SplFileObject extends SplFileInfo implements RecursiveIterator, SeekableIt
* @param string $escape [optional] <p>
* The field escape character (one character only).
* </p>
* @return void
* @return void
*/
public function setCsvControl ($delimiter = ",", $enclosure = "\"", $escape = "\\") {}
@ -813,7 +813,7 @@ class SplFileObject extends SplFileInfo implements RecursiveIterator, SeekableIt
/**
* Read next line
* @link https://php.net/manual/en/splfileobject.next.php
* @return void
* @return void
*/
public function next () {}
@ -821,11 +821,11 @@ class SplFileObject extends SplFileInfo implements RecursiveIterator, SeekableIt
* Sets flags for the SplFileObject
* @link https://php.net/manual/en/splfileobject.setflags.php
* @param int $flags <p>
* Bit mask of the flags to set. See
* SplFileObject constants
* Bit mask of the flags to set. See
* SplFileObject constants
* for the available flags.
* </p>
* @return void
* @return void
*/
public function setFlags ($flags) {}
@ -842,7 +842,7 @@ class SplFileObject extends SplFileInfo implements RecursiveIterator, SeekableIt
* @param int $max_len <p>
* The maximum length of a line.
* </p>
* @return void
* @return void
*/
public function setMaxLineLen ($max_len) {}
@ -875,7 +875,7 @@ class SplFileObject extends SplFileInfo implements RecursiveIterator, SeekableIt
* @param int $line_pos <p>
* The zero-based line number to seek to.
* </p>
* @return void
* @return void
*/
public function seek ($line_pos) {}
@ -954,7 +954,7 @@ class SplDoublyLinkedList implements Iterator, Countable, ArrayAccess, Serializa
* @param mixed $value <p>
* The value to push.
* </p>
* @return void
* @return void
*/
public function push ($value) {}
@ -964,7 +964,7 @@ class SplDoublyLinkedList implements Iterator, Countable, ArrayAccess, Serializa
* @param mixed $value <p>
* The value to unshift.
* </p>
* @return void
* @return void
*/
public function unshift ($value) {}
@ -1004,7 +1004,7 @@ class SplDoublyLinkedList implements Iterator, Countable, ArrayAccess, Serializa
* </p>
* The direction of the iteration (either one or the other):
* <b>SplDoublyLinkedList::IT_MODE_LIFO</b> (Stack style)
* @return void
* @return void
*/
public function setIteratorMode ($mode) {}
@ -1044,7 +1044,7 @@ class SplDoublyLinkedList implements Iterator, Countable, ArrayAccess, Serializa
* @param mixed $newval <p>
* The new value for the <i>index</i>.
* </p>
* @return void
* @return void
*/
public function offsetSet ($index, $newval) {}
@ -1054,14 +1054,14 @@ class SplDoublyLinkedList implements Iterator, Countable, ArrayAccess, Serializa
* @param mixed $index <p>
* The index being unset.
* </p>
* @return void
* @return void
*/
public function offsetUnset ($index) {}
/**
* Rewind iterator back to the start
* @link https://php.net/manual/en/spldoublylinkedlist.rewind.php
* @return void
* @return void
*/
public function rewind () {}
@ -1082,14 +1082,14 @@ class SplDoublyLinkedList implements Iterator, Countable, ArrayAccess, Serializa
/**
* Move to next entry
* @link https://php.net/manual/en/spldoublylinkedlist.next.php
* @return void
* @return void
*/
public function next () {}
/**
* Move to previous entry
* @link https://php.net/manual/en/spldoublylinkedlist.prev.php
* @return void
* @return void
*/
public function prev () {}
@ -1144,7 +1144,7 @@ class SplQueue extends SplDoublyLinkedList {
* @param mixed $value <p>
* The value to enqueue.
* </p>
* @return void
* @return void
*/
public function enqueue ($value) {}
@ -1206,7 +1206,7 @@ abstract class SplHeap implements Iterator, Countable {
* @param mixed $value <p>
* The value to insert.
* </p>
* @return void
* @return void
*/
public function insert ($value) {}
@ -1234,7 +1234,7 @@ abstract class SplHeap implements Iterator, Countable {
/**
* Rewind iterator back to the start (no-op)
* @link https://php.net/manual/en/splheap.rewind.php
* @return void
* @return void
*/
public function rewind () {}
@ -1255,7 +1255,7 @@ abstract class SplHeap implements Iterator, Countable {
/**
* Move to the next node
* @link https://php.net/manual/en/splheap.next.php
* @return void
* @return void
*/
public function next () {}
@ -1269,7 +1269,7 @@ abstract class SplHeap implements Iterator, Countable {
/**
* Recover from the corrupted state and allow further actions on the heap.
* @link https://php.net/manual/en/splheap.recoverfromcorruption.php
* @return void
* @return void
*/
public function recoverFromCorruption () {}
@ -1331,7 +1331,7 @@ class SplMinHeap extends SplHeap {
* @param mixed $value <p>
* The value to insert.
* </p>
* @return void
* @return void
*/
public function insert ($value) {}
@ -1359,7 +1359,7 @@ class SplMinHeap extends SplHeap {
/**
* Rewind iterator back to the start (no-op)
* @link https://php.net/manual/en/splheap.rewind.php
* @return void
* @return void
*/
public function rewind () {}
@ -1380,7 +1380,7 @@ class SplMinHeap extends SplHeap {
/**
* Move to the next node
* @link https://php.net/manual/en/splheap.next.php
* @return void
* @return void
*/
public function next () {}
@ -1394,7 +1394,7 @@ class SplMinHeap extends SplHeap {
/**
* Recover from the corrupted state and allow further actions on the heap.
* @link https://php.net/manual/en/splheap.recoverfromcorruption.php
* @return void
* @return void
*/
public function recoverFromCorruption () {}
@ -1424,7 +1424,7 @@ class SplMaxHeap extends SplHeap {
}
/**
* The SplPriorityQueue class provides the main functionalities of an
* The SplPriorityQueue class provides the main functionalities of an
* prioritized queue, implemented using a heap.
* @link https://php.net/manual/en/class.splpriorityqueue.php
*/
@ -1477,7 +1477,7 @@ class SplPriorityQueue implements Iterator, Countable {
* <b>SplPriorityQueue::extract</b>.
* </p>
* <b>SplPriorityQueue::EXTR_DATA</b> (0x00000001): Extract the data
* @return void
* @return void
*/
public function setExtractFlags ($flags) {}
@ -1512,7 +1512,7 @@ class SplPriorityQueue implements Iterator, Countable {
/**
* Rewind iterator back to the start (no-op)
* @link https://php.net/manual/en/splpriorityqueue.rewind.php
* @return void
* @return void
*/
public function rewind () {}
@ -1533,7 +1533,7 @@ class SplPriorityQueue implements Iterator, Countable {
/**
* Move to the next node
* @link https://php.net/manual/en/splpriorityqueue.next.php
* @return void
* @return void
*/
public function next () {}
@ -1547,7 +1547,7 @@ class SplPriorityQueue implements Iterator, Countable {
/**
* Recover from the corrupted state and allow further actions on the queue.
* @link https://php.net/manual/en/splpriorityqueue.recoverfromcorruption.php
* @return void
* @return void
*/
public function recoverFromCorruption () {}
@ -1564,9 +1564,9 @@ class SplPriorityQueue implements Iterator, Countable {
}
/**
* The SplFixedArray class provides the main functionalities of array. The
* main differences between a SplFixedArray and a normal PHP array is that
* the SplFixedArray is of fixed length and allows only integers within
* The SplFixedArray class provides the main functionalities of array. The
* main differences between a SplFixedArray and a normal PHP array is that
* the SplFixedArray is of fixed length and allows only integers within
* the range as indexes. The advantage is that it allows a faster array
* implementation.
* @link https://php.net/manual/en/class.splfixedarray.php
@ -1601,7 +1601,7 @@ class SplFixedArray implements Iterator, ArrayAccess, Countable {
* The array to import.
* </p>
* @param bool $save_indexes [optional] <p>
* Try to save the numeric indexes used in the original array.
* Try to save the numeric indexes used in the original array.
* </p>
* @return SplFixedArray an instance of <b>SplFixedArray</b>
* containing the array content.
@ -1654,7 +1654,7 @@ class SplFixedArray implements Iterator, ArrayAccess, Countable {
* @param mixed $newval <p>
* The new value for the <i>index</i>.
* </p>
* @return void
* @return void
*/
public function offsetSet ($index, $newval) {}
@ -1664,14 +1664,14 @@ class SplFixedArray implements Iterator, ArrayAccess, Countable {
* @param int $index <p>
* The index being unset.
* </p>
* @return void
* @return void
*/
public function offsetUnset ($index) {}
/**
* Rewind iterator back to the start
* @link https://php.net/manual/en/splfixedarray.rewind.php
* @return void
* @return void
*/
public function rewind () {}
@ -1692,7 +1692,7 @@ class SplFixedArray implements Iterator, ArrayAccess, Countable {
/**
* Move to next entry
* @link https://php.net/manual/en/splfixedarray.next.php
* @return void
* @return void
*/
public function next () {}
@ -1723,7 +1723,7 @@ interface SplObserver {
* @param SplSubject $subject <p>
* The <b>SplSubject</b> notifying the observer of an update.
* </p>
* @return void
* @return void
*/
public function update (SplSubject $subject);
@ -1742,7 +1742,7 @@ interface SplSubject {
* @param SplObserver $observer <p>
* The <b>SplObserver</b> to attach.
* </p>
* @return void
* @return void
*/
public function attach (SplObserver $observer);
@ -1752,14 +1752,14 @@ interface SplSubject {
* @param SplObserver $observer <p>
* The <b>SplObserver</b> to detach.
* </p>
* @return void
* @return void
*/
public function detach (SplObserver $observer);
/**
* Notify an observer
* @link https://php.net/manual/en/splsubject.notify.php
* @return void
* @return void
*/
public function notify ();
@ -1782,7 +1782,7 @@ class SplObjectStorage implements Countable, Iterator, Serializable, ArrayAccess
* @param mixed $data [optional] <p>
* The data to associate with the object.
* </p>
* @return void
* @return void
*/
public function attach ($object, $data = null) {}
@ -1792,7 +1792,7 @@ class SplObjectStorage implements Countable, Iterator, Serializable, ArrayAccess
* @param object $object <p>
* The object to remove.
* </p>
* @return void
* @return void
*/
public function detach ($object) {}
@ -1812,7 +1812,7 @@ class SplObjectStorage implements Countable, Iterator, Serializable, ArrayAccess
* @param SplObjectStorage $storage <p>
* The storage you want to import.
* </p>
* @return void
* @return void
*/
public function addAll ($storage) {}
@ -1822,7 +1822,7 @@ class SplObjectStorage implements Countable, Iterator, Serializable, ArrayAccess
* @param SplObjectStorage $storage <p>
* The storage containing the elements to remove.
* </p>
* @return void
* @return void
*/
public function removeAll ($storage) {}
@ -1850,7 +1850,7 @@ class SplObjectStorage implements Countable, Iterator, Serializable, ArrayAccess
* @param mixed $data <p>
* The data to associate with the current iterator entry.
* </p>
* @return void
* @return void
*/
public function setInfo ($data) {}
@ -1864,7 +1864,7 @@ class SplObjectStorage implements Countable, Iterator, Serializable, ArrayAccess
/**
* Rewind the iterator to the first storage element
* @link https://php.net/manual/en/splobjectstorage.rewind.php
* @return void
* @return void
*/
public function rewind () {}
@ -1892,7 +1892,7 @@ class SplObjectStorage implements Countable, Iterator, Serializable, ArrayAccess
/**
* Move to the next entry
* @link https://php.net/manual/en/splobjectstorage.next.php
* @return void
* @return void
*/
public function next () {}
@ -1902,7 +1902,7 @@ class SplObjectStorage implements Countable, Iterator, Serializable, ArrayAccess
* @param string $serialized <p>
* The serialized representation of a storage.
* </p>
* @return void
* @return void
* @since 5.2.2
*/
public function unserialize ($serialized) {}
@ -1935,7 +1935,7 @@ class SplObjectStorage implements Countable, Iterator, Serializable, ArrayAccess
* @param mixed $data [optional] <p>
* The data to associate with the object.
* </p>
* @return void
* @return void
*/
public function offsetSet ($object, $data = null) {}
@ -1945,7 +1945,7 @@ class SplObjectStorage implements Countable, Iterator, Serializable, ArrayAccess
* @param object $object <p>
* The object to remove.
* </p>
* @return void
* @return void
*/
public function offsetUnset ($object) {}
@ -2015,7 +2015,7 @@ class MultipleIterator implements Iterator {
* The flags to set, according to the
* Flag Constants
* </p>
* @return void
* @return void
*/
public function setFlags ($flags) {}
@ -2039,7 +2039,7 @@ class MultipleIterator implements Iterator {
* @param Iterator $iterator <p>
* The iterator to detach.
* </p>
* @return void
* @return void
*/
public function detachIterator (Iterator $iterator) {}
@ -2063,7 +2063,7 @@ class MultipleIterator implements Iterator {
/**
* Rewinds all attached iterator instances
* @link https://php.net/manual/en/multipleiterator.rewind.php
* @return void
* @return void
*/
public function rewind () {}
@ -2096,9 +2096,8 @@ class MultipleIterator implements Iterator {
/**
* Moves all attached iterator instances forward
* @link https://php.net/manual/en/multipleiterator.next.php
* @return void
* @return void
*/
public function next () {}
}

View File

@ -6,7 +6,7 @@
/**
* Return available SPL classes
* @link https://php.net/manual/en/function.spl-classes.php
* @return array
* @return array
*/
function spl_classes () {}
@ -18,7 +18,7 @@ function spl_classes () {}
* @param string $file_extensions [optional] <p>
* By default it checks all include paths to
* contain filenames built up by the lowercase class name appended by the
* filename extensions .inc and .php.
* filename extensions .inc and .php.
* </p>
* @return void
* @since 5.1.2
@ -52,7 +52,7 @@ function spl_autoload_extensions ($file_extensions = null) {}
* @param bool $throw This parameter specifies whether spl_autoload_register() should throw exceptions when the
* autoload_function cannot be registered.
* @param bool $prepend If true, spl_autoload_register() will prepend the autoloader on the autoload stack instead of
* appending it.
* appending it.
* @return bool true on success or false on failure.
* @since 5.1.2
*/
@ -123,7 +123,7 @@ function class_implements ($class, $autoload = null) {}
/**
* Return hash id for given object
* @link https://php.net/manual/en/function.spl-object-hash.php
* @param object $obj
* @param object $obj
* @return string A string that is unique for each object and is always the same for
* the same object.
*/

View File

@ -517,7 +517,7 @@ final class SQLiteException extends RuntimeException {
/**
* Clone the exception
* @link https://php.net/manual/en/exception.clone.php
* @return void
* @return void
* @since 5.1.0
*/
final private function __clone () {}
@ -740,9 +740,9 @@ function sqlite_fetch_array ($result, $result_type = SQLITE_BOTH, $decode_binary
* Fetches the next row from a result set as an object
* @link https://php.net/manual/en/function.sqlite-fetch-object.php
* @param resource $result
* @param string $class_name [optional]
* @param array $ctor_params [optional]
* @param bool $decode_binary [optional]
* @param string $class_name [optional]
* @param array $ctor_params [optional]
* @param bool $decode_binary [optional]
* @return object
*/
function sqlite_fetch_object ($result, $class_name = null, array $ctor_params = null, $decode_binary = null) {}
@ -1171,7 +1171,7 @@ function sqlite_udf_encode_binary ($data) {}
* @param string $data <p>
* The encoded data that will be decoded, data that was applied by either
* sqlite_udf_encode_binary or
* sqlite_escape_string.
* sqlite_escape_string.
* </p>
* @return string The decoded string.
*/
@ -1397,4 +1397,3 @@ define ('SQLITE_DONE', 101);
* @link https://php.net/manual/en/sqlite.constants.php
*/
define('SQLITE3_DETERMINISTIC', 2048);

View File

@ -859,4 +859,4 @@ class XdmAtomicValue extends XdmItem {
* @return true
*/
public function isAtomic() {}
}
}

View File

@ -57,11 +57,11 @@ function opcache_get_configuration() {}
/**
* (PHP 5 &gt;= 5.6, PECL ZendOpcache &gt;= 7.0.4 )<br/>
* This function checks if a PHP script has been cached in OPCache.
* This function checks if a PHP script has been cached in OPCache.
* This can be used to more easily detect the "warming" of the cache for a particular script.
* @link https://secure.php.net/manual/en/function.opcache-is-script-cached.php
* @param string $file The path to the PHP script to be checked.
* @return bool Returns TRUE if file is cached in OPCache, FALSE otherwise.
* @since 5.6
*/
function opcache_is_script_cached($file) {}
function opcache_is_script_cached($file) {}

View File

@ -80,4 +80,3 @@ function zend_disk_cache_delete($key) {}
function zend_disk_cache_clear($namespace = '') {}
// End of Zend Cache v.

View File

@ -555,7 +555,7 @@ function apcu_entry($key, callable $generator, $ttl = 0){}
* Retrieves cached information from APCu's data store
*
* @link https://php.net/manual/en/function.apcu-cache-info.php
*
*
* @param bool $limited If limited is TRUE, the return value will exclude the individual list of cache entries.
* This is useful when trying to optimize calls for statistics gathering.
* @return array|false Array of cached data (and meta-data) or FALSE on failure

View File

@ -373,7 +373,7 @@ namespace Couchbase {
*/
const RBAC_DOMAIN_EXTERNAL = 2;
final private function __construct() {}
/**
@ -605,7 +605,7 @@ namespace Couchbase {
/** Ping full text search (FTS) service. */
const PINGSVC_FTS = 0x08;
final private function __construct() {}
/**
@ -1322,7 +1322,7 @@ namespace Couchbase {
* Provides management capabilities for the Couchbase Bucket
*/
class BucketManager {
final private function __construct() {}
/**
@ -1498,7 +1498,7 @@ namespace Couchbase {
* An object which contains meta information of the document needed to enforce query consistency.
*/
class MutationToken {
final private function __construct() {}
/**
@ -1544,7 +1544,7 @@ namespace Couchbase {
* Container for mutation tokens.
*/
class MutationState {
final private function __construct() {}
/**
@ -1605,7 +1605,7 @@ namespace Couchbase {
const ORDER_ASCENDING = 1;
const ORDER_DESCENDING = 2;
final private function __construct() {}
/**
@ -1770,7 +1770,7 @@ namespace Couchbase {
* Querying spatial views
*/
class SpatialViewQuery implements ViewQueryEncodable {
final private function __construct() {}
/**
@ -1915,7 +1915,7 @@ namespace Couchbase {
*/
const PROFILE_TIMINGS = 'timings';
final private function __construct() {}
/**
@ -2078,7 +2078,7 @@ namespace Couchbase {
const GSI = 1;
const VIEW = 2;
final private function __construct() {}
/**
@ -2155,7 +2155,7 @@ namespace Couchbase {
* Sub-Document Operations
*/
class LookupInBuilder {
final private function __construct() {}
/**
@ -2218,7 +2218,7 @@ namespace Couchbase {
const FULLDOC_UPSERT = 1;
const FULLDOC_INSERT = 2;
final private function __construct() {}
/**
@ -2759,7 +2759,7 @@ namespace Couchbase {
* A FTS query that queries fields explicitly indexed as boolean.
*/
class BooleanFieldSearchQuery implements \JsonSerializable, SearchQueryPart {
final private function __construct() {}
/**
@ -2784,7 +2784,7 @@ namespace Couchbase {
* A compound FTS query that allows various combinations of sub-queries.
*/
class BooleanSearchQuery implements \JsonSerializable, SearchQueryPart {
final private function __construct() {}
/**
@ -2821,7 +2821,7 @@ namespace Couchbase {
* A compound FTS query that performs a logical AND between all its sub-queries (conjunction).
*/
class ConjunctionSearchQuery implements \JsonSerializable, SearchQueryPart {
final private function __construct() {}
/**
@ -2848,7 +2848,7 @@ namespace Couchbase {
* minimum of the queries match. The minimum is configurable (default 1).
*/
class DisjunctionSearchQuery implements \JsonSerializable, SearchQueryPart {
final private function __construct() {}
/**
@ -2881,7 +2881,7 @@ namespace Couchbase {
* inclusiveness of each bound can be configured.
*/
class DateRangeSearchQuery implements \JsonSerializable, SearchQueryPart {
final private function __construct() {}
/**
@ -2931,7 +2931,7 @@ namespace Couchbase {
* inclusiveness of each bound can be configured.
*/
class NumericRangeSearchQuery implements \JsonSerializable, SearchQueryPart {
final private function __construct() {}
/**
@ -2971,7 +2971,7 @@ namespace Couchbase {
* this in a compound query).
*/
class DocIdSearchQuery implements \JsonSerializable, SearchQueryPart {
final private function __construct() {}
/**
@ -3002,7 +3002,7 @@ namespace Couchbase {
* A FTS query that matches all indexed documents (usually for debugging purposes).
*/
class MatchAllSearchQuery implements \JsonSerializable, SearchQueryPart {
final private function __construct() {}
/**
@ -3021,7 +3021,7 @@ namespace Couchbase {
* A FTS query that matches 0 document (usually for debugging purposes).
*/
class MatchNoneSearchQuery implements \JsonSerializable, SearchQueryPart {
final private function __construct() {}
/**
@ -3041,7 +3041,7 @@ namespace Couchbase {
* like analyzers to them.
*/
class MatchPhraseSearchQuery implements \JsonSerializable, SearchQueryPart {
final private function __construct() {}
/**
@ -3073,7 +3073,7 @@ namespace Couchbase {
* like analyzers, stemming and even #fuzziness(int).
*/
class MatchSearchQuery implements \JsonSerializable, SearchQueryPart {
final private function __construct() {}
/**
@ -3118,7 +3118,7 @@ namespace Couchbase {
* MatchPhraseQuery.
*/
class PhraseSearchQuery implements \JsonSerializable, SearchQueryPart {
final private function __construct() {}
/**
@ -3143,7 +3143,7 @@ namespace Couchbase {
* A FTS query that allows for simple matching of regular expressions.
*/
class RegexpSearchQuery implements \JsonSerializable, SearchQueryPart {
final private function __construct() {}
/**
@ -3168,7 +3168,7 @@ namespace Couchbase {
* A FTS query that allows for simple matching using wildcard characters (* and ?).
*/
class WildcardSearchQuery implements \JsonSerializable, SearchQueryPart {
final private function __construct() {}
/**
@ -3193,7 +3193,7 @@ namespace Couchbase {
* A FTS query that allows for simple matching on a given prefix.
*/
class PrefixSearchQuery implements \JsonSerializable, SearchQueryPart {
final private function __construct() {}
/**
@ -3218,7 +3218,7 @@ namespace Couchbase {
* A FTS query that performs a search according to the "string query" syntax.
*/
class QueryStringSearchQuery implements \JsonSerializable, SearchQueryPart {
final private function __construct() {}
/**
@ -3237,7 +3237,7 @@ namespace Couchbase {
* A facet that gives the number of occurrences of the most recurring terms in all hits.
*/
class TermSearchQuery implements \JsonSerializable, SearchQueryPart {
final private function __construct() {}
/**
@ -3275,7 +3275,7 @@ namespace Couchbase {
* inclusiveness of each bound can be configured.
*/
class TermRangeSearchQuery implements \JsonSerializable, SearchQueryPart {
final private function __construct() {}
/**
@ -3316,7 +3316,7 @@ namespace Couchbase {
* Both the point and the distance are required.
*/
class GeoDistanceSearchQuery implements \JsonSerializable, SearchQueryPart {
final private function __construct() {}
/**
@ -3341,7 +3341,7 @@ namespace Couchbase {
* A FTS query which allows to match geo bounding boxes.
*/
class GeoBoundingBoxSearchQuery implements \JsonSerializable, SearchQueryPart {
final private function __construct() {}
/**
@ -3376,7 +3376,7 @@ namespace Couchbase {
* A facet that gives the number of occurrences of the most recurring terms in all hits.
*/
class TermSearchFacet implements \JsonSerializable, SearchFacet {
final private function __construct() {}
/**
@ -3389,7 +3389,7 @@ namespace Couchbase {
* A facet that categorizes hits inside date ranges (or buckets) provided by the user.
*/
class DateRangeSearchFacet implements \JsonSerializable, SearchFacet {
final private function __construct() {}
/**
@ -3410,7 +3410,7 @@ namespace Couchbase {
* A facet that categorizes hits into numerical ranges (or buckets) provided by the user.
*/
class NumericRangeSearchFacet implements \JsonSerializable, SearchFacet {
final private function __construct() {}
/**
@ -3431,7 +3431,7 @@ namespace Couchbase {
* Base class for all FTS sort options in querying.
*/
class SearchSort {
private function __construct() {}
/**
@ -3473,7 +3473,7 @@ namespace Couchbase {
* Sort by the document identifier.
*/
class SearchSortId extends SearchSort implements \JsonSerializable {
private function __construct() {}
/**
@ -3490,7 +3490,7 @@ namespace Couchbase {
* Sort by the hit score.
*/
class SearchSortScore extends SearchSort implements \JsonSerializable {
private function __construct() {}
/**
@ -3519,7 +3519,7 @@ namespace Couchbase {
const MISSING_FIRST = "first";
const MISSING_LAST = "last";
private function __construct() {}
/**
@ -3568,7 +3568,7 @@ namespace Couchbase {
* Sort by a location and unit in the hits.
*/
class SearchSortGeoDistance extends SearchSort implements \JsonSerializable {
private function __construct() {}
/**
@ -3597,7 +3597,7 @@ namespace Couchbase {
* Analytics quick start
*/
class AnalyticsQuery {
final private function __construct() {}
/**

View File

@ -14,7 +14,7 @@ class Cipher {
const MODE_GCM = 6;
const MODE_CCM = 7;
const MODE_XTS = 65537;
/**
* Returns cipher algorithms
* @param bool $aliases
@ -22,28 +22,28 @@ class Cipher {
* @return string
*/
public static function getAlgorithms($aliases = false, $prefix = null) {}
/**
* Finds out whether algorithm exists
* @param string $algorithm
* @return bool
*/
public static function hasAlgorithm($algorithm) {}
/**
* Finds out whether the cipher mode is defined in the used OpenSSL library
* @param int $mode
* @return bool
*/
public static function hasMode($mode) {}
/**
* Cipher magic method for calling static methods
* @param string $name
* @param array $arguments
*/
public static function __callStatic($name, $arguments) {}
/**
* Cipher constructor
* @param string $algorithm
@ -51,13 +51,13 @@ class Cipher {
* @param string $key_size
*/
public function __construct($algorithm, $mode = NULL, $key_size = NULL) {}
/**
* Returns cipher algorithm string
* @return string
*/
public function getAlgorithmName() {}
/**
* Initializes cipher encryption
* @param string $key
@ -65,20 +65,20 @@ class Cipher {
* @return bool
*/
public function encryptInit($key, $iv = null) {}
/**
* Updates cipher encryption
* @param string $data
* @return string
*/
public function encryptUpdate($data) {}
/**
* Finalizes cipher encryption
* @return string
*/
public function encryptFinish() {}
/**
* Encrypts text to ciphertext
* @param string $data
@ -87,7 +87,7 @@ class Cipher {
* @return string
*/
public function encrypt($data, $key, $iv = null) {}
/**
* Initializes cipher decryption
* @param string $key
@ -95,20 +95,20 @@ class Cipher {
* @return null
*/
public function decryptInit($key, $iv = null) {}
/**
* Updates cipher decryption
* @param string $data
* @return string
*/
public function decryptUpdate($data) {}
/**
* Finalizes cipher decryption
* @return string
*/
public function decryptFinish() {}
/**
* Decrypts ciphertext to decrypted text
* @param string $data
@ -117,215 +117,215 @@ class Cipher {
* @return string
*/
public function decrypt($data, $key, $iv = null) {}
/**
* Returns cipher block size
* @return int
*/
public function getBlockSize() {}
/**
* Returns cipher key length
* @return int
*/
public function getKeyLength() {}
/**
* Returns cipher IV length
* @return int
*/
public function getIVLength() {}
/**
* Returns cipher mode
* @return int
*/
public function getMode() {}
/**
* Returns authentication tag
* @return string
*/
public function getTag() {}
/**
* Sets authentication tag
* @param string $tag
* @return bool
*/
public function setTag($tag) {}
/**
* Set authentication tag length
* @param int $tag_length
* @return bool
*/
public function setTagLength($tag_length) {}
/**
* Sets additional application data for authenticated encryption
* @param string $aad
* @return bool
*/
public function setAAD($aad) {}
}
/**
* Exception class for cipher errors
*/
class CipherException extends \Exception {
/**
* Cipher '%s' algorithm not found
*/
const ALGORITHM_NOT_FOUND = 1;
/**
* Cipher static method '%s' not found
*/
const STATIC_METHOD_NOT_FOUND = 2;
/**
* Cipher static method %s can accept max two arguments
*/
const STATIC_METHOD_TOO_MANY_ARGS = 3;
/**
* Cipher mode not found
*/
const MODE_NOT_FOUND = 4;
/**
* Cipher mode %s is not available in installed OpenSSL library
*/
const MODE_NOT_AVAILABLE = 5;
/**
* The authentication is not supported for %s cipher mode
*/
const AUTHENTICATION_NOT_SUPPORTED = 6;
/**
* Invalid length of key for cipher '%s' algorithm (required length: %d)
*/
const KEY_LENGTH_INVALID = 7;
/**
* Invalid length of initial vector for cipher '%s' algorithm (required length: %d)
*/
const IV_LENGTH_INVALID = 8;
/**
* AAD setter has to be called before encryption or decryption
*/
const AAD_SETTER_FORBIDDEN = 9;
/**
* AAD setter failed
*/
const AAD_SETTER_FAILED = 10;
/**
* AAD length can't exceed max integer length
*/
const AAD_LENGTH_HIGH = 11;
/**
* Tag getter has to be called after encryption
*/
const TAG_GETTER_FORBIDDEN = 12;
/**
* Tag setter has to be called before decryption
*/
const TAG_SETTER_FORBIDDEN = 13;
/**
* Tag getter failed
*/
const TAG_GETTER_FAILED = 14;
/**
* Tag setter failed
*/
const TAG_SETTER_FAILED = 15;
/**
* Tag length setter has to be called before encryption
*/
const TAG_LENGTH_SETTER_FORBIDDEN = 16;
/**
* Tag length can't be lower than 32 bits (4 characters)
*/
const TAG_LENGTH_LOW = 17;
/**
* Tag length can't exceed 128 bits (16 characters)
*/
const TAG_LENGTH_HIGH = 18;
/**
* Tag verification failed
*/
const TAG_VERIFY_FAILED = 19;
/**
* Initialization of cipher algorithm failed
*/
const INIT_ALG_FAILED = 20;
/**
* Initialization of cipher context failed
*/
const INIT_CTX_FAILED = 21;
/**
* Cipher object is already used for decryption
*/
const INIT_ENCRYPT_FORBIDDEN = 22;
/**
* Cipher object is already used for encryption
*/
const INIT_DECRYPT_FORBIDDEN = 23;
/**
* Updating of cipher failed
*/
const UPDATE_FAILED = 24;
/**
* Cipher object is not initialized for encryption
*/
const UPDATE_ENCRYPT_FORBIDDEN = 25;
/**
* Cipher object is not initialized for decryption
*/
const UPDATE_DECRYPT_FORBIDDEN = 26;
/**
* Finalizing of cipher failed
*/
const FINISH_FAILED = 27;
/**
* Cipher object is not initialized for encryption
*/
const FINISH_ENCRYPT_FORBIDDEN = 28;
/**
* Cipher object is not initialized for decryption
*/
const FINISH_DECRYPT_FORBIDDEN = 29;
/**
* Input data length can't exceed max integer length
*/
const INPUT_DATA_LENGTH_HIGH = 30;
}
/**
@ -339,106 +339,106 @@ class Hash {
* @return string
*/
public static function getAlgorithms($aliases = false, $prefix = null) {}
/**
* Finds out whether algorithm exists
* @param string $algorithm
* @return bool
*/
public static function hasAlgorithm($algorithm) {}
/**
* Hash magic method for calling static methods
* @param string $name
* @param array $arguments
*/
public static function __callStatic($name, $arguments) {}
/**
* Hash constructor
* @param string $algorithm
*/
public function __construct($algorithm) {}
/**
* Returns hash algorithm string
* @return string
*/
public function getAlgorithmName() {}
/**
* Updates hash
* @param string $data
* @return null
*/
public function update($data) {}
/**
* Return hash digest in raw foramt
* @return string
*/
public function digest() {}
/**
* Return hash digest in hex format
* @return string
*/
public function hexdigest() {}
/**
* Returns hash block size
* @return int
*/
public function getBlockSize() {}
/**
* Returns hash size
* @return int
*/
public function getSize() {}
}
/**
* Exception class for hash errors
*/
class HashException extends \Exception {
/**
* Hash algorithm '%s' not found
*/
const HASH_ALGORITHM_NOT_FOUND = 1;
/**
* Hash static method '%s' not found
*/
const STATIC_METHOD_NOT_FOUND = 2;
/**
* Hash static method %s can accept max one argument
*/
const STATIC_METHOD_TOO_MANY_ARGS = 3;
/**
* Initialization of hash failed
*/
const INIT_FAILED = 4;
/**
* Updating of hash context failed
*/
const UPDATE_FAILED = 5;
/**
* Creating of hash digest failed
*/
const DIGEST_FAILED = 6;
/**
* Input data length can't exceed max integer length
*/
const INPUT_DATA_LENGTH_HIGH = 7;
}
/**
@ -451,24 +451,24 @@ abstract class MAC extends Hash {
* @param string $key
*/
public function __construct($algorithm, $key) {}
}
/**
* Exception class for MAC errors
*/
class MACException extends HashException {
/**
* MAC algorithm '%s' not found
*/
const MAC_ALGORITHM_NOT_FOUND = 1;
/**
* The key length for MAC is invalid
*/
const KEY_LENGTH_INVALID = 2;
}
/**
@ -493,65 +493,65 @@ abstract class KDF {
* @param string $salt
*/
public function __construct($length, $salt = NULL) {}
/**
* Get key length
* @return int
*/
public function getLength() {}
/**
* Set key length
* @param int $length
* @return bool
*/
public function setLength($length) {}
/**
* Get salt
* @return string
*/
public function getSalt() {}
/**
* Set salt
* @param string $salt
* @return bool
*/
public function setSalt($salt) {}
}
/**
* Exception class for KDF errors
*/
class KDFException {
/**
* The key length is too low
*/
const KEY_LENGTH_LOW = 1;
/**
* The key length is too high
*/
const KEY_LENGTH_HIGH = 2;
/**
* The salt is too long
*/
const SALT_LENGTH_HIGH = 3;
/**
* The password is too long
*/
const PASSWORD_LENGTH_INVALID = 4;
/**
* KDF derivation failed
*/
const DERIVATION_FAILED = 5;
}
/**
@ -566,57 +566,57 @@ class PBKDF2 extends KDF {
* @param int $iterations
*/
public function __construct($hashAlgorithm, $length, $salt = NULL, $iterations = 1000) {}
/**
* Deriver hash for password
* @param string $password
* @return string
*/
public function derive($password) {}
/**
* Get iterations
* @return int
*/
public function getIterations() {}
/**
* Set iterations
* @param int $iterations
* @return bool
*/
public function setIterations($iterations) {}
/**
* Get hash algorithm
* @return string
*/
public function getHashAlgorithm() {}
/**
* Set hash algorithm
* @param string $hashAlgorithm
* @return bool
*/
public function setHashAlgorithm($hashAlgorithm) {}
}
/**
* Exception class for PBKDF2 errors
*/
class PBKDF2Exception extends KDFException {
/**
* Hash algorithm '%s' not found
*/
const HASH_ALGORITHM_NOT_FOUND = 1;
/**
* Iterations count is too high
*/
const ITERATIONS_HIGH = 2;
}
/**
@ -629,80 +629,80 @@ class Base64 {
* @return string
*/
public function encode($data) {}
/**
* Decodes base64 string $data to raw encoding
* @param string $data
* @return string
*/
public function decode($data) {}
/**
* Base64 constructor
*/
public function __construct() {}
/**
* Encodes block of characters from $data and saves the reminder of the last block
* to the encoding context
* @param string $data
*/
public function encodeUpdate($data) {}
/**
* Encodes characters that left in the encoding context
*/
public function encodeFinish() {}
/**
* Decodes block of characters from $data and saves the reminder of the last block
* to the encoding context
* @param string $data
*/
public function decodeUpdate($data) {}
/**
* Decodes characters that left in the encoding context
*/
public function decodeFinish() {}
}
/**
* Exception class for base64 errors
*/
class Base64Exception extends \Exception {
/**
* The object is already used for decoding
*/
const ENCODE_UPDATE_FORBIDDEN = 1;
/**
* The object has not been initialized for encoding
*/
const ENCODE_FINISH_FORBIDDEN = 2;
/**
* The object is already used for encoding
*/
const DECODE_UPDATE_FORBIDDEN = 3;
/**
* The object has not been initialized for decoding
*/
const DECODE_FINISH_FORBIDDEN = 4;
/**
* Base64 decoded string does not contain valid characters
*/
const DECODE_UPDATE_FAILED = 5;
/**
* Input data length can't exceed max integer length
*/
const INPUT_DATA_LENGTH_HIGH = 6;
}
/**
@ -717,7 +717,7 @@ class Rand {
* @return string
*/
public static function generate($num, $must_be_strong = true, &$returned_strong_result = true) {}
/**
* Mixes bytes in $buf into PRNG state
* @param string $buf
@ -725,13 +725,13 @@ class Rand {
* @return null
*/
public static function seed($buf, $entropy) {}
/**
* Cleans up PRNG state
* @return null
*/
public static function cleanup() {}
/**
* Reads a number of bytes from file $filename and adds them to the PRNG. If
* max_bytes is non-negative, up to to max_bytes are read; if $max_bytes is
@ -741,7 +741,7 @@ class Rand {
* @return int
*/
public static function loadFile($filename, $max_bytes = -1) {}
/**
* Writes a number of random bytes (currently 1024) to file $filename which can be
* used to initializethe PRNG by calling Crypto\Rand::loadFile() in a later session
@ -749,33 +749,33 @@ class Rand {
* @return int
*/
public static function writeFile($filename) {}
}
/**
* Exception class for rand errors
*/
class RandException extends \Exception {
/**
* The PRNG state is not yet unpredictable
*/
const GENERATE_PREDICTABLE = 1;
/**
* The bytes written were generated without appropriate seed
*/
const FILE_WRITE_PREDICTABLE = 2;
/**
* The requested number of bytes is too high
*/
const REQUESTED_BYTES_NUMBER_TOO_HIGH = 3;
/**
* The supplied seed length is too high
*/
const SEED_LENGTH_TOO_HIGH = 4;
}
}

View File

@ -28,7 +28,7 @@
* with the same arguments, no new link will be established,
* but instead, the connection identifier of the already
* opened connection will be
* returned. The new_link parameter modifies this
* returned. The new_link parameter modifies this
* behavior and makes cubrid_connect() always open
* a new connection, even if cubrid_connect() was called
* before with the same parameters.
@ -458,18 +458,18 @@ function cubrid_insert_id ($conn_identifier = null) {}
* (PHP 5, CUBRID &gt;= 8.3.0)<br/>
* Return the value of a specific field in a specific row
* @link https://php.net/manual/en/function.cubrid-result.php
* @param resource $result
* @param resource $result
* @param int $row <p>
* The row number from the result that's being retrieved. Row numbers
* The row number from the result that's being retrieved. Row numbers
* start at 0.
* </p>
* @param mixed $field [optional] <p>
* The name or offset of the field being retrieved.
* </p>
* <p>
* It can be the field's offset, the field's name, or the field's table
* It can be the field's offset, the field's name, or the field's table
* dot field name (tablename.fieldname). If the column name has been
* aliased ('select foo as bar from...'), use the alias instead of the
* aliased ('select foo as bar from...'), use the alias instead of the
* column name. If undefined, the first field is retrieved.
* </p>
* @return string <p>
@ -590,7 +590,7 @@ function cubrid_fetch_row ($result, $type = null) {}
* (PHP 5, CUBRID &gt;= 8.3.0)<br/>
* Fetch a result row as an associative array, a numeric array, or both
* @link https://php.net/manual/en/function.cubrid-fetch-array.php
* @param resource $result
* @param resource $result
* @param int $type [optional] <p>
* The type of array that is to be fetched. It's a constant and can
* take the following values: CUBRID_ASSOC, CUBRID_NUM, and CUBRID_BOTH.
@ -702,8 +702,8 @@ function cubrid_fetch_lengths ($result) {}
* result comes from a call to cubrid_execute()
* </p>
* @param int $field_offset [optional] <p>
* The numerical field offset. If the field offset is not specified, the
* next field that was not yet retrieved by this function is retrieved.
* The numerical field offset. If the field offset is not specified, the
* next field that was not yet retrieved by this function is retrieved.
* The field_offset starts at 0.
* </p>
* @return object <p>

View File

@ -74,7 +74,7 @@ class CURLFile {
* @link https://php.net/manual/en/function.curl-init.php
* @param string $url [optional] <p>
* If provided, the CURLOPT_URL option will be set
* to its value. You can manually set this using the
* to its value. You can manually set this using the
* curl_setopt function.
* </p>
* @return resource|false a cURL handle on success, false on errors.
@ -84,7 +84,7 @@ function curl_init ($url = null) {}
/**
* Copy a cURL handle along with all of its preferences
* @link https://php.net/manual/en/function.curl-copy-handle.php
* @param resource $ch
* @param resource $ch
* @return resource a new cURL handle.
*/
function curl_copy_handle ($ch) {}
@ -94,7 +94,7 @@ function curl_copy_handle ($ch) {}
* @link https://php.net/manual/en/function.curl-version.php
* @param int $age [optional] <p>
* </p>
* @return array an associative array with the following elements:
* @return array an associative array with the following elements:
* <tr valign="top">
* <td>Indice</td>
* <td>Value description</td>
@ -141,7 +141,7 @@ function curl_version ($age = null) {}
/**
* Set an option for a cURL transfer
* @link https://php.net/manual/en/function.curl-setopt.php
* @param resource $ch
* @param resource $ch
* @param int $option <p>
* The CURLOPT_XXX option to set.
* </p>
@ -2109,7 +2109,7 @@ function curl_setopt ($ch, $option, $value) {}
/**
* Set multiple options for a cURL transfer
* @link https://php.net/manual/en/function.curl-setopt-array.php
* @param resource $ch
* @param resource $ch
* @param array $options <p>
* An array specifying which options to set and their values.
* The keys should be valid curl_setopt constants or
@ -2252,7 +2252,7 @@ function curl_unescape ($ch, $str) {}
/**
* Perform a cURL session
* @link https://php.net/manual/en/function.curl-exec.php
* @param resource $ch
* @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.
*/
@ -2261,12 +2261,12 @@ function curl_exec ($ch) {}
/**
* Get information regarding a specific transfer
* @link https://php.net/manual/en/function.curl-getinfo.php
* @param resource $ch
* @param resource $ch
* @param int $opt [optional] <p>
* This may be one of the following constants:
* CURLINFO_EFFECTIVE_URL - Last effective URL
* @return mixed If opt is given, returns its value as a string.
* Otherwise, returns an associative array with the following elements
* Otherwise, returns an associative array with the following elements
* (which correspond to opt):
* "url"
* "content_type"
@ -2294,7 +2294,7 @@ function curl_getinfo ($ch, $opt = null) {}
/**
* Return a string containing the last error for the current session
* @link https://php.net/manual/en/function.curl-error.php
* @param resource $ch
* @param resource $ch
* @return string the error message or '' (the empty string) if no
* error occurred.
*/
@ -2303,7 +2303,7 @@ function curl_error ($ch) {}
/**
* Return the last error number
* @link https://php.net/manual/en/function.curl-errno.php
* @param resource $ch
* @param resource $ch
* @return int the error number or 0 (zero) if no error
* occurred.
*/
@ -2338,8 +2338,8 @@ function curl_file_create($filename, $mimetype = '', $postname = '') {}
/**
* Close a cURL session
* @link https://php.net/manual/en/function.curl-close.php
* @param resource $ch
* @return void
* @param resource $ch
* @return void
*/
function curl_close ($ch) {}
@ -2353,8 +2353,8 @@ function curl_multi_init () {}
/**
* Add a normal cURL handle to a cURL multi handle
* @link https://php.net/manual/en/function.curl-multi-add-handle.php
* @param resource $mh
* @param resource $ch
* @param resource $mh
* @param resource $ch
* @return int 0 on success, or one of the CURLM_XXX errors
* code.
*/
@ -2363,8 +2363,8 @@ function curl_multi_add_handle ($mh, $ch) {}
/**
* Remove a multi handle from a set of cURL handles
* @link https://php.net/manual/en/function.curl-multi-remove-handle.php
* @param resource $mh
* @param resource $ch
* @param resource $mh
* @param resource $ch
* @return int|false On success, returns one of the CURLM_XXX error codes, false on failure.
*/
function curl_multi_remove_handle ($mh, $ch) {}
@ -2372,11 +2372,11 @@ function curl_multi_remove_handle ($mh, $ch) {}
/**
* Wait for activity on any curl_multi connection
* @link https://php.net/manual/en/function.curl-multi-select.php
* @param resource $mh
* @param resource $mh
* @param float $timeout [optional] <p>
* Time, in seconds, to wait for a response.
* </p>
* @return int On success, returns the number of descriptors contained in,
* @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).
*/
function curl_multi_select ($mh, $timeout = 1.0) {}
@ -2472,15 +2472,15 @@ function curl_reset ($ch) {}
/**
* Run the sub-connections of the current cURL handle
* @link https://php.net/manual/en/function.curl-multi-exec.php
* @param resource $mh
* @param resource $mh
* @param int $still_running <p>
* A reference to a flag to tell whether the operations are still running.
* </p>
* @return int A cURL code defined in the cURL Predefined Constants.
* </p>
* <p>
* This only returns errors regarding the whole multi stack. There might still have
* occurred problems on individual transfers even when this function returns
* 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.
*/
function curl_multi_exec ($mh, &$still_running) {}
@ -2488,7 +2488,7 @@ function curl_multi_exec ($mh, &$still_running) {}
/**
* Return the content of a cURL handle if <constant>CURLOPT_RETURNTRANSFER</constant> is set
* @link https://php.net/manual/en/function.curl-multi-getcontent.php
* @param resource $ch
* @param resource $ch
* @return string Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set.
*/
function curl_multi_getcontent ($ch) {}
@ -2496,7 +2496,7 @@ function curl_multi_getcontent ($ch) {}
/**
* Get information about the current transfers
* @link https://php.net/manual/en/function.curl-multi-info-read.php
* @param resource $mh
* @param resource $mh
* @param int $msgs_in_queue [optional] <p>
* Number of messages that are still in the queue
* </p>
@ -2507,8 +2507,8 @@ function curl_multi_info_read ($mh, &$msgs_in_queue = null) {}
/**
* Close a set of cURL handles
* @link https://php.net/manual/en/function.curl-multi-close.php
* @param resource $mh
* @return void
* @param resource $mh
* @return void
*/
function curl_multi_close ($mh) {}
@ -2532,6 +2532,3 @@ function curl_share_errno($rh) {}
* @return string
*/
function curl_share_strerror($errno){}

View File

@ -288,7 +288,7 @@ define ('CURLOPT_PASSWDFUNCTION', -1);
/**
* <b>TRUE</b> to follow any "<em>Location: </em>" header that the server sends as part of the HTTP header
* (note this is recursive, PHP will follow as many "Location: " headers that it is sent, unless <b>CURLOPT_MAXREDIRS</b> is set).
* This constant is not available when open_basedir
* This constant is not available when open_basedir
* or safe_mode are enabled.
* @link https://www.php.net/manual/en/function.curl-setopt.php
*/

View File

@ -271,7 +271,7 @@ function strtotime ($time, $now = 'time()') {}
* Unrecognized characters in the format string will be printed
* as-is. The Z format will always return
* 0 when using gmdate.
* </p>
* </p>
* <p>
* Since this function only accepts integer timestamps the
* u format character is only useful when using the
@ -282,7 +282,7 @@ function strtotime ($time, $now = 'time()') {}
* that defaults to the current local time if a timestamp is not given.
* In other words, it defaults to the value of time().
* @return string|false a formatted date string. If a non-numeric value is used for
* timestamp, false is returned and an
* timestamp, false is returned and an
* E_WARNING level error is emitted.
*/
function date ($format, $timestamp = 'time()') {}
@ -372,7 +372,7 @@ function date ($format, $timestamp = 'time()') {}
* </tr>
* </table>
* </p>
* @param int $timestamp [optional]
* @param int $timestamp [optional]
* @return int an integer.
* </p>
* <p>
@ -389,9 +389,9 @@ function idate ($format, $timestamp = null) {}
* The format of the outputted date string. See the formatting
* options for the date function.
* </p>
* @param int $timestamp [optional]
* @return string|false a formatted date string. If a non-numeric value is used for
* timestamp, false is returned and an
* @param int $timestamp [optional]
* @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.
*/
function gmdate ($format, $timestamp = null) {}
@ -418,21 +418,21 @@ function gmdate ($format, $timestamp = null) {}
* The number of the year, may be a two or four digit value,
* with values between 0-69 mapping to 2000-2069 and 70-100 to
* 1970-2000. On systems where time_t is a 32bit signed integer, as
* most common today, the valid range for year
* most common today, the valid range for year
* is somewhere between 1901 and 2038. However, before PHP 5.1.0 this
* range was limited from 1970 to 2038 on some systems (e.g. Windows).
* </p>
* @param int $is_dst [optional] <p>
* Deprecated since 5.3.0 - use Use the new timezone handling functions instead.<p>
* This parameter can be set to 1 if the time is during daylight savings time (DST),
* 0 if it is not, or -1 (the default) if it is unknown whether the time is within
* This parameter can be set to 1 if the time is during daylight savings time (DST),
* 0 if it is not, or -1 (the default) if it is unknown whether the time is within
* daylight savings time or not. If it's unknown, PHP tries to figure it out itself.
* This can cause unexpected (but not incorrect) results.
* Some times are invalid if DST is enabled on the system PHP is running on or
* is_dst is set to 1. If DST is enabled in e.g. 2:00, all times
* between 2:00 and 3:00 are invalid and mktime returns an undefined
* (usually negative) value.
* Some systems (e.g. Solaris 8) enable DST at midnight so time 0:30 of the day when DST
* Some times are invalid if DST is enabled on the system PHP is running on or
* is_dst is set to 1. If DST is enabled in e.g. 2:00, all times
* between 2:00 and 3:00 are invalid and mktime returns an undefined
* (usually negative) value.
* Some systems (e.g. Solaris 8) enable DST at midnight so time 0:30 of the day when DST
* is enabled is evaluated as 23:30 of the previous day.
* </p>
* <p>
@ -485,8 +485,8 @@ function gmmktime ($hour = null, $minute = null, $second = null, $month = null,
* The month is between 1 and 12 inclusive.
* </p>
* @param int $day <p>
* The day is within the allowed number of days for the given
* month. Leap years
* The day is within the allowed number of days for the given
* month. Leap years
* are taken into consideration.
* </p>
* @param int $year <p>
@ -762,7 +762,7 @@ function strftime ($format, $timestamp = null) {}
* @param string $format <p>
* See description in strftime.
* </p>
* @param int $timestamp [optional]
* @param int $timestamp [optional]
* @return string a string formatted according to the given format string
* using the given timestamp or the current
* local time if no timestamp is given. Month and weekday names and
@ -781,9 +781,9 @@ function time () {}
/**
* Get the local time
* @link https://php.net/manual/en/function.localtime.php
* @param int $timestamp [optional]
* @param int $timestamp [optional]
* @param bool $is_associative [optional] <p>
* If set to false or not supplied then the array is returned as a regular,
* If set to false or not supplied then the array is returned as a regular,
* numerically indexed array. If the argument is set to true then
* localtime returns an associative array containing
* all the different elements of the structure returned by the C
@ -792,16 +792,16 @@ function time () {}
* </p>
* <p>
* "tm_sec" - seconds
* @return array
* @return array
*/
function localtime ($timestamp = null, $is_associative = null) {}
/**
* Get date/time information
* @link https://php.net/manual/en/function.getdate.php
* @param int $timestamp [optional]
* @param int $timestamp [optional]
* @return array an associative array of information related to
* the timestamp. Elements from the returned
* the timestamp. Elements from the returned
* associative array are as follows:
* </p>
* <p>
@ -1318,7 +1318,7 @@ function date_default_timezone_get () {}
* @param float $zenith [optional] <p>
* Default: date.sunrise_zenith
* </p>
* @param float $gmt_offset [optional]
* @param float $gmt_offset [optional]
* @return mixed the sunrise time in a specified format on
* success or false on failure.
*/
@ -1367,7 +1367,7 @@ function date_sunrise ($timestamp, $format = null, $latitude = null, $longitude
* @param float $zenith [optional] <p>
* Default: date.sunset_zenith
* </p>
* @param float $gmt_offset [optional]
* @param float $gmt_offset [optional]
* @return mixed the sunset time in a specified format on
* success or false on failure.
*/

View File

@ -17,7 +17,7 @@ interface DateTimeInterface {
const RFC7231 = 'D, d M Y H:i:s \G\M\T';
const RSS = 'D, d M Y H:i:s O';
const W3C = 'Y-m-d\TH:i:sP';
/* Methods */
/**
* (PHP 5 &gt;=5.5.0)<br/>
@ -678,7 +678,7 @@ class DateInterval {
*/
class DatePeriod implements Traversable {
const EXCLUDE_START_DATE = 1;
/**
* Start date
* @var DateTimeInterface
@ -690,31 +690,31 @@ class DatePeriod implements Traversable {
* @var DateTimeInterface|null
*/
public $current;
/**
* End date.
* @var DateTimeInterface|null
*/
public $end;
/**
* The interval
* @var DateInterval
*/
public $interval;
/**
* Number of recurrences.
* @var int
*/
public $recurrences;
/**
* Start of period.
* @var bool
*/
public $include_start_date;
/**
* @param DateTimeInterface $start
* @param DateInterval $interval

View File

@ -384,7 +384,7 @@ namespace Decimal {
/**
* This method is equivalent to the <=> operator.
*
*
* Returns 0 if this decimal is considered equal to $other,
* -1 if this decimal should be placed before $other,
* 1 if this decimal should be placed after $other.

View File

@ -398,7 +398,7 @@ class DOMImplementationSource {
/**
* The DOMImplementation interface provides a number
* of methods for performing operations that are independent of any
* of methods for performing operations that are independent of any
* particular instance of the document object model.
* @link https://php.net/manual/en/class.domimplementation.php
*/
@ -424,7 +424,7 @@ class DOMImplementation {
* The feature to test.
* </p>
* @param string $version <p>
* The version number of the feature to test. In
* The version number of the feature to test. In
* level 2, this can be either 2.0 or
* 1.0.
* </p>
@ -933,7 +933,7 @@ class DOMDocument extends DOMNode {
* The HTML string.
* </p>
* @param string $options [optional] <p>
* Since PHP 5.4.0 and Libxml 2.6.0, you may also
* Since PHP 5.4.0 and Libxml 2.6.0, you may also
* use the options parameter to specify additional Libxml parameters.
* </p>
* @return bool true on success or false on failure. If called statically, returns a
@ -949,7 +949,7 @@ class DOMDocument extends DOMNode {
* The path to the HTML file.
* </p>
* @param string $options [optional] <p>
* Since PHP 5.4.0 and Libxml 2.6.0, you may also
* Since PHP 5.4.0 and Libxml 2.6.0, you may also
* use the options parameter to specify additional Libxml parameters.
* </p>
* @return bool true on success or false on failure. If called statically, returns a

View File

@ -254,4 +254,4 @@ class ffmpeg_animated_gif
*/
public function addFrame(ffmpeg_frame $frame_to_add)
{ }
}
}

View File

@ -144,10 +144,10 @@ function finfo_file ($finfo, $file_name, $options = null, $context = null) {}
* </p>
* @param resource $context [optional] <p>
* </p>
* @param string $string
* @param string $string
* @param int $options [optional] One or disjunction of more
* <a href="https://php.net/manual/en/fileinfo.constants.php">Fileinfo</a> constants.
* @param resource $context [optional]
* @param resource $context [optional]
* @return string a textual description of the <i>string</i>
* argument, or <b>FALSE</b> if an error occurred.
*/
@ -159,7 +159,7 @@ function finfo_buffer ($finfo ,$string, $options = FILEINFO_NONE, $context = NUL
* @param string $filename <p>
* Path to the tested file.
* </p>
* @return string the content type in MIME format, like
* @return string the content type in MIME format, like
* text/plain or application/octet-stream.
*/
function mime_content_type ($filename) {}

View File

@ -4,4 +4,4 @@
* @since 7.3
* @return array
*/
function fpm_get_status() : array { }
function fpm_get_status() : array { }

268
gd/gd.php
View File

@ -83,7 +83,7 @@ function gd_info () {}
/**
* Draws an arc
* @link https://php.net/manual/en/function.imagearc.php
* @param resource $image
* @param resource $image
* @param int $cx <p>
* x-coordinate of the center.
* </p>
@ -105,7 +105,7 @@ function gd_info () {}
* clockwise.
* </p>
* @param int $color <p>
* A color identifier created with
* A color identifier created with
* <b>imagecolorallocate</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
@ -115,7 +115,7 @@ function imagearc ($image, $cx, $cy, $width, $height, $start, $end, $color) {}
/**
* Draw an ellipse
* @link https://php.net/manual/en/function.imageellipse.php
* @param resource $image
* @param resource $image
* @param int $cx <p>
* x-coordinate of the center.
* </p>
@ -139,8 +139,8 @@ function imageellipse ($image, $cx, $cy, $width, $height, $color) {}
/**
* Draw a character horizontally
* @link https://php.net/manual/en/function.imagechar.php
* @param resource $image
* @param int $font
* @param resource $image
* @param int $font
* @param int $x <p>
* x-coordinate of the start.
* </p>
@ -151,7 +151,7 @@ function imageellipse ($image, $cx, $cy, $width, $height, $color) {}
* The character to draw.
* </p>
* @param int $color <p>
* A color identifier created with
* A color identifier created with
* <b>imagecolorallocate</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
@ -161,8 +161,8 @@ function imagechar ($image, $font, $x, $y, $c, $color) {}
/**
* Draw a character vertically
* @link https://php.net/manual/en/function.imagecharup.php
* @param resource $image
* @param int $font
* @param resource $image
* @param int $font
* @param int $x <p>
* x-coordinate of the start.
* </p>
@ -173,7 +173,7 @@ function imagechar ($image, $font, $x, $y, $c, $color) {}
* The character to draw.
* </p>
* @param int $color <p>
* A color identifier created with
* A color identifier created with
* <b>imagecolorallocate</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
@ -183,7 +183,7 @@ function imagecharup ($image, $font, $x, $y, $c, $color) {}
/**
* Get the index of the color of a pixel
* @link https://php.net/manual/en/function.imagecolorat.php
* @param resource $image
* @param resource $image
* @param int $x <p>
* x-coordinate of the point.
* </p>
@ -197,7 +197,7 @@ function imagecolorat ($image, $x, $y) {}
/**
* Allocate a color for an image
* @link https://php.net/manual/en/function.imagecolorallocate.php
* @param resource $image
* @param resource $image
* @param int $red <p>Value of red component.</p>
* @param int $green <p>Value of green component.</p>
* @param int $blue <p>Value of blue component.</p>
@ -233,7 +233,7 @@ function imagecreatefromstring ($image) {}
/**
* Get the index of the closest color to the specified color
* @link https://php.net/manual/en/function.imagecolorclosest.php
* @param resource $image
* @param resource $image
* @param int $red <p>Value of red component.</p>
* @param int $green <p>Value of green component.</p>
* @param int $blue <p>Value of blue component.</p>
@ -245,11 +245,11 @@ function imagecolorclosest ($image, $red, $green, $blue) {}
/**
* Get the index of the color which has the hue, white and blackness
* @link https://php.net/manual/en/function.imagecolorclosesthwb.php
* @param resource $image
* @param resource $image
* @param int $red <p>Value of red component.</p>
* @param int $green <p>Value of green component.</p>
* @param int $blue <p>Value of blue component.</p>
* @return int|false an integer with the index of the color which has
* @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
*/
function imagecolorclosesthwb ($image, $red, $green, $blue) {}
@ -257,7 +257,7 @@ function imagecolorclosesthwb ($image, $red, $green, $blue) {}
/**
* De-allocate a color for an image
* @link https://php.net/manual/en/function.imagecolordeallocate.php
* @param resource $image
* @param resource $image
* @param int $color <p>
* The color identifier.
* </p>
@ -268,7 +268,7 @@ function imagecolordeallocate ($image, $color) {}
/**
* Get the index of the specified color or its closest possible alternative
* @link https://php.net/manual/en/function.imagecolorresolve.php
* @param resource $image
* @param resource $image
* @param int $red <p>Value of red component.</p>
* @param int $green <p>Value of green component.</p>
* @param int $blue <p>Value of blue component.</p>
@ -279,7 +279,7 @@ function imagecolorresolve ($image, $red, $green, $blue) {}
/**
* Get the index of the specified color
* @link https://php.net/manual/en/function.imagecolorexact.php
* @param resource $image
* @param resource $image
* @param int $red <p>Value of red component.</p>
* @param int $green <p>Value of green component.</p>
* @param int $blue <p>Value of blue component.</p>
@ -291,7 +291,7 @@ function imagecolorexact ($image, $red, $green, $blue) {}
/**
* Set the color for the specified palette index
* @link https://php.net/manual/en/function.imagecolorset.php
* @param resource $image
* @param resource $image
* @param int $index <p>
* An index in the palette.
* </p>
@ -308,9 +308,9 @@ function imagecolorset ($image, $index, $red, $green, $blue, $alpha = 0) {}
/**
* Define a color as transparent
* @link https://php.net/manual/en/function.imagecolortransparent.php
* @param resource $image
* @param resource $image
* @param int $color [optional] <p>
* A color identifier created with
* A color identifier created with
* <b>imagecolorallocate</b>.
* </p>
* @return int|false The identifier of the new (or current, if none is specified)
@ -335,7 +335,7 @@ function imagecolorstotal ($image) {}
/**
* Get the colors for an index
* @link https://php.net/manual/en/function.imagecolorsforindex.php
* @param resource $image
* @param resource $image
* @param int $index <p>
* The color index.
* </p>
@ -441,10 +441,10 @@ function imagecopymerge ($dst_im, $src_im, $dst_x, $dst_y, $src_x, $src_y, $src_
* Source height.
* </p>
* @param int $pct <p>
* The src_im will be changed to grayscale according
* to pct where 0 is fully grayscale and 100 is
* unchanged. When pct = 100 this function behaves
* identically to imagecopy for pallete images, while
* The src_im will be changed to grayscale according
* to pct where 0 is fully grayscale and 100 is
* unchanged. When pct = 100 this function behaves
* identically to imagecopy for pallete images, while
* it implements alpha transparency for true colour images.
* </p>
* @return bool true on success or false on failure.
@ -454,8 +454,8 @@ function imagecopymergegray ($dst_im, $src_im, $dst_x, $dst_y, $src_x, $src_y, $
/**
* Copy and resize part of an image
* @link https://php.net/manual/en/function.imagecopyresized.php
* @param resource $dst_image
* @param resource $src_image
* @param resource $dst_image
* @param resource $src_image
* @param int $dst_x <p>
* x-coordinate of destination point.
* </p>
@ -513,7 +513,7 @@ function imagecreatetruecolor ($width, $height) {}
/**
* Finds whether an image is a truecolor image
* @link https://php.net/manual/en/function.imageistruecolor.php
* @param resource $image
* @param resource $image
* @return bool true if the image is truecolor, false
* otherwise.
*/
@ -522,7 +522,7 @@ function imageistruecolor ($image) {}
/**
* Convert a true color image to a palette image
* @link https://php.net/manual/en/function.imagetruecolortopalette.php
* @param resource $image
* @param resource $image
* @param bool $dither <p>
* Indicates if the image should be dithered - if it is true then
* dithering will be used which will result in a more speckled image but
@ -538,7 +538,7 @@ function imagetruecolortopalette ($image, $dither, $ncolors) {}
/**
* Set the thickness for line drawing
* @link https://php.net/manual/en/function.imagesetthickness.php
* @param resource $image
* @param resource $image
* @param int $thickness <p>
* Thickness, in pixels.
* </p>
@ -549,7 +549,7 @@ function imagesetthickness ($image, $thickness) {}
/**
* Draw a partial arc and fill it
* @link https://php.net/manual/en/function.imagefilledarc.php
* @param resource $image
* @param resource $image
* @param int $cx <p>
* x-coordinate of the center.
* </p>
@ -571,7 +571,7 @@ function imagesetthickness ($image, $thickness) {}
* clockwise.
* </p>
* @param int $color <p>
* A color identifier created with
* A color identifier created with
* imagecolorallocate.
* </p>
* @param int $style <p>
@ -584,7 +584,7 @@ function imagefilledarc ($image, $cx, $cy, $width, $height, $start, $end, $color
/**
* Draw a filled ellipse
* @link https://php.net/manual/en/function.imagefilledellipse.php
* @param resource $image
* @param resource $image
* @param int $cx <p>
* x-coordinate of the center.
* </p>
@ -598,7 +598,7 @@ function imagefilledarc ($image, $cx, $cy, $width, $height, $start, $end, $color
* The ellipse height.
* </p>
* @param int $color <p>
* The fill color. A color identifier created with
* The fill color. A color identifier created with
* imagecolorallocate.
* </p>
* @return bool true on success or false on failure.
@ -608,9 +608,9 @@ function imagefilledellipse ($image, $cx, $cy, $width, $height, $color) {}
/**
* Set the blending mode for an image
* @link https://php.net/manual/en/function.imagealphablending.php
* @param resource $image
* @param resource $image
* @param bool $blendmode <p>
* Whether to enable the blending mode or not. On true color images
* Whether to enable the blending mode or not. On true color images
* the default value is true otherwise the default value is false
* </p>
* @return bool true on success or false on failure.
@ -620,9 +620,9 @@ function imagealphablending ($image, $blendmode) {}
/**
* Set the flag to save full alpha channel information (as opposed to single-color transparency) when saving PNG images
* @link https://php.net/manual/en/function.imagesavealpha.php
* @param resource $image
* @param resource $image
* @param bool $saveflag <p>
* Whether to save the alpha channel or not. Default to false.
* Whether to save the alpha channel or not. Default to false.
* </p>
* @return bool true on success or false on failure.
*/
@ -631,7 +631,7 @@ function imagesavealpha ($image, $saveflag) {}
/**
* Allocate a color for an image
* @link https://php.net/manual/en/function.imagecolorallocatealpha.php
* @param resource $image
* @param resource $image
* @param int $red <p>
* Value of red component.
* </p>
@ -643,7 +643,7 @@ function imagesavealpha ($image, $saveflag) {}
* </p>
* @param int $alpha <p>
* A value between 0 and 127.
* 0 indicates completely opaque while
* 0 indicates completely opaque while
* 127 indicates completely transparent.
* </p>
* @return int|false A color identifier or false if the allocation failed.
@ -653,7 +653,7 @@ function imagecolorallocatealpha ($image, $red, $green, $blue, $alpha) {}
/**
* Get the index of the specified color + alpha or its closest possible alternative
* @link https://php.net/manual/en/function.imagecolorresolvealpha.php
* @param resource $image
* @param resource $image
* @param int $red <p>
* Value of red component.
* </p>
@ -665,7 +665,7 @@ function imagecolorallocatealpha ($image, $red, $green, $blue, $alpha) {}
* </p>
* @param int $alpha <p>
* A value between 0 and 127.
* 0 indicates completely opaque while
* 0 indicates completely opaque while
* 127 indicates completely transparent.
* </p>
* @return int|false a color index or <b>FALSE</b> on failure
@ -675,7 +675,7 @@ function imagecolorresolvealpha ($image, $red, $green, $blue, $alpha) {}
/**
* Get the index of the closest color to the specified color + alpha
* @link https://php.net/manual/en/function.imagecolorclosestalpha.php
* @param resource $image
* @param resource $image
* @param int $red <p>
* Value of red component.
* </p>
@ -687,7 +687,7 @@ function imagecolorresolvealpha ($image, $red, $green, $blue, $alpha) {}
* </p>
* @param int $alpha <p>
* A value between 0 and 127.
* 0 indicates completely opaque while
* 0 indicates completely opaque while
* 127 indicates completely transparent.
* </p>
* @return int|false the index of the closest color in the palette or
@ -698,7 +698,7 @@ function imagecolorclosestalpha ($image, $red, $green, $blue, $alpha) {}
/**
* Get the index of the specified color + alpha
* @link https://php.net/manual/en/function.imagecolorexactalpha.php
* @param resource $image
* @param resource $image
* @param int $red <p>
* Value of red component.
* </p>
@ -710,7 +710,7 @@ function imagecolorclosestalpha ($image, $red, $green, $blue, $alpha) {}
* </p>
* @param int $alpha <p>
* A value between 0 and 127.
* 0 indicates completely opaque while
* 0 indicates completely opaque while
* 127 indicates completely transparent.
* </p>
* @return int|false the index of the specified color+alpha in the palette of the
@ -722,8 +722,8 @@ function imagecolorexactalpha ($image, $red, $green, $blue, $alpha) {}
/**
* Copy and resize part of an image with resampling
* @link https://php.net/manual/en/function.imagecopyresampled.php
* @param resource $dst_image
* @param resource $src_image
* @param resource $dst_image
* @param resource $src_image
* @param int $dst_x <p>
* x-coordinate of destination point.
* </p>
@ -755,7 +755,7 @@ function imagecopyresampled ($dst_image, $src_image, $dst_x, $dst_y, $src_x, $sr
/**
* Rotate an image with a given angle
* @link https://php.net/manual/en/function.imagerotate.php
* @param resource $image
* @param resource $image
* @param float $angle <p>
* Rotation angle, in degrees.
* </p>
@ -773,7 +773,7 @@ function imagerotate ($image, $angle, $bgd_color, $ignore_transparent = null) {}
* Should antialias functions be used or not. <br/>
* Before 7.2.0 it's only available if PHP iscompiled with the bundled version of the GD library.
* @link https://php.net/manual/en/function.imageantialias.php
* @param resource $image
* @param resource $image
* @param bool $enabled <p>
* Whether to enable antialiasing or not.
* </p>
@ -784,7 +784,7 @@ function imageantialias ($image, $enabled) {}
/**
* Set the tile image for filling
* @link https://php.net/manual/en/function.imagesettile.php
* @param resource $image
* @param resource $image
* @param resource $tile <p>
* The image resource to be used as a tile.
* </p>
@ -795,7 +795,7 @@ function imagesettile ($image, $tile) {}
/**
* Set the brush image for line drawing
* @link https://php.net/manual/en/function.imagesetbrush.php
* @param resource $image
* @param resource $image
* @param resource $brush <p>
* An image resource.
* </p>
@ -806,10 +806,10 @@ function imagesetbrush ($image, $brush) {}
/**
* Set the style for line drawing
* @link https://php.net/manual/en/function.imagesetstyle.php
* @param resource $image
* @param resource $image
* @param array $style <p>
* An array of pixel colors. You can use the
* IMG_COLOR_TRANSPARENT constant to add a
* An array of pixel colors. You can use the
* IMG_COLOR_TRANSPARENT constant to add a
* transparent pixel.
* </p>
* @return bool true on success or false on failure.
@ -932,7 +932,7 @@ function imagecreatefromgd2part ($filename, $srcX, $srcY, $width, $height) {}
/**
* Output a PNG image to either the browser or a file
* @link https://php.net/manual/en/function.imagepng.php
* @param resource $image
* @param resource $image
* @param string $filename [optional] <p>
* The path to save the file to. If not set or &null;, the raw image stream
* will be outputted directly.
@ -946,8 +946,8 @@ function imagecreatefromgd2part ($filename, $srcX, $srcY, $width, $height) {}
* </p>
* @param int $filters [optional] <p>
* Allows reducing the PNG file size. It is a bitmask field which may be
* set to any combination of the PNG_FILTER_XXX
* constants. PNG_NO_FILTER or
* set to any combination of the PNG_FILTER_XXX
* constants. PNG_NO_FILTER or
* PNG_ALL_FILTERS may also be used to respectively
* disable or activate all filters.
* </p>
@ -958,7 +958,7 @@ function imagepng ($image, $filename = null, $quality = null, $filters = null) {
/**
* Output a WebP image to browser or file
* @link https://php.net/manual/en/function.imagewebp.php
* @param resource $image
* @param resource $image
* @param string $to [optional] <p>
* The path to save the file to. If not set or &null;, the raw image stream
* will be outputted directly.
@ -974,7 +974,7 @@ function imagewebp ($image, $to = null, $quality = 80) {}
/**
* Output image to browser or file
* @link https://php.net/manual/en/function.imagegif.php
* @param resource $image
* @param resource $image
* @param string $filename [optional] <p>
* The path to save the file to. If not set or &null;, the raw image stream
* will be outputted directly.
@ -986,18 +986,18 @@ function imagegif ($image, $filename = null) {}
/**
* Output image to browser or file
* @link https://php.net/manual/en/function.imagejpeg.php
* @param resource $image
* @param resource $image
* @param string $filename [optional] <p>
* The path to save the file to. If not set or &null;, the raw image stream
* will be outputted directly.
* </p>
* <p>
* To skip this argument in order to provide the
* To skip this argument in order to provide the
* quality parameter, use &null;.
* </p>
* @param int $quality [optional] <p>
* quality is optional, and ranges from 0 (worst
* quality, smaller file) to 100 (best quality, biggest file). The
* quality, smaller file) to 100 (best quality, biggest file). The
* default is the default IJG quality value (about 75).
* </p>
* @return bool true on success or false on failure.
@ -1007,7 +1007,7 @@ function imagejpeg ($image, $filename = null, $quality = null) {}
/**
* Output image to browser or file
* @link https://php.net/manual/en/function.imagewbmp.php
* @param resource $image
* @param resource $image
* @param string $filename [optional] <p>
* The path to save the file to. If not set or &null;, the raw image stream
* will be outputted directly.
@ -1025,7 +1025,7 @@ function imagewbmp ($image, $filename = null, $foreground = null) {}
* Output GD image to browser or file. <br/>
* Since 7.2.0 allows to output truecolor images.
* @link https://php.net/manual/en/function.imagegd.php
* @param resource $image
* @param resource $image
* @param string $filename [optional] <p>
* The path to save the file to. If not set or &null;, the raw image stream
* will be outputted directly.
@ -1037,7 +1037,7 @@ function imagegd ($image, $filename = null) {}
/**
* Output GD2 image to browser or file
* @link https://php.net/manual/en/function.imagegd2.php
* @param resource $image
* @param resource $image
* @param string $filename [optional] <p>
* The path to save the file to. If not set or &null;, the raw image stream
* will be outputted directly.
@ -1046,8 +1046,8 @@ function imagegd ($image, $filename = null) {}
* Chunk size.
* </p>
* @param int $type [optional] <p>
* Either IMG_GD2_RAW or
* IMG_GD2_COMPRESSED. Default is
* Either IMG_GD2_RAW or
* IMG_GD2_COMPRESSED. Default is
* IMG_GD2_RAW.
* </p>
* @return bool true on success or false on failure.
@ -1057,7 +1057,7 @@ function imagegd2 ($image, $filename = null, $chunk_size = null, $type = null) {
/**
* Destroy an image
* @link https://php.net/manual/en/function.imagedestroy.php
* @param resource $image
* @param resource $image
* @return bool true on success or false on failure.
*/
function imagedestroy ($image) {}
@ -1065,7 +1065,7 @@ function imagedestroy ($image) {}
/**
* Apply a gamma correction to a GD image
* @link https://php.net/manual/en/function.imagegammacorrect.php
* @param resource $image
* @param resource $image
* @param float $inputgamma <p>
* The input gamma.
* </p>
@ -1079,7 +1079,7 @@ function imagegammacorrect ($image, $inputgamma, $outputgamma) {}
/**
* Flood fill
* @link https://php.net/manual/en/function.imagefill.php
* @param resource $image
* @param resource $image
* @param int $x <p>
* x-coordinate of start point.
* </p>
@ -1087,7 +1087,7 @@ function imagegammacorrect ($image, $inputgamma, $outputgamma) {}
* y-coordinate of start point.
* </p>
* @param int $color <p>
* The fill color. A color identifier created with
* The fill color. A color identifier created with
* imagecolorallocate.
* </p>
* @return bool true on success or false on failure.
@ -1097,7 +1097,7 @@ function imagefill ($image, $x, $y, $color) {}
/**
* Draw a filled polygon
* @link https://php.net/manual/en/function.imagefilledpolygon.php
* @param resource $image
* @param resource $image
* @param array $points <p>
* An array containing the x and y
* coordinates of the polygons vertices consecutively.
@ -1106,7 +1106,7 @@ function imagefill ($image, $x, $y, $color) {}
* Total number of vertices, which must be at least 3.
* </p>
* @param int $color <p>
* A color identifier created with
* A color identifier created with
* imagecolorallocate.
* </p>
* @return bool true on success or false on failure.
@ -1116,7 +1116,7 @@ function imagefilledpolygon ($image, array $points, $num_points, $color) {}
/**
* Draw a filled rectangle
* @link https://php.net/manual/en/function.imagefilledrectangle.php
* @param resource $image
* @param resource $image
* @param int $x1 <p>
* x-coordinate for point 1.
* </p>
@ -1130,7 +1130,7 @@ function imagefilledpolygon ($image, array $points, $num_points, $color) {}
* y-coordinate for point 2.
* </p>
* @param int $color <p>
* The fill color. A color identifier created with
* The fill color. A color identifier created with
* imagecolorallocate.
* </p>
* @return bool true on success or false on failure.
@ -1140,7 +1140,7 @@ function imagefilledrectangle ($image, $x1, $y1, $x2, $y2, $color) {}
/**
* Flood fill to specific color
* @link https://php.net/manual/en/function.imagefilltoborder.php
* @param resource $image
* @param resource $image
* @param int $x <p>
* x-coordinate of start.
* </p>
@ -1148,11 +1148,11 @@ function imagefilledrectangle ($image, $x1, $y1, $x2, $y2, $color) {}
* y-coordinate of start.
* </p>
* @param int $border <p>
* The border color. A color identifier created with
* The border color. A color identifier created with
* imagecolorallocate.
* </p>
* @param int $color <p>
* The fill color. A color identifier created with
* The fill color. A color identifier created with
* imagecolorallocate.
* </p>
* @return bool true on success or false on failure.
@ -1162,7 +1162,7 @@ function imagefilltoborder ($image, $x, $y, $border, $color) {}
/**
* Get font width
* @link https://php.net/manual/en/function.imagefontwidth.php
* @param int $font
* @param int $font
* @return int the width of the pixel
*/
function imagefontwidth ($font) {}
@ -1170,7 +1170,7 @@ function imagefontwidth ($font) {}
/**
* Get font height
* @link https://php.net/manual/en/function.imagefontheight.php
* @param int $font
* @param int $font
* @return int the height of the pixel.
*/
function imagefontheight ($font) {}
@ -1178,7 +1178,7 @@ function imagefontheight ($font) {}
/**
* Enable or disable interlace
* @link https://php.net/manual/en/function.imageinterlace.php
* @param resource $image
* @param resource $image
* @param int $interlace [optional] <p>
* If non-zero, the image will be interlaced, else the interlace bit is
* turned off.
@ -1191,7 +1191,7 @@ function imageinterlace ($image, $interlace = null) {}
/**
* Draw a line
* @link https://php.net/manual/en/function.imageline.php
* @param resource $image
* @param resource $image
* @param int $x1 <p>
* x-coordinate for first point.
* </p>
@ -1205,7 +1205,7 @@ function imageinterlace ($image, $interlace = null) {}
* y-coordinate for second point.
* </p>
* @param int $color <p>
* The line color. A color identifier created with
* The line color. A color identifier created with
* imagecolorallocate.
* </p>
* @return bool true on success or false on failure.
@ -1268,7 +1268,7 @@ function imageloadfont ($file) {}
/**
* Draws a polygon
* @link https://php.net/manual/en/function.imagepolygon.php
* @param resource $image
* @param resource $image
* @param array $points <p>
* An array containing the polygon's vertices, e.g.:
* <tr valign="top">
@ -1292,7 +1292,7 @@ function imageloadfont ($file) {}
* Total number of points (vertices).
* </p>
* @param int $color <p>
* A color identifier created with
* A color identifier created with
* imagecolorallocate.
* </p>
* @return bool true on success or false on failure.
@ -1302,7 +1302,7 @@ function imagepolygon ($image, array $points, $num_points, $color) {}
/**
* Draw a rectangle
* @link https://php.net/manual/en/function.imagerectangle.php
* @param resource $image
* @param resource $image
* @param int $x1 <p>
* Upper left x coordinate.
* </p>
@ -1317,7 +1317,7 @@ function imagepolygon ($image, array $points, $num_points, $color) {}
* Bottom right y coordinate.
* </p>
* @param int $color <p>
* A color identifier created with
* A color identifier created with
* imagecolorallocate.
* </p>
* @return bool true on success or false on failure.
@ -1327,7 +1327,7 @@ function imagerectangle ($image, $x1, $y1, $x2, $y2, $color) {}
/**
* Set a single pixel
* @link https://php.net/manual/en/function.imagesetpixel.php
* @param resource $image
* @param resource $image
* @param int $x <p>
* x-coordinate.
* </p>
@ -1335,7 +1335,7 @@ function imagerectangle ($image, $x1, $y1, $x2, $y2, $color) {}
* y-coordinate.
* </p>
* @param int $color <p>
* A color identifier created with
* A color identifier created with
* imagecolorallocate.
* </p>
* @return bool true on success or false on failure.
@ -1345,8 +1345,8 @@ function imagesetpixel ($image, $x, $y, $color) {}
/**
* Draw a string horizontally
* @link https://php.net/manual/en/function.imagestring.php
* @param resource $image
* @param int $font
* @param resource $image
* @param int $font
* @param int $x <p>
* x-coordinate of the upper left corner.
* </p>
@ -1357,7 +1357,7 @@ function imagesetpixel ($image, $x, $y, $color) {}
* The string to be written.
* </p>
* @param int $color <p>
* A color identifier created with
* A color identifier created with
* imagecolorallocate.
* </p>
* @return bool true on success or false on failure.
@ -1367,8 +1367,8 @@ function imagestring ($image, $font, $x, $y, $string, $color) {}
/**
* Draw a string vertically
* @link https://php.net/manual/en/function.imagestringup.php
* @param resource $image
* @param int $font
* @param resource $image
* @param int $font
* @param int $x <p>
* x-coordinate of the upper left corner.
* </p>
@ -1379,7 +1379,7 @@ function imagestring ($image, $font, $x, $y, $string, $color) {}
* The string to be written.
* </p>
* @param int $color <p>
* A color identifier created with
* A color identifier created with
* imagecolorallocate.
* </p>
* @return bool true on success or false on failure.
@ -1389,8 +1389,8 @@ function imagestringup ($image, $font, $x, $y, $string, $color) {}
/**
* Get image width
* @link https://php.net/manual/en/function.imagesx.php
* @param resource $image
* @return int|false Return the width of the image or false on
* @param resource $image
* @return int|false Return the width of the image or false on
* errors.
*/
function imagesx ($image) {}
@ -1398,8 +1398,8 @@ function imagesx ($image) {}
/**
* Get image height
* @link https://php.net/manual/en/function.imagesy.php
* @param resource $image
* @return int|false Return the height of the image or false on
* @param resource $image
* @return int|false Return the height of the image or false on
* errors.
*/
function imagesy ($image) {}
@ -1407,7 +1407,7 @@ function imagesy ($image) {}
/**
* Draw a dashed line
* @link https://php.net/manual/en/function.imagedashedline.php
* @param resource $image
* @param resource $image
* @param int $x1 <p>
* Upper left x coordinate.
* </p>
@ -1421,7 +1421,7 @@ function imagesy ($image) {}
* Bottom right y coordinate.
* </p>
* @param int $color <p>
* The fill color. A color identifier created with
* The fill color. A color identifier created with
* imagecolorallocate.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
@ -1490,7 +1490,7 @@ function imagedashedline ($image, $x1, $y1, $x2, $y2, $color) {}
* </p>
* <p>
* The points are relative to the text regardless of the
* angle, so "upper left" means in the top left-hand
* angle, so "upper left" means in the top left-hand
* corner seeing the text horizontally.
*/
function imagettfbbox ($size, $angle, $fontfile, $text) {}
@ -1498,14 +1498,14 @@ function imagettfbbox ($size, $angle, $fontfile, $text) {}
/**
* Write text to the image using TrueType fonts
* @link https://php.net/manual/en/function.imagettftext.php
* @param resource $image
* @param resource $image
* @param float $size <p>
* The font size. Depending on your version of GD, this should be
* specified as the pixel size (GD1) or point size (GD2).
* </p>
* @param float $angle <p>
* The angle in degrees, with 0 degrees being left-to-right reading text.
* Higher values represent a counter-clockwise rotation. For example, a
* Higher values represent a counter-clockwise rotation. For example, a
* value of 90 would result in bottom-to-top reading text.
* </p>
* @param int $x <p>
@ -1550,7 +1550,7 @@ function imagettfbbox ($size, $angle, $fontfile, $text) {}
* <?php
* // Set the enviroment variable for GD
* putenv('GDFONTPATH=' . realpath('.'));
*
*
* // Name the font to be used (note the lack of the .ttf extension)
* $font = 'SomeFont';
* ?>
@ -1569,7 +1569,7 @@ function imagettfbbox ($size, $angle, $fontfile, $text) {}
* Strings in UTF-8 encoding can be passed directly.
* </p>
* <p>
* Named entities, such as &amp;copy;, are not supported. Consider using
* Named entities, such as &amp;copy;, are not supported. Consider using
* html_entity_decode
* to decode these named entities into UTF-8 strings (html_entity_decode()
* supports this as of PHP 5.0.0).
@ -1579,9 +1579,9 @@ function imagettfbbox ($size, $angle, $fontfile, $text) {}
* font, a hollow rectangle will replace the character.
* </p>
* @return array|false an array with 8 elements representing four points making the
* bounding box of the text. The order of the points is lower left, lower
* bounding box of the text. The order of the points is lower left, lower
* right, upper right, upper left. The points are relative to the text
* regardless of the angle, so "upper left" means in the top left-hand
* regardless of the angle, so "upper left" means in the top left-hand
* corner when you see the text horizontally.
* Returns false on error.
*/
@ -1595,7 +1595,7 @@ function imagettftext ($image, $size, $angle, $x, $y, $color, $fontfile, $text)
* specified as the pixel size (GD1) or point size (GD2).
* </p>
* @param float $angle <p>
* Angle in degrees in which text will be
* Angle in degrees in which text will be
* measured.
* </p>
* @param string $fontfile <p>
@ -1660,7 +1660,7 @@ function imagettftext ($image, $size, $angle, $x, $y, $color, $fontfile, $text)
* </p>
* <p>
* The points are relative to the text regardless of the
* angle, so "upper left" means in the top left-hand
* angle, so "upper left" means in the top left-hand
* corner seeing the text horizontally.
* Returns false on error.
*/
@ -1669,13 +1669,13 @@ function imageftbbox ($size, $angle, $fontfile, $text, $extrainfo = null ) {}
/**
* Write text to the image using fonts using FreeType 2
* @link https://php.net/manual/en/function.imagefttext.php
* @param resource $image
* @param resource $image
* @param float $size <p>
* The font size to use in points.
* </p>
* @param float $angle <p>
* @param float $angle <p>
* The angle in degrees, with 0 degrees being left-to-right reading text.
* Higher values represent a counter-clockwise rotation. For example, a
* Higher values represent a counter-clockwise rotation. For example, a
* value of 90 would result in bottom-to-top reading text.
* </p>
* @param int $x <p>
@ -1692,7 +1692,7 @@ function imageftbbox ($size, $angle, $fontfile, $text, $extrainfo = null ) {}
* very bottom of the character.
* </p>
* @param int $color <p>
* The index of the desired color for the text, see
* The index of the desired color for the text, see
* imagecolorexact.
* </p>
* @param string $fontfile <p>
@ -1720,7 +1720,7 @@ function imageftbbox ($size, $angle, $fontfile, $text, $extrainfo = null ) {}
* <?php
* // Set the enviroment variable for GD
* putenv('GDFONTPATH=' . realpath('.'));
*
*
* // Name the font to be used (note the lack of the .ttf extension)
* $font = 'SomeFont';
* ?>
@ -1730,7 +1730,7 @@ function imageftbbox ($size, $angle, $fontfile, $text, $extrainfo = null ) {}
* <code>open_basedir</code> does <em>not</em> apply to fontfile.
* </p>
* @param string $text <p>
* Text to be inserted into image.
* Text to be inserted into image.
* </p>
* @param array $extrainfo [optional] <p>
* <table>
@ -1814,9 +1814,9 @@ function imagepsfreefont ($font_index) {}
* A font resource, returned by imagepsloadfont.
* </p>
* @param string $encodingfile <p>
* The exact format of this file is described in T1libs documentation.
* T1lib comes with two ready-to-use files,
* IsoLatin1.enc and
* The exact format of this file is described in T1libs documentation.
* T1lib comes with two ready-to-use files,
* IsoLatin1.enc and
* IsoLatin2.enc.
* </p>
* @return bool true on success or false on failure.
@ -1855,7 +1855,7 @@ function imagepsslantfont ($font_index, $slant) {}
/**
* Draws a text over an image using PostScript Type1 fonts
* @link https://php.net/manual/en/function.imagepstext.php
* @param resource $image
* @param resource $image
* @param string $text <p>
* The text to be written.
* </p>
@ -1870,7 +1870,7 @@ function imagepsslantfont ($font_index, $slant) {}
* </p>
* @param int $background <p>
* The color to which the text will try to fade in with antialiasing.
* No pixels with the color background are
* No pixels with the color background are
* actually painted, so the background image does not need to be of solid
* color.
* </p>
@ -1883,21 +1883,21 @@ function imagepsslantfont ($font_index, $slant) {}
* @param int $space [optional] <p>
* Allows you to change the default value of a space in a font. This
* amount is added to the normal value and can also be negative.
* Expressed in character space units, where 1 unit is 1/1000th of an
* Expressed in character space units, where 1 unit is 1/1000th of an
* em-square.
* </p>
* @param int $tightness [optional] <p>
* tightness allows you to control the amount
* of white space between characters. This amount is added to the
* normal character width and can also be negative.
* Expressed in character space units, where 1 unit is 1/1000th of an
* Expressed in character space units, where 1 unit is 1/1000th of an
* em-square.
* </p>
* @param float $angle [optional] <p>
* angle is in degrees.
* </p>
* @param int $antialias_steps [optional] <p>
* Allows you to control the number of colours used for antialiasing
* Allows you to control the number of colours used for antialiasing
* text. Allowed values are 4 and 16. The higher value is recommended
* for text sizes lower than 20, where the effect in text quality is
* quite visible. With bigger sizes, use 4. It's less computationally
@ -1931,7 +1931,7 @@ function imagepstext ($image, $text, $font_index, $size, $foreground, $backgroun
* @param string $text <p>
* The text to be written.
* </p>
* @param resource $font
* @param resource $font
* @param int $size <p>
* size is expressed in pixels.
* </p>
@ -1961,7 +1961,7 @@ function imagepsbbox ($text, $font, $size) {}
* Return the image types supported by this PHP build
* @link https://php.net/manual/en/function.imagetypes.php
* @return int a bit-field corresponding to the image formats supported by the
* version of GD linked into PHP. The following bits are returned,
* 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
*/
function imagetypes () {}
@ -2015,7 +2015,7 @@ function png2wbmp ($pngname, $wbmpname, $dest_height, $dest_width, $threshold) {
/**
* Output image to browser or file
* @link https://php.net/manual/en/function.image2wbmp.php
* @param resource $image
* @param resource $image
* @param string $filename [optional] <p>
* Path to the saved file. If not given, the raw image stream will be
* outputted directly.
@ -2031,7 +2031,7 @@ function image2wbmp ($image, $filename = null, $threshold = null) {}
/**
* Set the alpha blending flag to use the bundled libgd layering effects
* @link https://php.net/manual/en/function.imagelayereffect.php
* @param resource $image
* @param resource $image
* @param int $effect <p>
* One of the following constants:
* IMG_EFFECT_REPLACE
@ -2058,7 +2058,7 @@ function imagecolormatch ($image1, $image2) {}
/**
* Output XBM image to browser or file
* @link https://php.net/manual/en/function.imagexbm.php
* @param resource $image
* @param resource $image
* @param string $filename <p>
* The path to save the file to. If not set or &null;, the raw image stream
* will be outputted directly.
@ -2075,7 +2075,7 @@ function imagexbm ($image, $filename, $foreground = null) {}
/**
* Applies a filter to an image
* @link https://php.net/manual/en/function.imagefilter.php
* @param resource $image
* @param resource $image
* @param int $filtertype <p>
* filtertype can be one of the following:
* IMG_FILTER_NEGATE: Reverses all colors of
@ -2087,8 +2087,8 @@ function imagexbm ($image, $filename, $foreground = null) {}
* @param int $arg3 [optional] <p>
* IMG_FILTER_COLORIZE: Value of blue component.
* @param int $arg4 [optional] <p>
* IMG_FILTER_COLORIZE: Alpha channel, A value
* between 0 and 127. 0 indicates completely opaque while 127 indicates
* IMG_FILTER_COLORIZE: Alpha channel, A value
* between 0 and 127. 0 indicates completely opaque while 127 indicates
* completely transparent.
* @return bool true on success or false on failure.
*/
@ -2097,7 +2097,7 @@ function imagefilter ($image, $filtertype, $arg1 = null, $arg2 = null, $arg3 = n
/**
* Apply a 3x3 convolution matrix, using coefficient and offset
* @link https://php.net/manual/en/function.imageconvolution.php
* @param resource $image
* @param resource $image
* @param array $matrix <p>
* A 3x3 matrix: an array of three arrays of three floats.
* </p>

View File

@ -255,4 +255,4 @@ function geoip_netspeedcell_by_name ($hostname) {}
*/
function geoip_setup_custom_directory ($path) {}
// End of geoip v.1.1.0
// End of geoip v.1.1.0

View File

@ -293,5 +293,3 @@ class gnupg {
}
}

View File

@ -105,7 +105,7 @@ class HttpDeflateStream {
* @param string $class_name [optional] <p>
* name of a subclass of HttpDeflateStream
* </p>
* @return HttpDeflateStream
* @return HttpDeflateStream
*/
public static function factory ($flags = null, $class_name = null) {}
@ -173,7 +173,7 @@ class HttpInflateStream {
* @param string $class_name [optional] <p>
* name of a subclass of HttpInflateStream
* </p>
* @return HttpInflateStream
* @return HttpInflateStream
*/
public static function factory ($flags = null, $class_name = null) {}
@ -223,7 +223,7 @@ class HttpMessage implements Countable, Serializable, Iterator {
* @param string $body <p>
* the new body of the message
* </p>
* @return void
* @return void
*/
public function setBody ($body) {}
@ -253,7 +253,7 @@ class HttpMessage implements Countable, Serializable, Iterator {
* @param array $headers <p>
* associative array containing the new HTTP headers, which will replace all previous HTTP headers of the message
* </p>
* @return void
* @return void
*/
public function setHeaders (sarray $header) {}
@ -288,7 +288,7 @@ class HttpMessage implements Countable, Serializable, Iterator {
* @param int $type <p>
* the HttpMessage::TYPE
* </p>
* @return void
* @return void
*/
public function setType ($type) {}
@ -323,7 +323,7 @@ class HttpMessage implements Countable, Serializable, Iterator {
* (PECL pecl_http &gt;= 0.23.0)<br/>
* Get response status
* @link https://php.net/manual/en/function.httpmessage-getresponsestatus.php
* @return string the HTTP response status string if the message is of type
* @return string the HTTP response status string if the message is of type
* HttpMessage::TYPE_RESPONSE, else FALSE.
*/
public function getResponseStatus () {}
@ -534,7 +534,7 @@ class HttpMessage implements Countable, Serializable, Iterator {
* @param bool $top [optional] <p>
* whether to prepend to the top most or right this message
* </p>
* @return void
* @return void
*/
public function prepend (HttpMessage $message, $top = null) {}
@ -882,7 +882,7 @@ class HttpRequest {
* Set options
* @link https://php.net/manual/en/function.httprequest-setoptions.php
* @param array $options [optional] <p>
* an associative array, which values will overwrite the
* an associative array, which values will overwrite the
* currently set request options;
* if empty or omitted, the options of the HttpRequest object will be reset
* </p>
@ -1075,7 +1075,7 @@ class HttpRequest {
* Set query data
* @link https://php.net/manual/en/function.httprequest-setquerydata.php
* @param mixed $query_data <p>
* a string or associative array parameter containing the pre-encoded
* a string or associative array parameter containing the pre-encoded
* query string or to be encoded query fields;
* if empty, the query data will be unset
* </p>
@ -1200,7 +1200,7 @@ class HttpRequest {
* @param string $content_type [optional] <p>
* the content type of the file
* </p>
* @return bool TRUE on success, or FALSE if the content type seems not to contain a
* @return bool TRUE on success, or FALSE if the content type seems not to contain a
* primary and a secondary content type part.
*/
public function addPostFile ($name, $file, $content_type = null) {}
@ -1288,7 +1288,7 @@ class HttpRequest {
* @param string $name [optional] <p>
* header to read; if empty, all response headers will be returned
* </p>
* @return mixed either a string with the value of the header matching name if requested,
* @return mixed either a string with the value of the header matching name if requested,
* FALSE on failure, or an associative array containing all response headers.
*/
public function getResponseHeader ($name = null) {}
@ -1389,7 +1389,7 @@ class HttpRequest {
* (PECL pecl_http &gt;= 0.15.0)<br/>
* Clear history
* @link https://php.net/manual/en/function.httprequest-clearhistory.php
* @return void
* @return void
*/
public function clearHistory () {}
@ -1539,7 +1539,7 @@ class HttpRequestPool implements Countable, Iterator {
* (PECL pecl_http &gt;= 0.10.0)<br/>
* HttpRequestPool destructor
* @link https://php.net/manual/en/function.httprequestpool-destruct.php
* @return void
* @return void
*/
public function __destruct () {}
@ -1577,7 +1577,7 @@ class HttpRequestPool implements Countable, Iterator {
* (PECL pecl_http &gt;= 0.10.0)<br/>
* Reset request pool
* @link https://php.net/manual/en/function.httprequestpool-reset.php
* @return void
* @return void
*/
public function reset () {}
@ -1964,7 +1964,7 @@ class HttpResponse {
* (PECL pecl_http &gt;= 0.10.0)<br/>
* Capture script output
* @link https://php.net/manual/en/function.httpresponse-capture.php
* @return void
* @return void
*/
public static function capture () {}
@ -1972,11 +1972,11 @@ class HttpResponse {
* (PECL pecl_http &gt;= 0.10.0)<br/>
* Redirect
* @link https://php.net/manual/en/function.httpresponse-redirect.php
* @param string $url [optional]
* @param array $params [optional]
* @param bool $session [optional]
* @param int $status [optional]
* @return void
* @param string $url [optional]
* @param array $params [optional]
* @param bool $session [optional]
* @param int $status [optional]
* @return void
*/
public static function redirect ($url = null, array $params = null , $session = null, $status = null) {}
@ -1984,8 +1984,8 @@ class HttpResponse {
* (PECL pecl_http &gt;= 0.12.0)<br/>
* Send HTTP response status
* @link https://php.net/manual/en/function.httpresponse-status.php
* @param int $status
* @return bool
* @param int $status
* @return bool
*/
public static function status ($status) {}
@ -1993,7 +1993,7 @@ class HttpResponse {
* (PECL pecl_http &gt;= 0.10.0)<br/>
* Get request headers
* @link https://php.net/manual/en/function.httpresponse-getrequestheaders.php
* @return array
* @return array
*/
public static function getRequestHeaders () {}
@ -2001,7 +2001,7 @@ class HttpResponse {
* (PECL pecl_http &gt;= 0.10.0)<br/>
* Get request body
* @link https://php.net/manual/en/function.httpresponse-getrequestbody.php
* @return string
* @return string
*/
public static function getRequestBody () {}
@ -2009,7 +2009,7 @@ class HttpResponse {
* (PECL pecl_http &gt;= 0.10.0)<br/>
* Get request body stream
* @link https://php.net/manual/en/function.httpresponse-getrequestbodystream.php
* @return resource
* @return resource
*/
public static function getRequestBodyStream () {}
@ -2244,7 +2244,7 @@ function http_redirect ($url = null, array $params = null , $session = null, $s
* @param int $bytes [optional] <p>
* the chunk size in bytes
* </p>
* @return void
* @return void
*/
function http_throttle ($sec = null, $bytes = null) {}
@ -2511,8 +2511,8 @@ function http_persistent_handles_count () {}
* (PECL pecl_http &gt;= 1.5.0)<br/>
* Clean up persistent handles
* @link https://php.net/manual/en/function.http-persistent-handles-clean.php
* @param string $ident [optional]
* @return string
* @param string $ident [optional]
* @return string
*/
function http_persistent_handles_clean ($ident = null) {}
@ -2749,9 +2749,9 @@ function http_request_method_name ($method) {}
* (PECL pecl_http &gt;= 0.10.0)<br/>
* ETag output handler
* @link https://php.net/manual/en/function.ob-etaghandler.php
* @param string $data
* @param int $mode
* @return string
* @param string $data
* @param int $mode
* @return string
*/
function ob_etaghandler ($data, $mode) {}
@ -2784,9 +2784,9 @@ function http_inflate ($data) {}
* (PECL pecl_http &gt;= 0.21.0)<br/>
* Deflate output handler
* @link https://php.net/manual/en/function.ob-deflatehandler.php
* @param string $data
* @param int $mode
* @return string
* @param string $data
* @param int $mode
* @return string
*/
function ob_deflatehandler ($data, $mode) {}
@ -2794,9 +2794,9 @@ function ob_deflatehandler ($data, $mode) {}
* (PECL pecl_http &gt;= 0.21.0)<br/>
* Inflate output handler
* @link https://php.net/manual/en/function.ob-inflatehandler.php
* @param string $data
* @param int $mode
* @return string
* @param string $data
* @param int $mode
* @return string
*/
function ob_inflatehandler ($data, $mode) {}

File diff suppressed because it is too large Load Diff

View File

@ -10,7 +10,7 @@
* represents the database alias in the DB2 client catalog.
* </p>
* <p>
* For an uncataloged connection to a database,
* For an uncataloged connection to a database,
* database represents a complete connection
* string in the following format:
* DATABASE=database;HOSTNAME=hostname;PORT=port;PROTOCOL=TCPIP;UID=username;PWD=password;
@ -103,7 +103,7 @@ function db2_pconnect ($database, $username, $password, array $options = null) {
* db2_connect or db2_pconnect.
* </p>
* @param int $value <p>
* One of the following constants:
* One of the following constants:
* DB2_AUTOCOMMIT_OFF
* <p>
* Turns AUTOCOMMIT off.
@ -135,10 +135,10 @@ function db2_autocommit ($connection, $value = null) {}
* @param int $data_type
* @param int $precision <p>
* Specifies the precision with which the variable should be bound to the
* database. This parameter can also be used for retrieving XML output values
* from stored procedures. A non-negative value specifies the maximum size of
* the XML data that will be retrieved from the database. If this parameter
* is not used, a default of 1MB will be assumed for retrieving the XML
* database. This parameter can also be used for retrieving XML output values
* from stored procedures. A non-negative value specifies the maximum size of
* the XML data that will be retrieved from the database. If this parameter
* is not used, a default of 1MB will be assumed for retrieving the XML
* output value from the stored procedure.
* </p>
* @param int $scale <p>
@ -1604,7 +1604,7 @@ function db2_setoption () {}
* </p>
* <p>
* The IBM DB2, Cloudscape, and Apache Derby database servers typically fold
* column names to upper-case, so the object properties will reflect that case.
* column names to upper-case, so the object properties will reflect that case.
* </p>
* <p>
* If your SELECT statement calls a scalar function to modify the value
@ -1642,12 +1642,12 @@ function db2_client_info ($connection) {}
* Used to escape certain characters
* @link https://php.net/manual/en/function.db2-escape-string.php
* @param string $string_literal <p>
* The string that contains special characters that need to be modified.
* Characters that are prepended with a backslash are \x00,
* \n, \r, \,
* The string that contains special characters that need to be modified.
* Characters that are prepended with a backslash are \x00,
* \n, \r, \,
* ', " and \x1a.
* </p>
* @return string string_literal with the special characters
* @return string string_literal with the special characters
* noted above prepended with backslashes.
*/
function db2_escape_string ($string_literal) {}
@ -1679,31 +1679,31 @@ function db2_lob_read ($stmt, $colnum, $length) {}
* db2_pconnect.
* </p>
* @param string $option <p>
* A valid statement or connection options. The following new options are available
* as of ibm_db2 version 1.6.0. They provide useful tracking information
* A valid statement or connection options. The following new options are available
* as of ibm_db2 version 1.6.0. They provide useful tracking information
* that can be set during execution with db2_get_option.
* Note
* <p>
* Prior versions of ibm_db2 do not support these new options.
* </p>
* <p>
* When the value in each option is being set, some servers might not handle
* When the value in each option is being set, some servers might not handle
* the entire length provided and might truncate the value.
* </p>
* <p>
* To ensure that the data specified in each option is converted correctly
* when transmitted to a host system, use only the characters A through Z,
* To ensure that the data specified in each option is converted correctly
* when transmitted to a host system, use only the characters A through Z,
* 0 through 9, and the underscore (_) or period (.).
* </p>
* userid
* <p>
* SQL_ATTR_INFO_USERID - A pointer to a null-terminated
* character string used to identify the client user ID sent to the host
* SQL_ATTR_INFO_USERID - A pointer to a null-terminated
* character string used to identify the client user ID sent to the host
* database server when using DB2 Connect.
* Note
* <p>
* DB2 for z/OS and OS/390 servers support up to a length of 16 characters.
* This user-id is not to be confused with the authentication user-id, it is for
* DB2 for z/OS and OS/390 servers support up to a length of 16 characters.
* This user-id is not to be confused with the authentication user-id, it is for
* identification purposes only and is not used for any authorization.
* </p>
* </p>

View File

@ -15,11 +15,11 @@
* <p>
* The server part, which is enclosed in '{' and '}', consists of the servers
* name or ip address, an optional port (prefixed by ':'), and an optional
* protocol specification (prefixed by '/').
* protocol specification (prefixed by '/').
* </p>
* <p>
* The server part is mandatory in all mailbox
* parameters.
* parameters.
* </p>
* <p>
* All names which start with { are remote names, and are
@ -51,7 +51,7 @@ function imap_open ($mailbox, $username, $password, $options = 0, $n_retries = 0
/**
* Reopen IMAP stream to new mailbox
* @link https://php.net/manual/en/function.imap-reopen.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $mailbox <p>
* The mailbox name, see <b>imap_open</b> for more
* information
@ -70,7 +70,7 @@ function imap_reopen ($imap_stream, $mailbox, $options = 0, $n_retries = 0) {}
/**
* Close an IMAP stream
* @link https://php.net/manual/en/function.imap-close.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param int $flag [optional] <p>
* If set to <b>CL_EXPUNGE</b>, the function will silently
* expunge the mailbox before closing, removing all messages marked for
@ -84,7 +84,7 @@ function imap_close ($imap_stream, $flag = 0) {}
/**
* Gets the number of messages in the current mailbox
* @link https://php.net/manual/en/function.imap-num-msg.php
* @param resource $imap_stream
* @param resource $imap_stream
* @return int Return the number of messages in the current mailbox, as an integer.
*/
function imap_num_msg ($imap_stream) {}
@ -92,7 +92,7 @@ function imap_num_msg ($imap_stream) {}
/**
* Gets the number of recent messages in current mailbox
* @link https://php.net/manual/en/function.imap-num-recent.php
* @param resource $imap_stream
* @param resource $imap_stream
* @return int the number of recent messages in the current mailbox, as an
* integer.
*/
@ -101,7 +101,7 @@ function imap_num_recent ($imap_stream) {}
/**
* Returns headers for all messages in a mailbox
* @link https://php.net/manual/en/function.imap-headers.php
* @param resource $imap_stream
* @param resource $imap_stream
* @return array an array of string formatted with header info. One
* element per mail message.
*/
@ -211,7 +211,7 @@ function imap_rfc822_parse_adrlist ($address, $default_host) {}
/**
* Read the message body
* @link https://php.net/manual/en/function.imap-body.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param int $msg_number <p>
* The message number
* </p>
@ -226,7 +226,7 @@ function imap_body ($imap_stream, $msg_number, $options = 0) {}
/**
* Read the structure of a specified body section of a specific message
* @link https://php.net/manual/en/function.imap-bodystruct.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param int $msg_number <p>
* The message number
* </p>
@ -234,7 +234,7 @@ function imap_body ($imap_stream, $msg_number, $options = 0) {}
* The body section to read
* </p>
* @return object the information in an object, for a detailed description
* of the object structure and properties see
* of the object structure and properties see
* <b>imap_fetchstructure</b>.
*/
function imap_bodystruct ($imap_stream, $msg_number, $section) {}
@ -242,7 +242,7 @@ function imap_bodystruct ($imap_stream, $msg_number, $section) {}
/**
* Fetch a particular section of the body of the message
* @link https://php.net/manual/en/function.imap-fetchbody.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param int $msg_number <p>
* The message number
* </p>
@ -281,7 +281,7 @@ function imap_fetchmime ($imap_stream, $msg_number, $section, $options = 0) {}
/**
* Save a specific body section to a file
* @link https://php.net/manual/en/function.imap-savebody.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param mixed $file <p>
* The path to the saved file as a string, or a valid file descriptor
* returned by <b>fopen</b>.
@ -304,7 +304,7 @@ function imap_savebody ($imap_stream, $file, $msg_number, $part_number = "", $op
/**
* Returns header for a message
* @link https://php.net/manual/en/function.imap-fetchheader.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param int $msg_number <p>
* The message number
* </p>
@ -319,12 +319,12 @@ function imap_fetchheader ($imap_stream, $msg_number, $options = 0) {}
/**
* Read the structure of a particular message
* @link https://php.net/manual/en/function.imap-fetchstructure.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param int $msg_number <p>
* The message number
* </p>
* @param int $options [optional] <p>
* This optional parameter only has a single option,
* This optional parameter only has a single option,
* <b>FT_UID</b>, which tells the function to treat the
* <i>msg_number</i> argument as a
* UID.
@ -443,10 +443,10 @@ function imap_fetchstructure ($imap_stream, $msg_number, $options = 0) {}
/**
* Clears IMAP cache
* @link https://php.net/manual/en/function.imap-gc.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param int $caches <p>
* Specifies the cache to purge. It may one or a combination
* of the following constants:
* of the following constants:
* <b>IMAP_GC_ELT</b> (message cache elements),
* <b>IMAP_GC_ENV</b> (enveloppe and bodies),
* <b>IMAP_GC_TEXTS</b> (texts).
@ -458,7 +458,7 @@ function imap_gc ($imap_stream, $caches) {}
/**
* Delete all messages marked for deletion
* @link https://php.net/manual/en/function.imap-expunge.php
* @param resource $imap_stream
* @param resource $imap_stream
* @return bool <b>TRUE</b>.
*/
function imap_expunge ($imap_stream) {}
@ -466,7 +466,7 @@ function imap_expunge ($imap_stream) {}
/**
* Mark a message for deletion from current mailbox
* @link https://php.net/manual/en/function.imap-delete.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param int $msg_number <p>
* The message number
* </p>
@ -482,7 +482,7 @@ function imap_delete ($imap_stream, $msg_number, $options = 0) {}
/**
* Unmark the message which is marked deleted
* @link https://php.net/manual/en/function.imap-undelete.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param int $msg_number <p>
* The message number
* </p>
@ -494,7 +494,7 @@ function imap_undelete ($imap_stream, $msg_number, $flags = 0) {}
/**
* Check current mailbox
* @link https://php.net/manual/en/function.imap-check.php
* @param resource $imap_stream
* @param resource $imap_stream
* @return object|false the information in an object with following properties:
* <b>Date</b> - current system time formatted according to RFC2822
* <b>Driver</b> - protocol used to access this mailbox:
@ -503,7 +503,7 @@ function imap_undelete ($imap_stream, $msg_number, $flags = 0) {}
* <b>Nmsgs</b> - number of messages in the mailbox
* <b>Recent</b> - number of recent messages in the mailbox
* </p>
* <p>
* <p>
* Returns <b>FALSE</b> on failure.
*/
function imap_check ($imap_stream) {}
@ -511,7 +511,7 @@ function imap_check ($imap_stream) {}
/**
* Returns the list of mailboxes that matches the given text
* @link https://php.net/manual/en/function.imap-listscan.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $ref <p>
* <i>ref</i> should normally be just the server
* specification as described in <b>imap_open</b>
@ -539,7 +539,7 @@ function imap_listscan ($imap_stream, $ref, $pattern, $content) {}
/**
* Copy specified messages to a mailbox
* @link https://php.net/manual/en/function.imap-mail-copy.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $msglist <p>
* <i>msglist</i> is a range not just message
* numbers (as described in RFC2060).
@ -558,7 +558,7 @@ function imap_mail_copy ($imap_stream, $msglist, $mailbox, $options = 0) {}
/**
* Move specified messages to a mailbox
* @link https://php.net/manual/en/function.imap-mail-move.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $msglist <p>
* <i>msglist</i> is a range not just message numbers
* (as described in RFC2060).
@ -599,7 +599,7 @@ function imap_mail_compose (array $envelope, array $body) {}
/**
* Create a new mailbox
* @link https://php.net/manual/en/function.imap-createmailbox.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $mailbox <p>
* The mailbox name, see <b>imap_open</b> for more
* information. Names containing international characters should be
@ -612,7 +612,7 @@ function imap_createmailbox ($imap_stream, $mailbox) {}
/**
* Rename an old mailbox to new mailbox
* @link https://php.net/manual/en/function.imap-renamemailbox.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $old_mbox <p>
* The old mailbox name, see <b>imap_open</b> for more
* information
@ -628,7 +628,7 @@ function imap_renamemailbox ($imap_stream, $old_mbox, $new_mbox) {}
/**
* Delete a mailbox
* @link https://php.net/manual/en/function.imap-deletemailbox.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $mailbox <p>
* The mailbox name, see <b>imap_open</b> for more
* information
@ -640,7 +640,7 @@ function imap_deletemailbox ($imap_stream, $mailbox) {}
/**
* Subscribe to a mailbox
* @link https://php.net/manual/en/function.imap-subscribe.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $mailbox <p>
* The mailbox name, see <b>imap_open</b> for more
* information
@ -652,7 +652,7 @@ function imap_subscribe ($imap_stream, $mailbox) {}
/**
* Unsubscribe from a mailbox
* @link https://php.net/manual/en/function.imap-unsubscribe.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $mailbox <p>
* The mailbox name, see <b>imap_open</b> for more
* information
@ -664,7 +664,7 @@ function imap_unsubscribe ($imap_stream, $mailbox) {}
/**
* Append a string message to a specified mailbox
* @link https://php.net/manual/en/function.imap-append.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $mailbox <p>
* The mailbox name, see <b>imap_open</b> for more
* information
@ -691,7 +691,7 @@ function imap_append ($imap_stream, $mailbox, $message, $options = null, $intern
/**
* Check if the IMAP stream is still active
* @link https://php.net/manual/en/function.imap-ping.php
* @param resource $imap_stream
* @param resource $imap_stream
* @return bool <b>TRUE</b> if the stream is still alive, <b>FALSE</b> otherwise.
*/
function imap_ping ($imap_stream) {}
@ -740,7 +740,7 @@ function imap_binary ($string) {}
* Converts MIME-encoded text to UTF-8
* @link https://php.net/manual/en/function.imap-utf8.php
* @param string $mime_encoded_text <p>
* A MIME encoded string. MIME encoding method and the UTF-8
* A MIME encoded string. MIME encoding method and the UTF-8
* specification are described in RFC2047 and RFC2044 respectively.
* </p>
* @return string an UTF-8 encoded string.
@ -750,7 +750,7 @@ function imap_utf8 ($mime_encoded_text) {}
/**
* Returns status information on a mailbox
* @link https://php.net/manual/en/function.imap-status.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $mailbox <p>
* The mailbox name, see <b>imap_open</b> for more
* information
@ -761,8 +761,8 @@ function imap_utf8 ($mime_encoded_text) {}
* number of messages in the mailbox
* @return object This function returns an object containing status information.
* The object has the following properties: messages,
* recent, unseen,
* uidnext, and uidvalidity.
* recent, unseen,
* uidnext, and uidvalidity.
* </p>
* <p>
* flags is also set, which contains a bitmask which can
@ -779,7 +779,7 @@ function imap_status_current ($stream_id, $options) {}
/**
* Get information about the current mailbox
* @link https://php.net/manual/en/function.imap-mailboxmsginfo.php
* @param resource $imap_stream
* @param resource $imap_stream
* @return object|false the information in an object with following properties:
* <table>
* Mailbox properties
@ -825,14 +825,14 @@ function imap_mailboxmsginfo ($imap_stream) {}
/**
* Sets flags on messages
* @link https://php.net/manual/en/function.imap-setflag-full.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $sequence <p>
* A sequence of message numbers. You can enumerate desired messages
* with the X,Y syntax, or retrieve all messages
* with the X,Y syntax, or retrieve all messages
* within an interval with the X:Y syntax
* </p>
* @param string $flag <p>
* The flags which you can set are \Seen,
* The flags which you can set are \Seen,
* \Answered, \Flagged,
* \Deleted, and \Draft as
* defined by RFC2060.
@ -848,10 +848,10 @@ function imap_setflag_full ($imap_stream, $sequence, $flag, $options = NIL) {}
/**
* Clears flags on messages
* @link https://php.net/manual/en/function.imap-clearflag-full.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $sequence <p>
* A sequence of message numbers. You can enumerate desired messages
* with the X,Y syntax, or retrieve all messages
* with the X,Y syntax, or retrieve all messages
* within an interval with the X:Y syntax
* </p>
* @param string $flag <p>
@ -870,7 +870,7 @@ function imap_clearflag_full ($imap_stream, $sequence, $flag, $options = 0) {}
/**
* Gets and sort messages
* @link https://php.net/manual/en/function.imap-sort.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param int $criteria <p>
* Criteria can be one (and only one) of the following:
* <b>SORTDATE</b> - message Date
@ -891,7 +891,7 @@ function imap_sort ($imap_stream, $criteria, $reverse, $options = 0, $search_cri
/**
* This function returns the UID for the given message sequence number
* @link https://php.net/manual/en/function.imap-uid.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param int $msg_number <p>
* The message number.
* </p>
@ -902,11 +902,11 @@ function imap_uid ($imap_stream, $msg_number) {}
/**
* Gets the message sequence number for the given UID
* @link https://php.net/manual/en/function.imap-msgno.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param int $uid <p>
* The message UID
* </p>
* @return int the message sequence number for the given
* @return int the message sequence number for the given
* <i>uid</i>.
*/
function imap_msgno ($imap_stream, $uid) {}
@ -914,7 +914,7 @@ function imap_msgno ($imap_stream, $uid) {}
/**
* Read the list of mailboxes
* @link https://php.net/manual/en/function.imap-list.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $ref <p>
* <i>ref</i> should normally be just the server
* specification as described in <b>imap_open</b>.
@ -938,7 +938,7 @@ function imap_list ($imap_stream, $ref, $pattern) {}
/**
* List all the subscribed mailboxes
* @link https://php.net/manual/en/function.imap-lsub.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $ref <p>
* <i>ref</i> should normally be just the server
* specification as described in <b>imap_open</b>
@ -962,15 +962,15 @@ function imap_lsub ($imap_stream, $ref, $pattern) {}
/**
* Read an overview of the information in the headers of the given message
* @link https://php.net/manual/en/function.imap-fetch-overview.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $sequence <p>
* A message sequence description. You can enumerate desired messages
* with the X,Y syntax, or retrieve all messages
* with the X,Y syntax, or retrieve all messages
* within an interval with the X:Y syntax
* </p>
* @param int $options [optional] <p>
* <i>sequence</i> will contain a sequence of message
* indices or UIDs, if this parameter is set to
* indices or UIDs, if this parameter is set to
* <b>FT_UID</b>.
* </p>
* @return array an array of objects describing one message header each.
@ -1024,7 +1024,7 @@ function imap_last_error () {}
/**
* This function returns an array of messages matching the given search criteria
* @link https://php.net/manual/en/function.imap-search.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $criteria <p>
* A string, delimited by spaces, in which the following keywords are
* allowed. Any multi-word arguments (e.g.
@ -1067,7 +1067,7 @@ function imap_utf7_decode ($text) {}
* An ISO-8859-1 string.
* </p>
* @return string <i>data</i> encoded with the modified UTF-7
* encoding as defined in RFC 2060,
* encoding as defined in RFC 2060,
* section 5.1.3 (original UTF-7 was defined in RFC1642).
*/
function imap_utf7_encode ($data) {}
@ -1079,7 +1079,7 @@ function imap_utf7_encode ($data) {}
* The MIME text
* </p>
* @return array The decoded elements are returned in an array of objects, where each
* object has two properties, charset and
* object has two properties, charset and
* text.
* </p>
* <p>
@ -1092,7 +1092,7 @@ function imap_mime_header_decode ($text) {}
/**
* Returns a tree of threaded message
* @link https://php.net/manual/en/function.imap-thread.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param int $options [optional]
* @return array <b>imap_thread</b> returns an associative array containing
* a tree of messages threaded by REFERENCES, or <b>FALSE</b>
@ -1139,7 +1139,7 @@ function imap_timeout ($timeout_type, $timeout = -1) {}
/**
* Retrieve the quota level settings, and usage statics per mailbox
* @link https://php.net/manual/en/function.imap-get-quota.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $quota_root <p>
* <i>quota_root</i> should normally be in the form of
* user.name where name is the mailbox you wish to
@ -1153,7 +1153,7 @@ function imap_timeout ($timeout_type, $timeout = -1) {}
* <p>
* As of PHP 4.3, the function more properly reflects the
* functionality as dictated by the RFC2087.
* The array return value has changed to support an unlimited number of returned
* The array return value has changed to support an unlimited number of returned
* resources (i.e. messages, or sub-folders) with each named resource receiving
* an individual array key. Each key value then contains an another array with
* the usage and limit values within it.
@ -1167,7 +1167,7 @@ function imap_get_quota ($imap_stream, $quota_root) {}
/**
* Retrieve the quota settings per user
* @link https://php.net/manual/en/function.imap-get-quotaroot.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $quota_root <p>
* <i>quota_root</i> should normally be in the form of
* which mailbox (i.e. INBOX).
@ -1186,7 +1186,7 @@ function imap_get_quotaroot ($imap_stream, $quota_root) {}
/**
* Sets a quota for a given mailbox
* @link https://php.net/manual/en/function.imap-set-quota.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $quota_root <p>
* The mailbox to have a quota set. This should follow the IMAP standard
* format for a mailbox: user.name.
@ -1201,7 +1201,7 @@ function imap_set_quota ($imap_stream, $quota_root, $quota_limit) {}
/**
* Sets the ACL for a given mailbox
* @link https://php.net/manual/en/function.imap-setacl.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $mailbox <p>
* The mailbox name, see <b>imap_open</b> for more
* information
@ -1220,7 +1220,7 @@ function imap_setacl ($imap_stream, $mailbox, $id, $rights) {}
/**
* Gets the ACL for a given mailbox
* @link https://php.net/manual/en/function.imap-getacl.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $mailbox <p>
* The mailbox name, see <b>imap_open</b> for more
* information
@ -1342,7 +1342,7 @@ function imap_listmailbox ($stream_id, $ref, $pattern) {}
/**
* Read the list of mailboxes, returning detailed information on each one
* @link https://php.net/manual/en/function.imap-getmailboxes.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $ref <p>
* <i>ref</i> should normally be just the server
* specification as described in <b>imap_open</b>
@ -1368,7 +1368,7 @@ function imap_listmailbox ($stream_id, $ref, $pattern) {}
* is a bitmask that can be tested against:
* <p>
* <b>LATT_NOINFERIORS</b> - This mailbox contains, and may not contain any
* "children" (there are no mailboxes below this one). Calling
* "children" (there are no mailboxes below this one). Calling
* <b>imap_createmailbox</b> will not work on this mailbox.
* </p>
* <p>
@ -1410,7 +1410,7 @@ function imap_listsubscribed ($stream_id, $ref, $pattern) {}
/**
* List all the subscribed mailboxes
* @link https://php.net/manual/en/function.imap-getsubscribed.php
* @param resource $imap_stream
* @param resource $imap_stream
* @param string $ref <p>
* <i>ref</i> should normally be just the server
* specification as described in <b>imap_open</b>
@ -1499,7 +1499,7 @@ define ('OP_DEBUG', 1);
define ('OP_READONLY', 2);
/**
* Don't use or update a .newsrc for news
* Don't use or update a .newsrc for news
* (NNTP only)
* @link https://php.net/manual/en/imap.constants.php
*/
@ -1697,4 +1697,3 @@ define ('IMAP_GC_ENV', 2);
* @link https://php.net/manual/en/imap.constants.php
*/
define ('IMAP_GC_TEXTS', 4);

View File

@ -10,7 +10,7 @@
* database file on the server it resides on. If the server is not local,
* it must be prefixed with either 'hostname:' (TCP/IP), '//hostname/'
* (NetBEUI) or 'hostname@' (IPX/SPX), depending on the connection
* protocol used.
* protocol used.
* </p>
* @param string $username [optional] <p>
* The user name. Can be set with the
@ -52,7 +52,7 @@ function ibase_connect ($database = null, $username = null, $password = null, $c
* database file on the server it resides on. If the server is not local,
* it must be prefixed with either 'hostname:' (TCP/IP), '//hostname/'
* (NetBEUI) or 'hostname@' (IPX/SPX), depending on the connection
* protocol used.
* protocol used.
* </p>
* @param string $username [optional] <p>
* The user name. Can be set with the
@ -236,7 +236,7 @@ function ibase_prepare ($query) {}
* </p>
* @param mixed $bind_arg [optional] <p>
* </p>
* @param mixed $_ [optional]
* @param mixed $_ [optional]
* @return resource|bool If the query raises an error, returns false. If it is successful and
* there is a (possibly empty) result set (such as with a SELECT query),
* returns a result identifier. If the query was successful and there were
@ -263,9 +263,9 @@ function ibase_free_query ($query) {}
/**
* Increments the named generator and returns its new value
* @link https://php.net/manual/en/function.ibase-gen-id.php
* @param string $generator
* @param int $increment [optional]
* @param resource $link_identifier [optional]
* @param string $generator
* @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.
*/
function ibase_gen_id ($generator, $increment = null, $link_identifier = null) {}
@ -338,12 +338,12 @@ function ibase_param_info ($query, $param_number) {}
* trans_args can be a combination of
* IBASE_READ,
* IBASE_WRITE,
* IBASE_COMMITTED,
* IBASE_COMMITTED,
* IBASE_CONSISTENCY,
* IBASE_CONCURRENCY,
* IBASE_REC_VERSION,
* IBASE_CONCURRENCY,
* IBASE_REC_VERSION,
* IBASE_REC_NO_VERSION,
* IBASE_WAIT and
* IBASE_WAIT and
* IBASE_NOWAIT.
* </p>
* @param resource $link_identifier [optional] <p>
@ -451,7 +451,7 @@ function ibase_blob_create ($link_identifier = null) {}
* @param string $data <p>
* The data to be added.
* </p>
* @return void
* @return void
*/
function ibase_blob_add ($blob_handle, $data) {}
@ -489,7 +489,7 @@ function ibase_blob_close ($blob_handle) {}
* @param string $blob_id <p>
* A BLOB id.
* </p>
* @return resource a BLOB handle for later use with
* @return resource a BLOB handle for later use with
* ibase_blob_get or false on failure.
*/
function ibase_blob_open ($link_identifier, $blob_id) {}
@ -548,12 +548,12 @@ function ibase_errcode () {}
/**
* Add a user to a security database (only for IB6 or later)
* @link https://php.net/manual/en/function.ibase-add-user.php
* @param resource $service_handle
* @param string $user_name
* @param string $password
* @param string $first_name [optional]
* @param string $middle_name [optional]
* @param string $last_name [optional]
* @param resource $service_handle
* @param string $user_name
* @param string $password
* @param string $first_name [optional]
* @param string $middle_name [optional]
* @param string $last_name [optional]
* @return bool true on success or false on failure.
*/
function ibase_add_user ($service_handle, $user_name, $password, $first_name = null, $middle_name = null, $last_name = null) {}
@ -561,12 +561,12 @@ function ibase_add_user ($service_handle, $user_name, $password, $first_name = n
/**
* Modify a user to a security database (only for IB6 or later)
* @link https://php.net/manual/en/function.ibase-modify-user.php
* @param resource $service_handle
* @param string $user_name
* @param string $password
* @param string $first_name [optional]
* @param string $middle_name [optional]
* @param string $last_name [optional]
* @param resource $service_handle
* @param string $user_name
* @param string $password
* @param string $first_name [optional]
* @param string $middle_name [optional]
* @param string $last_name [optional]
* @return bool true on success or false on failure.
*/
function ibase_modify_user ($service_handle, $user_name, $password, $first_name = null, $middle_name = null, $last_name = null) {}
@ -574,8 +574,8 @@ function ibase_modify_user ($service_handle, $user_name, $password, $first_name
/**
* Delete a user from a security database (only for IB6 or later)
* @link https://php.net/manual/en/function.ibase-delete-user.php
* @param resource $service_handle
* @param string $user_name
* @param resource $service_handle
* @param string $user_name
* @return bool true on success or false on failure.
*/
function ibase_delete_user ($service_handle, $user_name) {}
@ -583,17 +583,17 @@ function ibase_delete_user ($service_handle, $user_name) {}
/**
* Connect to the service manager
* @link https://php.net/manual/en/function.ibase-service-attach.php
* @param string $host
* @param string $dba_username
* @param string $dba_password
* @return resource
* @param string $host
* @param string $dba_username
* @param string $dba_password
* @return resource
*/
function ibase_service_attach ($host, $dba_username, $dba_password) {}
/**
* Disconnect from the service manager
* @link https://php.net/manual/en/function.ibase-service-detach.php
* @param resource $service_handle
* @param resource $service_handle
* @return bool true on success or false on failure.
*/
function ibase_service_detach ($service_handle) {}
@ -601,34 +601,34 @@ function ibase_service_detach ($service_handle) {}
/**
* Initiates a backup task in the service manager and returns immediately
* @link https://php.net/manual/en/function.ibase-backup.php
* @param resource $service_handle
* @param string $source_db
* @param string $dest_file
* @param int $options [optional]
* @param bool $verbose [optional]
* @return mixed
* @param resource $service_handle
* @param string $source_db
* @param string $dest_file
* @param int $options [optional]
* @param bool $verbose [optional]
* @return mixed
*/
function ibase_backup ($service_handle, $source_db, $dest_file, $options = null, $verbose = null) {}
/**
* Initiates a restore task in the service manager and returns immediately
* @link https://php.net/manual/en/function.ibase-restore.php
* @param resource $service_handle
* @param string $source_file
* @param string $dest_db
* @param int $options [optional]
* @param bool $verbose [optional]
* @return mixed
* @param resource $service_handle
* @param string $source_file
* @param string $dest_db
* @param int $options [optional]
* @param bool $verbose [optional]
* @return mixed
*/
function ibase_restore ($service_handle, $source_file, $dest_db, $options = null, $verbose = null) {}
/**
* Execute a maintenance command on the database server
* @link https://php.net/manual/en/function.ibase-maintain-db.php
* @param resource $service_handle
* @param string $db
* @param int $action
* @param int $argument [optional]
* @param resource $service_handle
* @param string $db
* @param int $action
* @param int $argument [optional]
* @return bool true on success or false on failure.
*/
function ibase_maintain_db ($service_handle, $db, $action, $argument = null) {}
@ -636,20 +636,20 @@ function ibase_maintain_db ($service_handle, $db, $action, $argument = null) {}
/**
* Request statistics about a database
* @link https://php.net/manual/en/function.ibase-db-info.php
* @param resource $service_handle
* @param string $db
* @param int $action
* @param int $argument [optional]
* @return string
* @param resource $service_handle
* @param string $db
* @param int $action
* @param int $argument [optional]
* @return string
*/
function ibase_db_info ($service_handle, $db, $action, $argument = null) {}
/**
* Request information about a database server
* @link https://php.net/manual/en/function.ibase-server-info.php
* @param resource $service_handle
* @param int $action
* @return string
* @param resource $service_handle
* @param int $action
* @return string
*/
function ibase_server_info ($service_handle, $action) {}
@ -661,7 +661,7 @@ function ibase_server_info ($service_handle, $action) {}
* </p>
* @param string $event_name2 [optional] <p>
* </p>
* @param string $_ [optional]
* @param string $_ [optional]
* @return string the name of the event that was posted.
*/
function ibase_wait_event ($event_name1, $event_name2 = null, $_ = null) {}
@ -685,7 +685,7 @@ function ibase_wait_event ($event_name1, $event_name2 = null, $_ = null) {}
* @param string $event_name2 [optional] <p>
* At most 15 events allowed.
* </p>
* @param string $_ [optional]
* @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.
*/

View File

@ -1365,4 +1365,4 @@ class IntlChar {
* @since 7.0
*/
public static function toupper ($codepoint ) {}
}
}

View File

@ -32,7 +32,7 @@ class Judy implements ArrayAccess {
* @link https://php.net/manual/en/class.judy.php#judy.constants.string-to-mixed
*/
const STRING_TO_MIXED = 5;
/**
* (PECL judy &gt;= 0.1.1)<br/>
* Construct a new Judy object. A Judy object can be accessed like a PHP Array.

View File

@ -695,4 +695,3 @@ function event_timer_del($event) {}
// End of PECL libevent v.0.0.4

View File

@ -54,7 +54,7 @@ namespace Sodium;
const CRYPTO_STREAM_NONCEBYTES = 24;
const CRYPTO_PWHASH_OPSLIMIT_INTERACTIVE = 4;
const CRYPTO_PWHASH_MEMLIMIT_INTERACTIVE = 33554432;
const CRYPTO_PWHASH_OPSLIMIT_MODERATE = 6;
const CRYPTO_PWHASH_OPSLIMIT_MODERATE = 6;
const CRYPTO_PWHASH_MEMLIMIT_MODERATE = 134217728;
const CRYPTO_PWHASH_OPSLIMIT_SENSITIVE = 8;
const CRYPTO_PWHASH_MEMLIMIT_SENSITIVE = 536870912;
@ -63,7 +63,7 @@ namespace Sodium;
/**
* Can you access AES-256-GCM? This is only available if you have supported
* hardware.
*
*
* @return bool
*/
function crypto_aead_aes256gcm_is_available(): bool
@ -74,7 +74,7 @@ namespace Sodium;
/**
* Authenticated Encryption with Associated Data (decrypt)
* AES-256-GCM
*
*
* @param string $msg encrypted message
* @param string $nonce
* @param string $key
@ -94,7 +94,7 @@ namespace Sodium;
/**
* Authenticated Encryption with Associated Data (encrypt)
* AES-256-GCM
*
*
* @param string $msg plaintext message
* @param string $nonce
* @param string $key
@ -114,7 +114,7 @@ namespace Sodium;
/**
* Authenticated Encryption with Associated Data (decrypt)
* ChaCha20 + Poly1305
*
*
* @param string $msg encrypted message
* @param string $nonce
* @param string $key
@ -134,7 +134,7 @@ namespace Sodium;
/**
* Authenticated Encryption with Associated Data (encrypt)
* ChaCha20 + Poly1305
*
*
* @param string $msg plaintext message
* @param string $nonce
* @param string $key
@ -154,7 +154,7 @@ namespace Sodium;
/**
* Secret-key message authentication
* HMAC SHA-512/256
*
*
* @param string $msg
* @param string $key
* @return string
@ -170,7 +170,7 @@ namespace Sodium;
/**
* Secret-key message verification
* HMAC SHA-512/256
*
*
* @param string $mac
* @param string $msg
* @param string $key
@ -188,7 +188,7 @@ namespace Sodium;
/**
* Public-key authenticated encryption (encrypt)
* X25519 + Xsalsa20 + Poly1305
*
*
* @param string $msg
* @param string $nonce
* @param string $keypair
@ -205,7 +205,7 @@ namespace Sodium;
/**
* Generate an X25519 keypair for use with the crypto_box API
*
*
* @return string
*/
function crypto_box_keypair(): string {
@ -214,7 +214,7 @@ namespace Sodium;
/**
* Derive an X25519 keypair for use with the crypto_box API from a seed
*
*
* @param string $seed
* @return string
*/
@ -227,7 +227,7 @@ namespace Sodium;
/**
* Create an X25519 keypair from an X25519 secret key and X25519 public key
*
*
* @param string $secretkey
* @param string $publickey
* @return string
@ -243,7 +243,7 @@ namespace Sodium;
/**
* Public-key authenticated encryption (decrypt)
* X25519 + Xsalsa20 + Poly1305
*
*
* @param string $msg
* @param string $nonce
* @param string $keypair
@ -260,7 +260,7 @@ namespace Sodium;
/**
* Get an X25519 public key from an X25519 keypair
*
*
* @param string $keypair
* @return string
*/
@ -273,7 +273,7 @@ namespace Sodium;
/**
* Derive an X25519 public key from an X25519 secret key
*
*
* @param string $secretkey
* @return string
*/
@ -287,7 +287,7 @@ namespace Sodium;
/**
* Anonymous public-key encryption (encrypt)
* X25519 + Xsalsa20 + Poly1305 + BLAKE2b
*
*
* @param string $message
* @param string $publickey
* @return string
@ -303,7 +303,7 @@ namespace Sodium;
/**
* Anonymous public-key encryption (decrypt)
* X25519 + Xsalsa20 + Poly1305 + BLAKE2b
*
*
* @param string $encrypted
* @param string $keypair
* @return string
@ -318,7 +318,7 @@ namespace Sodium;
/**
* Extract the X25519 secret key from an X25519 keypair
*
*
* @param string $keypair
* @return string
*/
@ -331,7 +331,7 @@ namespace Sodium;
/**
* Elliptic Curve Diffie Hellman Key Exchange
* X25519
*
*
* @param string $secretkey
* @param string $publickey
* @param string $client_publickey
@ -350,7 +350,7 @@ namespace Sodium;
/**
* Fast and secure cryptographic hash
*
*
* @param string $input
* @param string $key
* @param int $length
@ -368,7 +368,7 @@ namespace Sodium;
/**
* Create a new hash state (e.g. to use for streams)
* BLAKE2b
*
*
* @param string $key
* @param int $length
* @return string
@ -384,7 +384,7 @@ namespace Sodium;
/**
* Update the hash state with some data
* BLAKE2b
*
*
* @param string &$hashState
* @param string $append
* @return bool
@ -400,7 +400,7 @@ namespace Sodium;
/**
* Get the final hash
* BLAKE2b
*
*
* @param string $hashState
* @param int $length
* @return string
@ -416,7 +416,7 @@ namespace Sodium;
/**
* Secure password-based key derivation function
* Argon2i
*
*
* @param int $out_len
* @param string $passwd
* @param string $salt
@ -438,7 +438,7 @@ namespace Sodium;
/**
* Get a formatted password hash (for storage)
* Argon2i
*
*
* @param string $passwd
* @param int $opslimit
* @param int $memlimit
@ -456,7 +456,7 @@ namespace Sodium;
/**
* Verify a password against a hash
* Argon2i
*
*
* @param string $hash
* @param string $passwd
* @return bool
@ -472,7 +472,7 @@ namespace Sodium;
/**
* Secure password-based key derivation function
* Scrypt
*
*
* @param int $out_len
* @param string $passwd
* @param string $salt
@ -494,7 +494,7 @@ namespace Sodium;
/**
* Get a formatted password hash (for storage)
* Scrypt
*
*
* @param string $passwd
* @param int $opslimit
* @param int $memlimit
@ -512,7 +512,7 @@ namespace Sodium;
/**
* Verify a password against a hash
* Scrypt
*
*
* @param string $hash
* @param string $passwd
* @return bool
@ -528,7 +528,7 @@ namespace Sodium;
/**
* Elliptic Curve Diffie Hellman over Curve25519
* X25519
*
*
* @param string $ecdhA
* @param string $ecdhB
* @return string
@ -544,7 +544,7 @@ namespace Sodium;
/**
* Authenticated secret-key encryption (encrypt)
* Xsals20 + Poly1305
*
*
* @param string $plaintext
* @param string $nonce
* @param string $key
@ -562,7 +562,7 @@ namespace Sodium;
/**
* Authenticated secret-key encryption (decrypt)
* Xsals20 + Poly1305
*
*
* @param string $ciphertext
* @param string $nonce
* @param string $key
@ -580,7 +580,7 @@ namespace Sodium;
/**
* A short keyed hash suitable for data structures
* SipHash-2-4
*
*
* @param string $message
* @param string $key
* @return string
@ -596,7 +596,7 @@ namespace Sodium;
/**
* Digital Signature
* Ed25519
*
*
* @param string $message
* @param string $secretkey
* @return string
@ -612,7 +612,7 @@ namespace Sodium;
/**
* Digital Signature (detached)
* Ed25519
*
*
* @param string $message
* @param string $secretkey
* @return string
@ -627,7 +627,7 @@ namespace Sodium;
/**
* Convert an Ed25519 public key to an X25519 public key
*
*
* @param string $sign_pk
* @return string
*/
@ -640,7 +640,7 @@ namespace Sodium;
/**
* Convert an Ed25519 secret key to an X25519 secret key
*
*
* @param string $sign_sk
* @return string
*/
@ -653,7 +653,7 @@ namespace Sodium;
/**
* Generate an Ed25519 keypair for use with the crypto_sign API
*
*
* @return string
*/
function crypto_sign_keypair(): string
@ -664,7 +664,7 @@ namespace Sodium;
/**
* Create an Ed25519 keypair from an Ed25519 secret key + Ed25519 public key
*
*
* @param string $secretkey
* @param string $publickey
* @return string
@ -679,7 +679,7 @@ namespace Sodium;
/**
* Verify a signed message and return the plaintext
*
*
* @param string $signed_message
* @param string $publickey
* @return string
@ -694,7 +694,7 @@ namespace Sodium;
/**
* Get the public key from an Ed25519 keypair
*
*
* @param string $keypair
* @return string
*/
@ -707,7 +707,7 @@ namespace Sodium;
/**
* Get the secret key from an Ed25519 keypair
*
*
* @param string $keypair
* @return string
*/
@ -720,7 +720,7 @@ namespace Sodium;
/**
* Derive an Ed25519 public key from an Ed25519 secret key
*
*
* @param string $secretkey
* @return string
*/
@ -733,7 +733,7 @@ namespace Sodium;
/**
* Derive an Ed25519 keypair for use with the crypto_sign API from a seed
*
*
* @param string $seed
* @return string
*/
@ -746,7 +746,7 @@ namespace Sodium;
/**
* Verify a detached signature
*
*
* @param string $signature
* @param string $msg
* @param string $publickey
@ -764,7 +764,7 @@ namespace Sodium;
/**
* Create a keystream from a key and nonce
* Xsalsa20
*
*
* @param int $length
* @param string $nonce
* @param string $key
@ -782,7 +782,7 @@ namespace Sodium;
/**
* Encrypt a message using a stream cipher
* Xsalsa20
*
*
* @param string $plaintext
* @param string $nonce
* @param string $key
@ -800,7 +800,7 @@ namespace Sodium;
/**
* Generate a string of random bytes
* /dev/urandom
*
*
* @param int $length
* @return string
*/
@ -814,7 +814,7 @@ namespace Sodium;
/**
* Generate a 16-bit integer
* /dev/urandom
*
*
* @return int
*/
function randombytes_random16(): string {
@ -824,7 +824,7 @@ namespace Sodium;
/**
* Generate an unbiased random integer between 0 and a specified value
* /dev/urandom
*
*
* @param int $upperBoundNonInclusive
* @return int
*/
@ -837,7 +837,7 @@ namespace Sodium;
/**
* Convert to hex without side-chanels
*
*
* @param string $binary
* @return string
*/
@ -850,7 +850,7 @@ namespace Sodium;
/**
* Compare two strings in constant time
*
*
* @param string $left
* @param string $right
* @return int
@ -865,7 +865,7 @@ namespace Sodium;
/**
* Convert from hex without side-chanels
*
*
* @param string $binary
* @return string
*/
@ -878,7 +878,7 @@ namespace Sodium;
/**
* Increment a string in little-endian
*
*
* @param string &$nonce
* @return string
*/
@ -890,7 +890,7 @@ namespace Sodium;
/**
* Add the right operand to the left
*
*
* @param string &$left
* @param string $right
*/
@ -919,7 +919,7 @@ namespace Sodium;
/**
* Compare two strings in constant time
*
*
* @param string $left
* @param string $right
* @return int
@ -934,7 +934,7 @@ namespace Sodium;
/**
* Wipe a buffer
*
*
* @param string &$nonce
*/
function memzero(
@ -945,7 +945,7 @@ namespace Sodium;
/**
* Get the version string
*
*
* @return string
*/
function version_string(): string {
@ -954,7 +954,7 @@ namespace Sodium;
/**
* Scalar multiplication of the base point and your key
*
*
* @param string $sk
* @return string
*/

View File

@ -9,7 +9,7 @@
class Lua {
/**
* @var string
*
*
* @link https://secure.php.net/manual/en/class.lua.php#lua.constants.lua-version
*/
const LUA_VERSION = '5.1.4';
@ -21,59 +21,59 @@ class Lua {
/**
* @link https://secure.php.net/manual/en/lua.assign.php
*
*
* @param string $name
* @param mixed $value
*
* @return $this|null Returns $this or NULL on failure.
*/
public function assign(string $name, $value) {}
/**
* @link https://secure.php.net/manual/en/lua.call.php
*
*
* @param callable $lua_func Function name in lua
* @param array $args Arguments passed to the Lua function
* @param bool $use_self Whether to use self
*
*
* @return mixed Returns result of the called function, null for wrong arguments or FALSE on other failure.
*/
public function call(callable $lua_func, array $args = [], bool $use_self = false) {}
/**
* @link https://secure.php.net/manual/en/lua.eval.php
*
* @param string $statements
*
*
* @param string $statements
*
* @return mixed Returns result of evaled code, NULL for wrong arguments or FALSE on other failure.
*/
public function eval(string $statements) {}
/**
* @link https://secure.php.net/manual/en/lua.include.php
*
*
* @param string $file
*
*
* @return mixed Returns result of included code, NULL for wrong arguments or FALSE on other failure.
*/
public function include(string $file) {}
/**
* @link https://secure.php.net/manual/en/lua.getversion.php
*
*
* @return string Returns Lua::LUA_VERSION
*/
public function getVersion(): string {}
/**
* @link https://secure.php.net/manual/en/lua.registercallback.php
*
*
* @param string $name
* @param callable $function A valid PHP function callback
*
*
* @return $this|null|false Returns $this, NULL for wrong arguments or FALSE on other failure.
*/
public function registerCallback(string $name, callable $function) {}
}
?>
?>

View File

@ -4984,4 +4984,3 @@ final class webObj
final public function updateFromString($snippet) {}
}

View File

@ -9,9 +9,9 @@
* The string being converted.
* </p>
* @param int $mode <p>
* The mode of the conversion. It can be one of
* MB_CASE_UPPER,
* MB_CASE_LOWER, or
* The mode of the conversion. It can be one of
* MB_CASE_UPPER,
* MB_CASE_LOWER, or
* MB_CASE_TITLE.
* </p>
* @param string $encoding [optional] &mbstring.encoding.parameter;
@ -52,14 +52,14 @@ function mb_strtolower ($str, $encoding = null) {}
* (UTF-8). mb_send_mail uses this setting to
* encode e-mail.
* </p>
* <p>
* <p>
* Language and its setting is ISO-2022-JP/Base64 for
* Japanese, UTF-8/Base64 for uni, ISO-8859-1/quoted printable for
* English.
* </p>
* @return bool|string If language is set and
* language is valid, it returns
* true. Otherwise, it returns false.
* true. Otherwise, it returns false.
* When language is omitted, it returns the language
* name as a string. If no language is set previously, it then returns
* false.
@ -70,14 +70,14 @@ function mb_language ($language = null) {}
* Set/Get internal character encoding
* @link https://php.net/manual/en/function.mb-internal-encoding.php
* @param string $encoding [optional] <p>
* encoding is the character encoding name
* used for the HTTP input character encoding conversion, HTTP output
* character encoding conversion, and the default character encoding
* encoding is the character encoding name
* used for the HTTP input character encoding conversion, HTTP output
* character encoding conversion, and the default character encoding
* for string functions defined by the mbstring module.
* </p>
* @return bool|string If encoding is set, then
* true on success or false on failure.
* If encoding is omitted, then
* If encoding is omitted, then
* the current character encoding name is returned.
*/
function mb_internal_encoding ($encoding = null) {}
@ -86,10 +86,10 @@ function mb_internal_encoding ($encoding = null) {}
* Detect HTTP input character encoding
* @link https://php.net/manual/en/function.mb-http-input.php
* @param string $type [optional] <p>
* Input string specifies the input type.
* Input string specifies the input type.
* "G" for GET, "P" for POST, "C" for COOKIE, "S" for string, "L" for list, and
* "I" for the whole list (will return array).
* If type is omitted, it returns the last input type processed.
* "I" for the whole list (will return array).
* If type is omitted, it returns the last input type processed.
* </p>
* @return false|string The character encoding name, as per the type.
* If mb_http_input does not process specified
@ -112,7 +112,7 @@ function mb_http_input ($type = null) {}
* </p>
* @return bool|string If encoding is omitted,
* mb_http_output returns the current HTTP output
* character encoding. Otherwise,
* character encoding. Otherwise,
* true on success or false on failure.
*/
function mb_http_output ($encoding = null) {}
@ -121,7 +121,7 @@ function mb_http_output ($encoding = null) {}
* Set/Get character encoding detection order
* @link https://php.net/manual/en/function.mb-detect-order.php
* @param mixed $encoding_list [optional] <p>
* encoding_list is an array or
* encoding_list is an array or
* comma separated list of character encoding. ("auto" is expanded to
* "ASCII, JIS, UTF-8, EUC-JP, SJIS")
* </p>
@ -142,7 +142,7 @@ function mb_http_output ($encoding = null) {}
* ASCII,
* EUC-JP,SJIS,
* eucJP-win, SJIS-win,
* JIS, ISO-2022-JP
* JIS, ISO-2022-JP
* <p>
* For ISO-8859-*, mbstring
* always detects as ISO-8859-*.
@ -331,7 +331,7 @@ function mb_strripos ($haystack, $needle, $offset = 0, $encoding = null) {}
* </p>
* @param bool $before_needle [optional] <p>
* Determines which portion of haystack
* this function returns.
* this function returns.
* If set to true, it returns all of haystack
* from the beginning to the first occurrence of needle.
* If set to false, it returns all of haystack
@ -358,7 +358,7 @@ function mb_strstr ($haystack, $needle, $before_needle = false, $encoding = null
* </p>
* @param bool $before_needle [optional] <p>
* Determines which portion of haystack
* this function returns.
* this function returns.
* If set to true, it returns all of haystack
* from the beginning to the last occurrence of needle.
* If set to false, it returns all of haystack
@ -412,7 +412,7 @@ function mb_stristr ($haystack, $needle, $before_needle = false, $encoding = nul
* </p>
* @param bool $before_needle [optional] <p>
* Determines which portion of haystack
* this function returns.
* this function returns.
* If set to true, it returns all of haystack
* from the beginning to the last occurrence of needle.
* If set to false, it returns all of haystack
@ -508,7 +508,7 @@ function mb_strwidth ($str, $encoding = null) {}
* The width of the desired trim.
* </p>
* @param string $trimmarker [optional] <p>
* A string that is added to the end of string
* A string that is added to the end of string
* when string is truncated.
* </p>
* @param string $encoding [optional] &mbstring.encoding.parameter;
@ -529,11 +529,11 @@ function mb_strimwidth ($str, $start, $width, $trimmarker = null, $encoding = nu
* @param string|string[] $from_encoding [optional] <p>
* Is specified by character code names before conversion. It is either
* an array, or a comma separated enumerated list.
* If from_encoding is not specified, the internal
* If from_encoding is not specified, the internal
* encoding will be used.
* </p>
* <p>
* "auto" may be used, which expands to
* "auto" may be used, which expands to
* "ASCII,JIS,UTF-8,EUC-JP,SJIS".
* </p>
* @return string The encoded string.
@ -749,7 +749,7 @@ function mb_decode_mimeheader ($str) {}
* @param string|string[] $from_encoding <p>
* from_encoding is specified as an array
* or comma separated string, it tries to detect encoding from
* from-coding. When from_encoding
* from-coding. When from_encoding
* is omitted, detect_order is used.
* </p>
* @param string|array|object $vars <p>
@ -835,7 +835,7 @@ function mb_send_mail ($to, $subject, $message, $additional_headers = null, $add
* If type isn't specified or is specified to
* "all", an array having the elements "internal_encoding",
* "http_output", "http_input", "func_overload", "mail_charset",
* "mail_header_encoding", "mail_body_encoding" will be returned.
* "mail_header_encoding", "mail_body_encoding" will be returned.
* </p>
* <p>
* If type is specified as "http_output",
@ -879,7 +879,7 @@ function mb_regex_encoding ($encoding = null) {}
* @param string $options [optional] <p>
* The options to set.
* </p>
* @return string The previous options. If options is omitted,
* @return string The previous options. If options is omitted,
* it returns the string that describes the current options.
*/
function mb_regex_set_options ($options = null) {}
@ -896,7 +896,7 @@ function mb_regex_set_options ($options = null) {}
* @param string[] $regs [optional] <p>
* Contains a substring of the matched string.
* </p>
* @return int
* @return int
*/
function mb_ereg ($pattern, $string, array &$regs = null) {}
@ -912,7 +912,7 @@ function mb_ereg ($pattern, $string, array &$regs = null) {}
* @param string[] $regs [optional] <p>
* Contains a substring of the matched string.
* </p>
* @return int
* @return int
*/
function mb_eregi ($pattern, $string, array &$regs = null) {}
@ -937,7 +937,7 @@ function mb_eregi ($pattern, $string, array &$regs = null) {}
* specified, white space will be ignored. If m
* is specified, match will be executed in multiline mode and line
* break will be included in '.'. If p is
* specified, match will be executed in POSIX mode, line break
* specified, match will be executed in POSIX mode, line break
* will be considered as normal character. If e
* is specified, replacement string will be
* evaluated as PHP expression.
@ -1019,7 +1019,7 @@ function mb_eregi_replace ($pattern, $replace, $string, $option = "msr") {}
* @param string $string <p>
* The string being split.
* </p>
* @param int $limit [optional] If optional parameter limit is specified,
* @param int $limit [optional] If optional parameter limit is specified,
* it will be split in limit elements as
* maximum.
* @return string[] The result as an array.
@ -1037,7 +1037,7 @@ function mb_split ($pattern, $string, $limit = null) {}
* </p>
* @param string $option [optional] <p>
* </p>
* @return bool
* @return bool
*/
function mb_ereg_match ($pattern, $string, $option = null) {}
@ -1050,7 +1050,7 @@ function mb_ereg_match ($pattern, $string, $option = null) {}
* @param string $option [optional] <p>
* The search option.
* </p>
* @return bool
* @return bool
*/
function mb_ereg_search ($pattern = null, $option = null) {}
@ -1099,7 +1099,7 @@ function mb_ereg_search_regs ($pattern = null, $option = null) {}
* @param string $option [optional] <p>
* The search option.
* </p>
* @return bool
* @return bool
*/
function mb_ereg_search_init ($string, $pattern = null, $option = null) {}
@ -1118,7 +1118,7 @@ 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
* @return int
* @deprecated 7.3
*/
function mb_ereg_search_getpos () {}

View File

@ -7,10 +7,10 @@
* @link https://php.net/manual/en/function.mcrypt-ecb.php
* @deprecated 5.5 https://secure.php.net/manual/en/migration55.deprecated.php
* @param string|int $cipher
* @param string $key
* @param string $data
* @param int $mode
* @return string
* @param string $key
* @param string $data
* @param int $mode
* @return string
* @removed 7.0
*/
function mcrypt_ecb ($cipher, $key, $data, $mode) {}
@ -20,11 +20,11 @@ function mcrypt_ecb ($cipher, $key, $data, $mode) {}
* @link https://php.net/manual/en/function.mcrypt-cbc.php
* @deprecated 5.5 https://secure.php.net/manual/en/migration55.deprecated.php
* @param int|string $cipher
* @param string $key
* @param string $data
* @param int $mode
* @param string $iv [optional]
* @return string
* @param string $key
* @param string $data
* @param int $mode
* @param string $iv [optional]
* @return string
* @removed 7.0
*/
function mcrypt_cbc ($cipher, $key, $data, $mode, $iv = null) {}
@ -34,11 +34,11 @@ function mcrypt_cbc ($cipher, $key, $data, $mode, $iv = null) {}
* @link https://php.net/manual/en/function.mcrypt-cfb.php
* @deprecated 5.5 https://secure.php.net/manual/en/migration55.deprecated.php
* @param int|string $cipher
* @param string $key
* @param string $data
* @param int $mode
* @param string $key
* @param string $data
* @param int $mode
* @param string $iv [optional]
* @return string
* @return string
* @removed 7.0
*/
function mcrypt_cfb ($cipher, $key, $data, $mode, $iv = null) {}
@ -48,11 +48,11 @@ function mcrypt_cfb ($cipher, $key, $data, $mode, $iv = null) {}
* @link https://php.net/manual/en/function.mcrypt-ofb.php
* @deprecated 5.5 https://secure.php.net/manual/en/migration55.deprecated.php
* @param int|string $cipher
* @param string $key
* @param string $data
* @param int $mode
* @param string $key
* @param string $data
* @param int $mode
* @param string $iv [optional]
* @return string
* @return string
* @removed 7.0
*/
function mcrypt_ofb ($cipher, $key, $data, $mode, $iv = null) {}
@ -62,7 +62,7 @@ function mcrypt_ofb ($cipher, $key, $data, $mode, $iv = null) {}
* @link https://php.net/manual/en/function.mcrypt-get-key-size.php
* @param int|string $cipher
* @param string $mode
* @return int
* @return int
* @deprecated 7.1
*/
function mcrypt_get_key_size ($cipher, $mode) {}
@ -331,7 +331,7 @@ function mcrypt_generic ($td, $data) {}
* @param string $data <p>
* Encrypted data.
* </p>
* @return string
* @return string
* @deprecated 7.1
*/
function mdecrypt_generic ($td, $data) {}
@ -339,7 +339,7 @@ function mdecrypt_generic ($td, $data) {}
/**
* This function terminates encryption
* @link https://php.net/manual/en/function.mcrypt-generic-end.php
* @param resource $td
* @param resource $td
* @return bool
* @deprecated 5.4 This function has been DEPRECATED as of PHP 5.4.0.
* @removed 7.0

View File

@ -387,7 +387,7 @@ function memcache_connect ($host, $port, $timeout = 1) {}
/**
* (PECL memcache >= 0.4.0)
* Memcache::pconnect Open memcached server persistent connection
*
*
* @link https://php.net/manual/en/memcache.pconnect.php#example-5242
* @param $host
* @param null $port

View File

@ -651,9 +651,9 @@ class Memcached {
* @link https://php.net/manual/en/memcached.constants.php
*/
const GET_PRESERVE_ORDER = 1;
/**
* A flag for <b>Memcached::get()</b>, <b>Memcached::getMulti()</b> and
* A flag for <b>Memcached::get()</b>, <b>Memcached::getMulti()</b> and
* <b>Memcached::getMultiByKey()</b> to ensure that the CAS token values are returned as well.
* @link https://php.net/manual/en/memcached.constants.php
*/

View File

@ -362,7 +362,7 @@ class SWFVideoStream {
* @param $threshold int <p>
* The Threshold. Lower is more accurate, hence larger file size.
* </p>
* @return void
* @return void
*/
function ming_setcubicthreshold ($threshold) {}
@ -372,7 +372,7 @@ function ming_setcubicthreshold ($threshold) {}
* @param $scale int <p>
* The scale to be set.
* </p>
* @return void
* @return void
*/
function ming_setscale ($scale) {}
@ -382,14 +382,14 @@ function ming_setscale ($scale) {}
* @param $version int <p>
* SWF version to use.
* </p>
* @return void
* @return void
*/
function ming_useswfversion ($version) {}
/**
* Returns the action flag for keyPress(char)
* @link https://php.net/manual/en/function.ming-keypress.php
* @param $char string
* @param $char string
* @return int What the function returns, first on success, then on failure. See
* also the &amp;return.success; entity
*/
@ -401,7 +401,7 @@ function ming_keypress ($char) {}
* @param $use int <p>
* Its description
* </p>
* @return void
* @return void
*/
function ming_useconstants ($use) {}
@ -409,10 +409,10 @@ function ming_useconstants ($use) {}
* Sets the SWF output compression
* @link https://php.net/manual/en/function.ming-setswfcompression.php
* @param $level int <p>
* The new compression level. Should be a value between 1 and 9
* The new compression level. Should be a value between 1 and 9
* inclusive.
* </p>
* @return void
* @return void
*/
function ming_setswfcompression ($level) {}

View File

@ -1238,7 +1238,7 @@ class MongoCollection {
/**
* @param mixed $keys
* @return string
* @return string
*/
protected static function toIndexString($keys) {}
@ -1561,7 +1561,7 @@ class MongoCursor implements Iterator {
* @link https://secure.php.net/manual/en/mongocursor.batchsize.php
*/
public function batchSize($batchSize){}
/**
* (PECL mongo >=1.5.0)
* Sets a server-side timeout for this query
@ -2038,7 +2038,7 @@ class MongoDate {
* @param int $usec Microseconds
*/
public function __construct($sec = 0, $usec = 0) {}
/**
* Returns a DateTime object representing this date
* @link https://php.net/manual/en/mongodate.todatetime.php
@ -2084,7 +2084,7 @@ class MongoBinData {
*/
const UUID_RFC4122 = 0x4;
/**
* MD5
* @link https://php.net/manual/en/class.mongobindata.php#mongobindata.constants.md5
@ -2628,4 +2628,3 @@ class MongoMaxKey {
class MongoMinKey {
}

View File

@ -71,8 +71,8 @@ namespace MongoDB {}
* @return WriteResult
* @throws InvalidArgumentException on argument parsing errors.
* @throws ConnectionException if connection to the server fails for other then authentication reasons
* @throws AuthenticationException if authentication is needed and fails
* @throws BulkWriteException on any write failure
* @throws AuthenticationException if authentication is needed and fails
* @throws BulkWriteException on any write failure
* @throws RuntimeException on other errors (invalid command, command arguments, ...)
* @since 1.4.0 added $options argument
*/

View File

@ -1487,4 +1487,3 @@ define('MQSERIES_MQSO_READ_AHEAD', 268435456);
define('MQSERIES_MQSTAT_TYPE_ASYNC_ERROR', 0);
define('MQSERIES_MQSTAT_TYPE_RECONNECTION', 1);
define('MQSERIES_MQSTAT_TYPE_RECONNECTION_ERROR', 2);

View File

@ -12,10 +12,10 @@
* hostname,port (Windows).
* </p>
* @param string $username [optional] <p>
* The username.
* The username.
* </p>
* @param string $password [optional] <p>
* The password.
* The password.
* </p>
* @param bool $new_link [optional] <p>
* If a second call is made to mssql_connect with the
@ -35,14 +35,14 @@ function mssql_connect ($servername = null, $username = null, $password = null,
* Open persistent MS SQL connection
* @link https://php.net/manual/en/function.mssql-pconnect.php
* @param string $servername [optional] <p>
* The MS SQL server. It can also include a port number. e.g.
* The MS SQL server. It can also include a port number. e.g.
* hostname:port.
* </p>
* @param string $username [optional] <p>
* The username.
* The username.
* </p>
* @param string $password [optional] <p>
* The password.
* The password.
* </p>
* @param bool $new_link [optional] <p>
* If a second call is made to mssql_pconnect with
@ -64,7 +64,7 @@ function mssql_pconnect ($servername = null, $username = null, $password = null,
* Close MS SQL Server connection
* @link https://php.net/manual/en/function.mssql-close.php
* @param resource $link_identifier [optional] <p>
* A MS SQL link identifier, returned by
* A MS SQL link identifier, returned by
* mssql_connect.
* </p>
* <p>
@ -91,8 +91,8 @@ function mssql_close ($link_identifier = null) {}
* also a reserved word (such as primary).
* </p>
* @param resource $link_identifier [optional] <p>
* A MS SQL link identifier, returned by
* mssql_connect or
* A MS SQL link identifier, returned by
* mssql_connect or
* mssql_pconnect.
* </p>
* <p>
@ -113,8 +113,8 @@ function mssql_select_db ($database_name, $link_identifier = null) {}
* An SQL query.
* </p>
* @param resource $link_identifier [optional] <p>
* A MS SQL link identifier, returned by
* mssql_connect or
* A MS SQL link identifier, returned by
* mssql_connect or
* mssql_pconnect.
* </p>
* <p>
@ -149,8 +149,8 @@ function mssql_fetch_batch ($result) {}
* Returns the number of records affected by the query
* @link https://php.net/manual/en/function.mssql-rows-affected.php
* @param resource $link_identifier <p>
* A MS SQL link identifier, returned by
* mssql_connect or
* A MS SQL link identifier, returned by
* mssql_connect or
* mssql_pconnect.
* </p>
* @return int the number of records affected by last operation.
@ -175,7 +175,7 @@ function mssql_free_result ($result) {}
* (PHP 4, PHP 5, PECL odbtp &gt;= 1.1.1)<br/>
* Returns the last message from the server
* @link https://php.net/manual/en/function.mssql-get-last-message.php
* @return string last error message from server, or an empty string if
* @return string last error message from server, or an empty string if
* no error messages are returned from MSSQL.
* @removed 7.0
*/
@ -252,7 +252,7 @@ function mssql_fetch_row ($result) {}
* </p>
* @param int $result_type [optional] <p>
* The type of array that is to be fetched. It's a constant and can take
* the following values: MSSQL_ASSOC,
* the following values: MSSQL_ASSOC,
* MSSQL_NUM, and
* MSSQL_BOTH.
* </p>
@ -343,10 +343,10 @@ function mssql_field_type ($result, $offset = -1) {}
* Moves internal row pointer
* @link https://php.net/manual/en/function.mssql-data-seek.php
* @param resource $result_identifier <p>
* The result resource that is being evaluated.
* The result resource that is being evaluated.
* </p>
* @param int $row_number <p>
* The desired row number of the new result pointer.
* The desired row number of the new result pointer.
* </p>
* @return bool true on success or false on failure.
* @removed 7.0
@ -388,8 +388,8 @@ function mssql_field_seek ($result, $field_offset) {}
* </p>
* <p>
* Specifying a numeric offset for the field
* argument is much quicker than specifying a
* fieldname or
* argument is much quicker than specifying a
* fieldname or
* tablename.fieldname argument.
* </p>
* @return string the contents of the specified cell.
@ -441,10 +441,10 @@ function mssql_min_message_severity ($severity) {}
* @link https://php.net/manual/en/function.mssql-init.php
* @param string $sp_name <p>
* Stored procedure name, like ownew.sp_name or
* otherdb.owner.sp_name.
* otherdb.owner.sp_name.
* </p>
* @param resource $link_identifier [optional] <p>
* A MS SQL link identifier, returned by
* A MS SQL link identifier, returned by
* mssql_connect.
* </p>
* @return resource a resource identifier "statement", used in subsequent calls to
@ -467,25 +467,25 @@ function mssql_init ($sp_name, $link_identifier = null) {}
* <p>
* You have to include the @ character, like in the
* T-SQL syntax. See the explanation included in
* mssql_execute.
* mssql_execute.
* </p>
* @param mixed $var <p>
* The PHP variable you'll bind the MSSQL parameter to. It is passed by
* reference, to retrieve OUTPUT and RETVAL values after
* the procedure execution.
* the procedure execution.
* </p>
* @param int $type <p>
* One of: SQLTEXT,
* One of: SQLTEXT,
* SQLVARCHAR, SQLCHAR,
* SQLINT1, SQLINT2,
* SQLINT4, SQLBIT,
* SQLFLT4, SQLFLT8,
* SQLFLTN.
* SQLFLTN.
* </p>
* @param bool $is_output [optional] <p>
* Whether the value is an OUTPUT parameter or not. If it's an OUTPUT
* parameter and you don't mention it, it will be treated as a normal
* input parameter and no error will be thrown.
* input parameter and no error will be thrown.
* </p>
* @param bool $is_null [optional] <p>
* Whether the parameter is null or not. Passing the null value as
@ -493,7 +493,7 @@ function mssql_init ($sp_name, $link_identifier = null) {}
* </p>
* @param int $maxlen [optional] <p>
* Used with char/varchar values. You have to indicate the length of the
* data so if the parameter is a varchar(50), the type must be
* data so if the parameter is a varchar(50), the type must be
* SQLVARCHAR and this value 50.
* </p>
* @return bool true on success or false on failure.
@ -506,7 +506,7 @@ function mssql_bind ($stmt, $param_name, &$var, $type, $is_output = false, $is_n
* Executes a stored procedure on a MS SQL server database
* @link https://php.net/manual/en/function.mssql-execute.php
* @param resource $stmt <p>
* Statement handle obtained with mssql_init.
* Statement handle obtained with mssql_init.
* </p>
* @param bool $skip_results [optional] <p>
* Whenever to skip the results or not.
@ -545,49 +545,49 @@ function mssql_guid_string ($binary, $short_format = null) {}
/**
* Return an associative array. Used on
* mssql_fetch_array's
* Return an associative array. Used on
* mssql_fetch_array's
* result_type parameter.
* @link https://php.net/manual/en/mssql.constants.php
*/
define ('MSSQL_ASSOC', 1);
/**
* Return an array with numeric keys. Used on
* mssql_fetch_array's
* Return an array with numeric keys. Used on
* mssql_fetch_array's
* result_type parameter.
* @link https://php.net/manual/en/mssql.constants.php
*/
define ('MSSQL_NUM', 2);
/**
* Return an array with both numeric keys and
* keys with their field name. This is the
* default value for mssql_fetch_array's
* Return an array with both numeric keys and
* keys with their field name. This is the
* default value for mssql_fetch_array's
* result_type parameter.
* @link https://php.net/manual/en/mssql.constants.php
*/
define ('MSSQL_BOTH', 3);
/**
* Indicates the 'TEXT' type in MSSQL, used by
* mssql_bind's type
* Indicates the 'TEXT' type in MSSQL, used by
* mssql_bind's type
* parameter.
* @link https://php.net/manual/en/mssql.constants.php
*/
define ('SQLTEXT', 35);
/**
* Indicates the 'VARCHAR' type in MSSQL, used by
* mssql_bind's type
* Indicates the 'VARCHAR' type in MSSQL, used by
* mssql_bind's type
* parameter.
* @link https://php.net/manual/en/mssql.constants.php
*/
define ('SQLVARCHAR', 39);
/**
* Indicates the 'CHAR' type in MSSQL, used by
* mssql_bind's type
* Indicates the 'CHAR' type in MSSQL, used by
* mssql_bind's type
* parameter.
* @link https://php.net/manual/en/mssql.constants.php
*/
@ -600,22 +600,22 @@ define ('SQLCHAR', 47);
define ('SQLINT1', 48);
/**
* Represents two bytes, with a range of -32768
* Represents two bytes, with a range of -32768
* to 32767.
* @link https://php.net/manual/en/mssql.constants.php
*/
define ('SQLINT2', 52);
/**
* Represents four bytes, with a range of -2147483648
* Represents four bytes, with a range of -2147483648
* to 2147483647.
* @link https://php.net/manual/en/mssql.constants.php
*/
define ('SQLINT4', 56);
/**
* Indicates the 'BIT' type in MSSQL, used by
* mssql_bind's type
* Indicates the 'BIT' type in MSSQL, used by
* mssql_bind's type
* parameter.
* @link https://php.net/manual/en/mssql.constants.php
*/

View File

@ -8,13 +8,13 @@
* Open a connection to a MySQL Server
* @link https://php.net/manual/en/function.mysql-connect.php
* @param string $server [optional] <p>
* The MySQL server. It can also include a port number. e.g.
* "hostname:port" or a path to a local socket e.g. ":/path/to/socket" for
* The MySQL server. It can also include a port number. e.g.
* "hostname:port" or a path to a local socket e.g. ":/path/to/socket" for
* the localhost.
* </p>
* <p>
* If the PHP directive
* mysql.default_host is undefined (default), then the default
* If the PHP directive
* mysql.default_host is undefined (default), then the default
* value is 'localhost:3306'. In &sqlsafemode;, this parameter is ignored
* and value 'localhost:3306' is always used.
* </p>
@ -58,13 +58,13 @@ function mysql_connect ($server = 'ini_get("mysql.default_host")', $username = '
* Open a persistent connection to a MySQL server
* @link https://php.net/manual/en/function.mysql-pconnect.php
* @param string $server [optional] <p>
* The MySQL server. It can also include a port number. e.g.
* "hostname:port" or a path to a local socket e.g. ":/path/to/socket" for
* The MySQL server. It can also include a port number. e.g.
* "hostname:port" or a path to a local socket e.g. ":/path/to/socket" for
* the localhost.
* </p>
* <p>
* If the PHP directive
* mysql.default_host is undefined (default), then the default
* If the PHP directive
* mysql.default_host is undefined (default), then the default
* value is 'localhost:3306'
* </p>
* @param string $username [optional] <p>
@ -93,7 +93,7 @@ function mysql_pconnect ($server = 'ini_get("mysql.default_host")', $username =
* @deprecated 5.5
* Close MySQL connection
* @link https://php.net/manual/en/function.mysql-close.php
* @param resource $link_identifier [optional]
* @param resource $link_identifier [optional]
* @return bool true on success or false on failure.
* @removed 7.0
*/
@ -106,7 +106,7 @@ function mysql_close ($link_identifier = null) {}
* @param string $database_name <p>
* The name of the database that is to be selected.
* </p>
* @param resource $link_identifier [optional]
* @param resource $link_identifier [optional]
* @return bool true on success or false on failure.
* @removed 7.0
*/
@ -123,7 +123,7 @@ function mysql_select_db ($database_name, $link_identifier = null) {}
* The query string should not end with a semicolon.
* Data inside the query should be properly escaped.
* </p>
* @param resource $link_identifier [optional]
* @param resource $link_identifier [optional]
* @return resource|bool For SELECT, SHOW, DESCRIBE, EXPLAIN and other statements returning resultset,
* <b>mysql_query</b>
* returns a resource on success, or false on
@ -164,7 +164,7 @@ function mysql_query ($query, $link_identifier = null) {}
* <p>
* Data inside the query should be properly escaped.
* </p>
* @param resource $link_identifier [optional]
* @param resource $link_identifier [optional]
* @return resource For SELECT, SHOW, DESCRIBE or EXPLAIN statements,
* <b>mysql_unbuffered_query</b>
* returns a resource on success, or false on
@ -191,7 +191,7 @@ function mysql_unbuffered_query ($query, $link_identifier = null) {}
* <p>
* Data inside the query should be properly escaped.
* </p>
* @param resource $link_identifier [optional]
* @param resource $link_identifier [optional]
* @return resource a positive MySQL result resource to the query result,
* or false on error. The function also returns true/false for
* INSERT/UPDATE/DELETE
@ -203,10 +203,10 @@ function mysql_db_query ($database, $query, $link_identifier = null) {}
/**
* List databases available on a MySQL server
* @link https://php.net/manual/en/function.mysql-list-dbs.php
* @param resource $link_identifier [optional]
* @param resource $link_identifier [optional]
* @return resource|false a result pointer resource on success, or false on
* failure. Use the <b>mysql_tablename</b> function to traverse
* this result pointer, or any function for result tables, such as
* this result pointer, or any function for result tables, such as
* <b>mysql_fetch_array</b>.
* @deprecated 5.4
* @removed 7.0
@ -219,7 +219,7 @@ function mysql_list_dbs ($link_identifier = null) {}
* @param string $database <p>
* The name of the database
* </p>
* @param resource $link_identifier [optional]
* @param resource $link_identifier [optional]
* @return resource|false A result pointer resource on success or false on failure.
* </p>
* <p>
@ -241,7 +241,7 @@ function mysql_list_tables ($database, $link_identifier = null) {}
* @param string $table_name <p>
* The name of the table that's being queried.
* </p>
* @param resource $link_identifier [optional]
* @param resource $link_identifier [optional]
* @return resource|false A result pointer resource on success, or false on
* failure.
* </p>
@ -258,7 +258,7 @@ function mysql_list_fields ($database_name, $table_name, $link_identifier = null
* @deprecated 5.5
* List MySQL processes
* @link https://php.net/manual/en/function.mysql-list-processes.php
* @param resource $link_identifier [optional]
* @param resource $link_identifier [optional]
* @return resource|false A result pointer resource on success or false on failure.
* @removed 7.0
*/
@ -268,7 +268,7 @@ function mysql_list_processes ($link_identifier = null) {}
* @deprecated 5.5
* Returns the text of the error message from previous MySQL operation
* @link https://php.net/manual/en/function.mysql-error.php
* @param resource $link_identifier [optional]
* @param resource $link_identifier [optional]
* @return string the error text from the last MySQL function, or
* '' (empty string) if no error occurred.
* @removed 7.0
@ -279,7 +279,7 @@ function mysql_error ($link_identifier = null) {}
* @deprecated 5.5
* Returns the numerical value of the error message from previous MySQL operation
* @link https://php.net/manual/en/function.mysql-errno.php
* @param resource $link_identifier [optional]
* @param resource $link_identifier [optional]
* @return int the error number from the last MySQL function, or
* 0 (zero) if no error occurred.
* @removed 7.0
@ -290,7 +290,7 @@ function mysql_errno ($link_identifier = null) {}
* @deprecated 5.5
* Get number of affected rows in previous MySQL operation
* @link https://php.net/manual/en/function.mysql-affected-rows.php
* @param resource $link_identifier [optional]
* @param resource $link_identifier [optional]
* @return int the number of affected rows on success, and -1 if the last query
* failed.
* </p>
@ -300,15 +300,15 @@ function mysql_errno ($link_identifier = null) {}
* function will return zero with MySQL versions prior to 4.1.2.
* </p>
* <p>
* When using UPDATE, MySQL will not update columns where the new value is the
* same as the old value. This creates the possibility that
* When using UPDATE, MySQL will not update columns where the new value is the
* same as the old value. This creates the possibility that
* <b>mysql_affected_rows</b> may not actually equal the number
* of rows matched, only the number of rows that were literally affected by
* of rows matched, only the number of rows that were literally affected by
* the query.
* </p>
* <p>
* The REPLACE statement first deletes the record with the same primary key
* and then inserts the new record. This function returns the number of
* 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.
* @removed 7.0
*/
@ -318,8 +318,8 @@ function mysql_affected_rows ($link_identifier = null) {}
* @deprecated 5.5
* Get the ID generated in the last query
* @link https://php.net/manual/en/function.mysql-insert-id.php
* @param resource $link_identifier [optional]
* @return int The ID generated for an AUTO_INCREMENT column by the previous
* @param resource $link_identifier [optional]
* @return int The ID generated for an AUTO_INCREMENT column by the previous
* query on success, 0 if the previous
* query does not generate an AUTO_INCREMENT value, or false if
* no MySQL connection was established.
@ -331,21 +331,21 @@ function mysql_insert_id ($link_identifier = null) {}
* @deprecated 5.5
* Get result data
* @link https://php.net/manual/en/function.mysql-result.php
* @param resource $result
* @param resource $result
* @param int $row <p>
* The row number from the result that's being retrieved. Row numbers
* The row number from the result that's being retrieved. Row numbers
* start at 0.
* </p>
* @param mixed $field [optional] <p>
* The name or offset of the field being retrieved.
* </p>
* <p>
* It can be the field's offset, the field's name, or the field's table
* It can be the field's offset, the field's name, or the field's table
* dot field name (tablename.fieldname). If the column name has been
* aliased ('select foo as bar from...'), use the alias instead of the
* aliased ('select foo as bar from...'), use the alias instead of the
* column name. If undefined, the first field is retrieved.
* </p>
* @return string The contents of one cell from a MySQL result set on success, or
* @return string The contents of one cell from a MySQL result set on success, or
* false on failure.
* @removed 7.0
*/
@ -365,7 +365,7 @@ function mysql_num_rows ($result) {}
* @deprecated 5.5
* Get number of fields in result
* @link https://php.net/manual/en/function.mysql-num-fields.php
* @param resource $result
* @param resource $result
* @return int the number of fields in the result set resource on
* success or false on failure.
* @removed 7.0
@ -376,8 +376,8 @@ function mysql_num_fields ($result) {}
* @deprecated 5.5
* Get a result row as an enumerated array
* @link https://php.net/manual/en/function.mysql-fetch-row.php
* @param resource $result
* @return array an numerical array of strings that corresponds to the fetched row, or
* @param resource $result
* @return array an numerical array of strings that corresponds to the fetched row, or
* false if there are no more rows.
* </p>
* <p>
@ -393,7 +393,7 @@ function mysql_fetch_row ($result) {}
* @deprecated 5.5
* Fetch a result row as an associative array, a numeric array, or both
* @link https://php.net/manual/en/function.mysql-fetch-array.php
* @param resource $result
* @param resource $result
* @param int $result_type [optional] <p>
* The type of array that is to be fetched. It's a constant and can
* take the following values: <b>MYSQL_ASSOC</b>,
@ -423,8 +423,8 @@ function mysql_fetch_array ($result, $result_type = MYSQL_BOTH) {}
* @deprecated 5.5
* Fetch a result row as an associative array
* @link https://php.net/manual/en/function.mysql-fetch-assoc.php
* @param resource $result
* @return array an associative array of strings that corresponds to the fetched row, or
* @param resource $result
* @return array an associative array of strings that corresponds to the fetched row, or
* false if there are no more rows.
* </p>
* <p>
@ -443,7 +443,7 @@ function mysql_fetch_assoc ($result) {}
* @deprecated 5.5
* Fetch a result row as an object
* @link https://php.net/manual/en/function.mysql-fetch-object.php
* @param resource $result
* @param resource $result
* @param string $class_name [optional] <p>
* The name of the class to instantiate, set the properties of and return.
* If not specified, a <b>stdClass</b> object is returned.
@ -468,7 +468,7 @@ function mysql_fetch_object ($result, $class_name = 'stdClass', array $params =
* @deprecated 5.5
* Move internal result pointer
* @link https://php.net/manual/en/function.mysql-data-seek.php
* @param resource $result
* @param resource $result
* @param int $row_number <p>
* The desired row number of the new result pointer.
* </p>
@ -481,7 +481,7 @@ function mysql_data_seek ($result, $row_number) {}
* @deprecated 5.5
* Get the length of each output in a result
* @link https://php.net/manual/en/function.mysql-fetch-lengths.php
* @param resource $result
* @param resource $result
* @return array|false An array of lengths on success or false on failure.
* @removed 7.0
*/
@ -491,13 +491,13 @@ function mysql_fetch_lengths ($result) {}
* @deprecated 5.5
* Get column information from a result and return as an object
* @link https://php.net/manual/en/function.mysql-fetch-field.php
* @param resource $result
* @param resource $result
* @param int $field_offset [optional] <p>
* The numerical field offset. If the field offset is not specified, the
* next field that was not yet retrieved by this function is retrieved.
* The numerical field offset. If the field offset is not specified, the
* next field that was not yet retrieved by this function is retrieved.
* The <i>field_offset</i> starts at 0.
* </p>
* @return object an object containing field information. The properties
* @return object an object containing field information. The properties
* of the object are:
* </p>
* <p>
@ -522,8 +522,8 @@ function mysql_fetch_field ($result, $field_offset = 0) {}
* @deprecated 5.5
* Set result pointer to a specified field offset
* @link https://php.net/manual/en/function.mysql-field-seek.php
* @param resource $result
* @param int $field_offset
* @param resource $result
* @param int $field_offset
* @return bool true on success or false on failure.
* @removed 7.0
*/
@ -533,7 +533,7 @@ function mysql_field_seek ($result, $field_offset) {}
* @deprecated 5.5
* Free result memory
* @link https://php.net/manual/en/function.mysql-free-result.php
* @param resource $result
* @param resource $result
* @return bool true on success or false on failure.
* </p>
* <p>
@ -549,8 +549,8 @@ function mysql_free_result ($result) {}
* @deprecated 5.5
* Get the name of the specified field in a result
* @link https://php.net/manual/en/function.mysql-field-name.php
* @param resource $result
* @param int $field_offset
* @param resource $result
* @param int $field_offset
* @return string|false The name of the specified field index on success or false on failure.
* @removed 7.0
*/
@ -560,8 +560,8 @@ function mysql_field_name ($result, $field_offset) {}
* @deprecated 5.5
* Get name of the table the specified field is in
* @link https://php.net/manual/en/function.mysql-field-table.php
* @param resource $result
* @param int $field_offset
* @param resource $result
* @param int $field_offset
* @return string The name of the table on success.
* @removed 7.0
*/
@ -571,8 +571,8 @@ function mysql_field_table ($result, $field_offset) {}
* @deprecated 5.5
* Returns the length of the specified field
* @link https://php.net/manual/en/function.mysql-field-len.php
* @param resource $result
* @param int $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.
* @removed 7.0
*/
@ -582,10 +582,10 @@ function mysql_field_len ($result, $field_offset) {}
* @deprecated 5.5
* Get the type of the specified field in a result
* @link https://php.net/manual/en/function.mysql-field-type.php
* @param resource $result
* @param int $field_offset
* @param resource $result
* @param int $field_offset
* @return string The returned field type
* will be one of "int", "real",
* will be one of "int", "real",
* "string", "blob", and others as
* detailed in the MySQL
* documentation.
@ -597,17 +597,17 @@ function mysql_field_type ($result, $field_offset) {}
* @deprecated 5.5
* Get the flags associated with the specified field in a result
* @link https://php.net/manual/en/function.mysql-field-flags.php
* @param resource $result
* @param int $field_offset
* @param resource $result
* @param int $field_offset
* @return string|false a string of flags associated with the result or false on failure.
* </p>
* <p>
* The following flags are reported, if your version of MySQL
* is current enough to support them: "not_null",
* "primary_key", "unique_key",
* "multiple_key", "blob",
* is current enough to support them: "not_null",
* "primary_key", "unique_key",
* "multiple_key", "blob",
* "unsigned", "zerofill",
* "binary", "enum",
* "binary", "enum",
* "auto_increment" and "timestamp".
* @removed 7.0
*/
@ -632,7 +632,7 @@ function mysql_escape_string ($unescaped_string) {}
* @param string $unescaped_string <p>
* The string that is to be escaped.
* </p>
* @param resource $link_identifier [optional]
* @param resource $link_identifier [optional]
* @return string|false the escaped string, or false on error.
* @removed 7.0
*/
@ -642,10 +642,10 @@ function mysql_real_escape_string ($unescaped_string, $link_identifier = null) {
* @deprecated 5.5
* Get current system status
* @link https://php.net/manual/en/function.mysql-stat.php
* @param resource $link_identifier [optional]
* @return string a string with the status for uptime, threads, queries, open tables,
* flush tables and queries per second. For a complete list of other status
* variables, you have to use the SHOW STATUS SQL command.
* @param resource $link_identifier [optional]
* @return string a string with the status for uptime, threads, queries, open tables,
* 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.
* @removed 7.0
*/
@ -655,7 +655,7 @@ function mysql_stat ($link_identifier = null) {}
* @deprecated 5.5
* Return the current thread ID
* @link https://php.net/manual/en/function.mysql-thread-id.php
* @param resource $link_identifier [optional]
* @param resource $link_identifier [optional]
* @return int|false The thread ID on success or false on failure.
* @removed 7.0
*/
@ -665,7 +665,7 @@ function mysql_thread_id ($link_identifier = null) {}
* @deprecated 5.5
* Returns the name of the character set
* @link https://php.net/manual/en/function.mysql-client-encoding.php
* @param resource $link_identifier [optional]
* @param resource $link_identifier [optional]
* @return string the default character set name for the current connection.
* @removed 7.0
*/
@ -675,8 +675,8 @@ function mysql_client_encoding ($link_identifier = null) {}
* @deprecated 5.5
* Ping a server connection or reconnect if there is no connection
* @link https://php.net/manual/en/function.mysql-ping.php
* @param resource $link_identifier [optional]
* @return bool true if the connection to the server MySQL server is working,
* @param resource $link_identifier [optional]
* @return bool true if the connection to the server MySQL server is working,
* otherwise false.
* @removed 7.0
*/
@ -695,8 +695,8 @@ function mysql_get_client_info () {}
* @deprecated 5.5
* Get MySQL host info
* @link https://php.net/manual/en/function.mysql-get-host-info.php
* @param resource $link_identifier [optional]
* @return string a string describing the type of MySQL connection in use for the
* @param resource $link_identifier [optional]
* @return string a string describing the type of MySQL connection in use for the
* connection or false on failure.
* @removed 7.0
*/
@ -706,7 +706,7 @@ function mysql_get_host_info ($link_identifier = null) {}
* @deprecated 5.5
* Get MySQL protocol info
* @link https://php.net/manual/en/function.mysql-get-proto-info.php
* @param resource $link_identifier [optional]
* @param resource $link_identifier [optional]
* @return int|false the MySQL protocol on success or false on failure.
* @removed 7.0
*/
@ -716,7 +716,7 @@ function mysql_get_proto_info ($link_identifier = null) {}
* @deprecated 5.5
* Get MySQL server info
* @link https://php.net/manual/en/function.mysql-get-server-info.php
* @param resource $link_identifier [optional]
* @param resource $link_identifier [optional]
* @return string|false the MySQL server version on success or false on failure.
* @removed 7.0
*/
@ -726,10 +726,10 @@ function mysql_get_server_info ($link_identifier = null) {}
* @deprecated 5.5
* Get information about the most recent query
* @link https://php.net/manual/en/function.mysql-info.php
* @param resource $link_identifier [optional]
* @param resource $link_identifier [optional]
* @return string|false information about the statement on success, or false on
* failure. See the example below for which statements provide information,
* and what the returned value may look like. Statements that are not listed
* and what the returned value may look like. Statements that are not listed
* will return false.
* @removed 7.0
*/
@ -742,7 +742,7 @@ function mysql_info ($link_identifier = null) {}
* @param string $charset <p>
* A valid character set name.
* </p>
* @param resource $link_identifier [optional]
* @param resource $link_identifier [optional]
* @return bool true on success or false on failure.
* @since 5.2.3
* @removed 7.0
@ -889,7 +889,7 @@ function mysql_dbname ($result, $row, $field) {}
* Get table name of field
* @link https://php.net/manual/en/function.mysql-tablename.php
* @param resource $result <p>
* A result pointer resource that's returned from
* A result pointer resource that's returned from
* <b>mysql_list_tables</b>.
* </p>
* @param int $i <p>

View File

@ -7,7 +7,7 @@
* @link https://php.net/manual/en/function.ncurses-addch.php
* @param $ch int <p>
* </p>
* @return int
* @return int
*/
function ncurses_addch ($ch) {}
@ -16,7 +16,7 @@ function ncurses_addch ($ch) {}
* @link https://php.net/manual/en/function.ncurses-color-set.php
* @param $pair int <p>
* </p>
* @return int
* @return int
*/
function ncurses_color_set ($pair) {}
@ -25,21 +25,21 @@ function ncurses_color_set ($pair) {}
* @link https://php.net/manual/en/function.ncurses-delwin.php
* @param $window resource <p>
* </p>
* @return bool
* @return bool
*/
function ncurses_delwin ($window) {}
/**
* Stop using ncurses, clean up the screen
* @link https://php.net/manual/en/function.ncurses-end.php
* @return int
* @return int
*/
function ncurses_end () {}
/**
* Read a character from keyboard
* @link https://php.net/manual/en/function.ncurses-getch.php
* @return int
* @return int
*/
function ncurses_getch () {}
@ -68,7 +68,7 @@ function ncurses_init () {}
* </p>
* @param $bg int <p>
* </p>
* @return int
* @return int
*/
function ncurses_init_pair ($pair, $fg, $bg) {}
@ -83,7 +83,7 @@ function ncurses_init_pair ($pair, $fg, $bg) {}
* </p>
* @param $b int <p>
* </p>
* @return int
* @return int
*/
function ncurses_color_content ($color, &$r, &$g, &$b) {}
@ -96,7 +96,7 @@ function ncurses_color_content ($color, &$r, &$g, &$b) {}
* </p>
* @param $b int <p>
* </p>
* @return int
* @return int
*/
function ncurses_pair_content ($pair, &$f, &$b) {}
@ -107,7 +107,7 @@ function ncurses_pair_content ($pair, &$f, &$b) {}
* </p>
* @param $x int <p>
* </p>
* @return int
* @return int
*/
function ncurses_move ($y, $x) {}
@ -136,42 +136,42 @@ function ncurses_newwin ($rows, $cols, $y, $x) {}
* @link https://php.net/manual/en/function.ncurses-refresh.php
* @param $ch int <p>
* </p>
* @return int
* @return int
*/
function ncurses_refresh ($ch) {}
/**
* Start using colors
* @link https://php.net/manual/en/function.ncurses-start-color.php
* @return int
* @return int
*/
function ncurses_start_color () {}
/**
* Start using 'standout' attribute
* @link https://php.net/manual/en/function.ncurses-standout.php
* @return int
* @return int
*/
function ncurses_standout () {}
/**
* Stop using 'standout' attribute
* @link https://php.net/manual/en/function.ncurses-standend.php
* @return int
* @return int
*/
function ncurses_standend () {}
/**
* Returns baudrate of terminal
* @link https://php.net/manual/en/function.ncurses-baudrate.php
* @return int
* @return int
*/
function ncurses_baudrate () {}
/**
* Let the terminal beep
* @link https://php.net/manual/en/function.ncurses-beep.php
* @return int
* @return int
*/
function ncurses_beep () {}
@ -227,7 +227,7 @@ function ncurses_def_prog_mode () {}
/**
* Resets the prog mode saved by def_prog_mode
* @link https://php.net/manual/en/function.ncurses-reset-prog-mode.php
* @return int
* @return int
*/
function ncurses_reset_prog_mode () {}
@ -242,7 +242,7 @@ function ncurses_def_shell_mode () {}
/**
* Resets the shell mode saved by def_shell_mode
* @link https://php.net/manual/en/function.ncurses-reset-shell-mode.php
* @return int
* @return int
*/
function ncurses_reset_shell_mode () {}
@ -291,7 +291,7 @@ function ncurses_erase () {}
* @link https://php.net/manual/en/function.ncurses-werase.php
* @param $window resource <p>
* </p>
* @return int
* @return int
*/
function ncurses_werase ($window) {}
@ -348,7 +348,7 @@ function ncurses_inch () {}
/**
* Insert a line, move rest of screen down
* @link https://php.net/manual/en/function.ncurses-insertln.php
* @return int
* @return int
*/
function ncurses_insertln () {}
@ -373,7 +373,7 @@ function ncurses_killchar () {}
/**
* Translate newline and carriage return / line feed
* @link https://php.net/manual/en/function.ncurses-nl.php
* @return bool
* @return bool
*/
function ncurses_nl () {}
@ -396,7 +396,7 @@ function ncurses_noecho () {}
/**
* Do not translate newline and carriage return / line feed
* @link https://php.net/manual/en/function.ncurses-nonl.php
* @return bool
* @return bool
*/
function ncurses_nonl () {}
@ -423,7 +423,7 @@ function ncurses_raw () {}
* </p>
* @param $bit8 bool <p>
* </p>
* @return int
* @return int
*/
function ncurses_meta ($window, $bit8) {}
@ -446,14 +446,14 @@ function ncurses_savetty () {}
/**
* Returns a logical OR of all attribute flags supported by terminal
* @link https://php.net/manual/en/function.ncurses-termattrs.php
* @return bool
* @return bool
*/
function ncurses_termattrs () {}
/**
* Assign terminal default colors to color id -1
* @link https://php.net/manual/en/function.ncurses-use-default-colors.php
* @return bool
* @return bool
*/
function ncurses_use_default_colors () {}
@ -476,28 +476,28 @@ function ncurses_slk_clear () {}
/**
* Copies soft label keys to virtual screen
* @link https://php.net/manual/en/function.ncurses-slk-noutrefresh.php
* @return bool
* @return bool
*/
function ncurses_slk_noutrefresh () {}
/**
* Copies soft label keys to screen
* @link https://php.net/manual/en/function.ncurses-slk-refresh.php
* @return int
* @return int
*/
function ncurses_slk_refresh () {}
/**
* Restores soft label keys
* @link https://php.net/manual/en/function.ncurses-slk-restore.php
* @return int
* @return int
*/
function ncurses_slk_restore () {}
/**
* Forces output when ncurses_slk_noutrefresh is performed
* @link https://php.net/manual/en/function.ncurses-slk-touch.php
* @return int
* @return int
*/
function ncurses_slk_touch () {}
@ -506,7 +506,7 @@ function ncurses_slk_touch () {}
* @link https://php.net/manual/en/function.ncurses-attroff.php
* @param $attributes int <p>
* </p>
* @return int
* @return int
*/
function ncurses_attroff ($attributes) {}
@ -515,7 +515,7 @@ function ncurses_attroff ($attributes) {}
* @link https://php.net/manual/en/function.ncurses-attron.php
* @param $attributes int <p>
* </p>
* @return int
* @return int
*/
function ncurses_attron ($attributes) {}
@ -524,7 +524,7 @@ function ncurses_attron ($attributes) {}
* @link https://php.net/manual/en/function.ncurses-attrset.php
* @param $attributes int <p>
* </p>
* @return int
* @return int
*/
function ncurses_attrset ($attributes) {}
@ -533,7 +533,7 @@ function ncurses_attrset ($attributes) {}
* @link https://php.net/manual/en/function.ncurses-bkgd.php
* @param $attrchar int <p>
* </p>
* @return int
* @return int
*/
function ncurses_bkgd ($attrchar) {}
@ -542,7 +542,7 @@ function ncurses_bkgd ($attrchar) {}
* @link https://php.net/manual/en/function.ncurses-curs-set.php
* @param $visibility int <p>
* </p>
* @return int
* @return int
*/
function ncurses_curs_set ($visibility) {}
@ -551,7 +551,7 @@ function ncurses_curs_set ($visibility) {}
* @link https://php.net/manual/en/function.ncurses-delay-output.php
* @param $milliseconds int <p>
* </p>
* @return int
* @return int
*/
function ncurses_delay_output ($milliseconds) {}
@ -560,7 +560,7 @@ function ncurses_delay_output ($milliseconds) {}
* @link https://php.net/manual/en/function.ncurses-echochar.php
* @param $character int <p>
* </p>
* @return int
* @return int
*/
function ncurses_echochar ($character) {}
@ -569,7 +569,7 @@ function ncurses_echochar ($character) {}
* @link https://php.net/manual/en/function.ncurses-halfdelay.php
* @param $tenth int <p>
* </p>
* @return int
* @return int
*/
function ncurses_halfdelay ($tenth) {}
@ -578,7 +578,7 @@ function ncurses_halfdelay ($tenth) {}
* @link https://php.net/manual/en/function.ncurses-has-key.php
* @param $keycode int <p>
* </p>
* @return int
* @return int
*/
function ncurses_has_key ($keycode) {}
@ -587,7 +587,7 @@ function ncurses_has_key ($keycode) {}
* @link https://php.net/manual/en/function.ncurses-insch.php
* @param $character int <p>
* </p>
* @return int
* @return int
*/
function ncurses_insch ($character) {}
@ -596,7 +596,7 @@ function ncurses_insch ($character) {}
* @link https://php.net/manual/en/function.ncurses-insdelln.php
* @param $count int <p>
* </p>
* @return int
* @return int
*/
function ncurses_insdelln ($count) {}
@ -605,7 +605,7 @@ function ncurses_insdelln ($count) {}
* @link https://php.net/manual/en/function.ncurses-mouseinterval.php
* @param $milliseconds int <p>
* </p>
* @return int
* @return int
*/
function ncurses_mouseinterval ($milliseconds) {}
@ -614,7 +614,7 @@ function ncurses_mouseinterval ($milliseconds) {}
* @link https://php.net/manual/en/function.ncurses-napms.php
* @param $milliseconds int <p>
* </p>
* @return int
* @return int
*/
function ncurses_napms ($milliseconds) {}
@ -623,7 +623,7 @@ function ncurses_napms ($milliseconds) {}
* @link https://php.net/manual/en/function.ncurses-scrl.php
* @param $count int <p>
* </p>
* @return int
* @return int
*/
function ncurses_scrl ($count) {}
@ -632,7 +632,7 @@ function ncurses_scrl ($count) {}
* @link https://php.net/manual/en/function.ncurses-slk-attroff.php
* @param $intarg int <p>
* </p>
* @return int
* @return int
*/
function ncurses_slk_attroff ($intarg) {}
@ -641,7 +641,7 @@ function ncurses_slk_attroff ($intarg) {}
* @link https://php.net/manual/en/function.ncurses-slk-attron.php
* @param $intarg int <p>
* </p>
* @return int
* @return int
*/
function ncurses_slk_attron ($intarg) {}
@ -650,7 +650,7 @@ function ncurses_slk_attron ($intarg) {}
* @link https://php.net/manual/en/function.ncurses-slk-attrset.php
* @param $intarg int <p>
* </p>
* @return int
* @return int
*/
function ncurses_slk_attrset ($intarg) {}
@ -659,7 +659,7 @@ function ncurses_slk_attrset ($intarg) {}
* @link https://php.net/manual/en/function.ncurses-slk-color.php
* @param $intarg int <p>
* </p>
* @return int
* @return int
*/
function ncurses_slk_color ($intarg) {}
@ -690,7 +690,7 @@ function ncurses_slk_init ($format) {}
* </p>
* @param $format int <p>
* </p>
* @return bool
* @return bool
*/
function ncurses_slk_set ($labelnr, $label, $format) {}
@ -699,7 +699,7 @@ function ncurses_slk_set ($labelnr, $label, $format) {}
* @link https://php.net/manual/en/function.ncurses-typeahead.php
* @param $fd int <p>
* </p>
* @return int
* @return int
*/
function ncurses_typeahead ($fd) {}
@ -708,7 +708,7 @@ function ncurses_typeahead ($fd) {}
* @link https://php.net/manual/en/function.ncurses-ungetch.php
* @param $keycode int <p>
* </p>
* @return int
* @return int
*/
function ncurses_ungetch ($keycode) {}
@ -717,7 +717,7 @@ function ncurses_ungetch ($keycode) {}
* @link https://php.net/manual/en/function.ncurses-vidattr.php
* @param $intarg int <p>
* </p>
* @return int
* @return int
*/
function ncurses_vidattr ($intarg) {}
@ -726,7 +726,7 @@ function ncurses_vidattr ($intarg) {}
* @link https://php.net/manual/en/function.ncurses-wrefresh.php
* @param $window resource <p>
* </p>
* @return int
* @return int
*/
function ncurses_wrefresh ($window) {}
@ -735,7 +735,7 @@ function ncurses_wrefresh ($window) {}
* @link https://php.net/manual/en/function.ncurses-use-extended-names.php
* @param $flag bool <p>
* </p>
* @return int
* @return int
*/
function ncurses_use_extended_names ($flag) {}
@ -744,28 +744,28 @@ function ncurses_use_extended_names ($flag) {}
* @link https://php.net/manual/en/function.ncurses-bkgdset.php
* @param $attrchar int <p>
* </p>
* @return void
* @return void
*/
function ncurses_bkgdset ($attrchar) {}
/**
* Set LINES for iniscr() and newterm() to 1
* @link https://php.net/manual/en/function.ncurses-filter.php
* @return void
* @return void
*/
function ncurses_filter () {}
/**
* Do not flush on signal characters
* @link https://php.net/manual/en/function.ncurses-noqiflush.php
* @return void
* @return void
*/
function ncurses_noqiflush () {}
/**
* Flush on signal characters
* @link https://php.net/manual/en/function.ncurses-qiflush.php
* @return void
* @return void
*/
function ncurses_qiflush () {}
@ -774,7 +774,7 @@ function ncurses_qiflush () {}
* @link https://php.net/manual/en/function.ncurses-timeout.php
* @param $millisec int <p>
* </p>
* @return void
* @return void
*/
function ncurses_timeout ($millisec) {}
@ -783,7 +783,7 @@ function ncurses_timeout ($millisec) {}
* @link https://php.net/manual/en/function.ncurses-use-env.php
* @param $flag bool <p>
* </p>
* @return void
* @return void
*/
function ncurses_use_env ($flag) {}
@ -792,7 +792,7 @@ function ncurses_use_env ($flag) {}
* @link https://php.net/manual/en/function.ncurses-addstr.php
* @param $text string <p>
* </p>
* @return int
* @return int
*/
function ncurses_addstr ($text) {}
@ -801,7 +801,7 @@ function ncurses_addstr ($text) {}
* @link https://php.net/manual/en/function.ncurses-putp.php
* @param $text string <p>
* </p>
* @return int
* @return int
*/
function ncurses_putp ($text) {}
@ -810,7 +810,7 @@ function ncurses_putp ($text) {}
* @link https://php.net/manual/en/function.ncurses-scr-dump.php
* @param $filename string <p>
* </p>
* @return int
* @return int
*/
function ncurses_scr_dump ($filename) {}
@ -819,7 +819,7 @@ function ncurses_scr_dump ($filename) {}
* @link https://php.net/manual/en/function.ncurses-scr-init.php
* @param $filename string <p>
* </p>
* @return int
* @return int
*/
function ncurses_scr_init ($filename) {}
@ -828,7 +828,7 @@ function ncurses_scr_init ($filename) {}
* @link https://php.net/manual/en/function.ncurses-scr-restore.php
* @param $filename string <p>
* </p>
* @return int
* @return int
*/
function ncurses_scr_restore ($filename) {}
@ -837,7 +837,7 @@ function ncurses_scr_restore ($filename) {}
* @link https://php.net/manual/en/function.ncurses-scr-set.php
* @param $filename string <p>
* </p>
* @return int
* @return int
*/
function ncurses_scr_set ($filename) {}
@ -850,7 +850,7 @@ function ncurses_scr_set ($filename) {}
* </p>
* @param $c int <p>
* </p>
* @return int
* @return int
*/
function ncurses_mvaddch ($y, $x, $c) {}
@ -865,7 +865,7 @@ function ncurses_mvaddch ($y, $x, $c) {}
* </p>
* @param $n int <p>
* </p>
* @return int
* @return int
*/
function ncurses_mvaddchnstr ($y, $x, $s, $n) {}
@ -876,7 +876,7 @@ function ncurses_mvaddchnstr ($y, $x, $s, $n) {}
* </p>
* @param $n int <p>
* </p>
* @return int
* @return int
*/
function ncurses_addchnstr ($s, $n) {}
@ -889,7 +889,7 @@ function ncurses_addchnstr ($s, $n) {}
* </p>
* @param $s string <p>
* </p>
* @return int
* @return int
*/
function ncurses_mvaddchstr ($y, $x, $s) {}
@ -898,7 +898,7 @@ function ncurses_mvaddchstr ($y, $x, $s) {}
* @link https://php.net/manual/en/function.ncurses-addchstr.php
* @param $s string <p>
* </p>
* @return int
* @return int
*/
function ncurses_addchstr ($s) {}
@ -913,7 +913,7 @@ function ncurses_addchstr ($s) {}
* </p>
* @param $n int <p>
* </p>
* @return int
* @return int
*/
function ncurses_mvaddnstr ($y, $x, $s, $n) {}
@ -924,7 +924,7 @@ function ncurses_mvaddnstr ($y, $x, $s, $n) {}
* </p>
* @param $n int <p>
* </p>
* @return int
* @return int
*/
function ncurses_addnstr ($s, $n) {}
@ -937,7 +937,7 @@ function ncurses_addnstr ($s, $n) {}
* </p>
* @param $s string <p>
* </p>
* @return int
* @return int
*/
function ncurses_mvaddstr ($y, $x, $s) {}
@ -948,7 +948,7 @@ function ncurses_mvaddstr ($y, $x, $s) {}
* </p>
* @param $x int <p>
* </p>
* @return int
* @return int
*/
function ncurses_mvdelch ($y, $x) {}
@ -959,7 +959,7 @@ function ncurses_mvdelch ($y, $x) {}
* </p>
* @param $x int <p>
* </p>
* @return int
* @return int
*/
function ncurses_mvgetch ($y, $x) {}
@ -970,7 +970,7 @@ function ncurses_mvgetch ($y, $x) {}
* </p>
* @param $x int <p>
* </p>
* @return int
* @return int
*/
function ncurses_mvinch ($y, $x) {}
@ -985,7 +985,7 @@ function ncurses_mvinch ($y, $x) {}
* </p>
* @param $text string <p>
* </p>
* @return int
* @return int
*/
function ncurses_mvwaddstr ($window, $y, $x, $text) {}
@ -994,7 +994,7 @@ function ncurses_mvwaddstr ($window, $y, $x, $text) {}
* @link https://php.net/manual/en/function.ncurses-insstr.php
* @param $text string <p>
* </p>
* @return int
* @return int
*/
function ncurses_insstr ($text) {}
@ -1020,7 +1020,7 @@ function ncurses_instr (&$buffer) {}
* </p>
* @param $n int <p>
* </p>
* @return int
* @return int
*/
function ncurses_mvhline ($y, $x, $attrchar, $n) {}
@ -1035,7 +1035,7 @@ function ncurses_mvhline ($y, $x, $attrchar, $n) {}
* </p>
* @param $new_x int <p>
* </p>
* @return int
* @return int
*/
function ncurses_mvcur ($old_y, $old_x, $new_y, $new_x) {}
@ -1050,7 +1050,7 @@ function ncurses_mvcur ($old_y, $old_x, $new_y, $new_x) {}
* </p>
* @param $b int <p>
* </p>
* @return int
* @return int
*/
function ncurses_init_color ($color, $r, $g, $b) {}
@ -1077,7 +1077,7 @@ function ncurses_init_color ($color, $r, $g, $b) {}
* @param $br_corner int <p>
* Bottom right corner
* </p>
* @return int
* @return int
*/
function ncurses_border ($left, $right, $top, $bottom, $tl_corner, $tr_corner, $bl_corner, $br_corner) {}
@ -1088,7 +1088,7 @@ function ncurses_border ($left, $right, $top, $bottom, $tl_corner, $tr_corner, $
* </p>
* @param $bg int <p>
* </p>
* @return int
* @return int
*/
function ncurses_assume_default_colors ($fg, $bg) {}
@ -1099,7 +1099,7 @@ function ncurses_assume_default_colors ($fg, $bg) {}
* </p>
* @param $keycode int <p>
* </p>
* @return int
* @return int
*/
function ncurses_define_key ($definition, $keycode) {}
@ -1110,7 +1110,7 @@ function ncurses_define_key ($definition, $keycode) {}
* </p>
* @param $n int <p>
* </p>
* @return int
* @return int
*/
function ncurses_hline ($charattr, $n) {}
@ -1121,7 +1121,7 @@ function ncurses_hline ($charattr, $n) {}
* </p>
* @param $n int <p>
* </p>
* @return int
* @return int
*/
function ncurses_vline ($charattr, $n) {}
@ -1132,7 +1132,7 @@ function ncurses_vline ($charattr, $n) {}
* </p>
* @param $enable bool <p>
* </p>
* @return int
* @return int
*/
function ncurses_keyok ($keycode, $enable) {}
@ -1163,7 +1163,7 @@ function ncurses_longname () {}
* @param $oldmask int <p>
* This will be set to the previous value of the mouse event mask.
* </p>
* @return int a mask to indicated which of the in parameter
* @return int a mask to indicated which of the in parameter
* newmask specified mouse events can be reported. On
* complete failure, it returns 0.
* </p>
@ -1208,7 +1208,7 @@ function ncurses_ungetmouse (array $mevent) {}
* </p>
* @param $toscreen bool <p>
* </p>
* @return bool
* @return bool
*/
function ncurses_mouse_trafo (&$y, &$x, $toscreen) {}
@ -1223,7 +1223,7 @@ function ncurses_mouse_trafo (&$y, &$x, $toscreen) {}
* </p>
* @param $toscreen bool <p>
* </p>
* @return bool
* @return bool
*/
function ncurses_wmouse_trafo ($window, &$y, &$x, $toscreen) {}
@ -1236,7 +1236,7 @@ function ncurses_wmouse_trafo ($window, &$y, &$x, $toscreen) {}
* </p>
* @param $n int[optional] <p>
* </p>
* @return int
* @return int
*/
function ncurses_waddstr ($window, $str, $n = null) {}
@ -1245,7 +1245,7 @@ function ncurses_waddstr ($window, $str, $n = null) {}
* @link https://php.net/manual/en/function.ncurses-wnoutrefresh.php
* @param $window resource <p>
* </p>
* @return int
* @return int
*/
function ncurses_wnoutrefresh ($window) {}
@ -1254,7 +1254,7 @@ function ncurses_wnoutrefresh ($window) {}
* @link https://php.net/manual/en/function.ncurses-wclear.php
* @param $window resource <p>
* </p>
* @return int
* @return int
*/
function ncurses_wclear ($window) {}
@ -1265,7 +1265,7 @@ function ncurses_wclear ($window) {}
* </p>
* @param $color_pair int <p>
* </p>
* @return int
* @return int
*/
function ncurses_wcolor_set ($window, $color_pair) {}
@ -1274,7 +1274,7 @@ function ncurses_wcolor_set ($window, $color_pair) {}
* @link https://php.net/manual/en/function.ncurses-wgetch.php
* @param $window resource <p>
* </p>
* @return int
* @return int
*/
function ncurses_wgetch ($window) {}
@ -1285,7 +1285,7 @@ function ncurses_wgetch ($window) {}
* </p>
* @param $bf bool <p>
* </p>
* @return int
* @return int
*/
function ncurses_keypad ($window, $bf) {}
@ -1298,7 +1298,7 @@ function ncurses_keypad ($window, $bf) {}
* </p>
* @param $x int <p>
* </p>
* @return int
* @return int
*/
function ncurses_wmove ($window, $y, $x) {}
@ -1309,7 +1309,7 @@ function ncurses_wmove ($window, $y, $x) {}
* </p>
* @param $cols int <p>
* </p>
* @return resource
* @return resource
*/
function ncurses_newpad ($rows, $cols) {}
@ -1330,7 +1330,7 @@ function ncurses_newpad ($rows, $cols) {}
* </p>
* @param $smaxcol int <p>
* </p>
* @return int
* @return int
*/
function ncurses_prefresh ($pad, $pminrow, $pmincol, $sminrow, $smincol, $smaxrow, $smaxcol) {}
@ -1351,7 +1351,7 @@ function ncurses_prefresh ($pad, $pminrow, $pmincol, $sminrow, $smincol, $smaxro
* </p>
* @param $smaxcol int <p>
* </p>
* @return int
* @return int
*/
function ncurses_pnoutrefresh ($pad, $pminrow, $pmincol, $sminrow, $smincol, $smaxrow, $smaxcol) {}
@ -1360,7 +1360,7 @@ function ncurses_pnoutrefresh ($pad, $pminrow, $pmincol, $sminrow, $smincol, $sm
* @link https://php.net/manual/en/function.ncurses-wstandout.php
* @param $window resource <p>
* </p>
* @return int
* @return int
*/
function ncurses_wstandout ($window) {}
@ -1369,7 +1369,7 @@ function ncurses_wstandout ($window) {}
* @link https://php.net/manual/en/function.ncurses-wstandend.php
* @param $window resource <p>
* </p>
* @return int
* @return int
*/
function ncurses_wstandend ($window) {}
@ -1380,7 +1380,7 @@ function ncurses_wstandend ($window) {}
* </p>
* @param $attrs int <p>
* </p>
* @return int
* @return int
*/
function ncurses_wattrset ($window, $attrs) {}
@ -1391,7 +1391,7 @@ function ncurses_wattrset ($window, $attrs) {}
* </p>
* @param $attrs int <p>
* </p>
* @return int
* @return int
*/
function ncurses_wattron ($window, $attrs) {}
@ -1402,7 +1402,7 @@ function ncurses_wattron ($window, $attrs) {}
* </p>
* @param $attrs int <p>
* </p>
* @return int
* @return int
*/
function ncurses_wattroff ($window, $attrs) {}
@ -1413,7 +1413,7 @@ function ncurses_wattroff ($window, $attrs) {}
* </p>
* @param $ch int <p>
* </p>
* @return int
* @return int
*/
function ncurses_waddch ($window, $ch) {}
@ -1443,7 +1443,7 @@ function ncurses_waddch ($window, $ch) {}
* @param $br_corner int <p>
* Bottom right corner
* </p>
* @return int
* @return int
*/
function ncurses_wborder ($window, $left, $right, $top, $bottom, $tl_corner, $tr_corner, $bl_corner, $br_corner) {}
@ -1456,7 +1456,7 @@ function ncurses_wborder ($window, $left, $right, $top, $bottom, $tl_corner, $tr
* </p>
* @param $n int <p>
* </p>
* @return int
* @return int
*/
function ncurses_whline ($window, $charattr, $n) {}
@ -1469,7 +1469,7 @@ function ncurses_whline ($window, $charattr, $n) {}
* </p>
* @param $n int <p>
* </p>
* @return int
* @return int
*/
function ncurses_wvline ($window, $charattr, $n) {}
@ -1482,7 +1482,7 @@ function ncurses_wvline ($window, $charattr, $n) {}
* </p>
* @param $x int <p>
* </p>
* @return void
* @return void
*/
function ncurses_getyx ($window, &$y, &$x) {}
@ -1506,7 +1506,7 @@ function ncurses_getmaxyx ($window, &$y, &$x) {}
/**
* Refreshes the virtual screen to reflect the relations between panels in the stack
* @link https://php.net/manual/en/function.ncurses-update-panels.php
* @return void
* @return void
*/
function ncurses_update_panels () {}
@ -1515,7 +1515,7 @@ function ncurses_update_panels () {}
* @link https://php.net/manual/en/function.ncurses-panel-window.php
* @param $panel resource <p>
* </p>
* @return resource
* @return resource
*/
function ncurses_panel_window ($panel) {}
@ -1524,7 +1524,7 @@ function ncurses_panel_window ($panel) {}
* @link https://php.net/manual/en/function.ncurses-panel-below.php
* @param $panel resource <p>
* </p>
* @return resource
* @return resource
*/
function ncurses_panel_below ($panel) {}
@ -1545,7 +1545,7 @@ function ncurses_panel_above ($panel) {}
* </p>
* @param $window resource <p>
* </p>
* @return int
* @return int
*/
function ncurses_replace_panel ($panel, $window) {}
@ -1558,7 +1558,7 @@ function ncurses_replace_panel ($panel, $window) {}
* </p>
* @param $starty int <p>
* </p>
* @return int
* @return int
*/
function ncurses_move_panel ($panel, $startx, $starty) {}
@ -1567,7 +1567,7 @@ function ncurses_move_panel ($panel, $startx, $starty) {}
* @link https://php.net/manual/en/function.ncurses-bottom-panel.php
* @param $panel resource <p>
* </p>
* @return int
* @return int
*/
function ncurses_bottom_panel ($panel) {}
@ -1576,7 +1576,7 @@ function ncurses_bottom_panel ($panel) {}
* @link https://php.net/manual/en/function.ncurses-top-panel.php
* @param $panel resource <p>
* </p>
* @return int
* @return int
*/
function ncurses_top_panel ($panel) {}
@ -1585,7 +1585,7 @@ function ncurses_top_panel ($panel) {}
* @link https://php.net/manual/en/function.ncurses-show-panel.php
* @param $panel resource <p>
* </p>
* @return int
* @return int
*/
function ncurses_show_panel ($panel) {}
@ -1594,7 +1594,7 @@ function ncurses_show_panel ($panel) {}
* @link https://php.net/manual/en/function.ncurses-hide-panel.php
* @param $panel resource <p>
* </p>
* @return int
* @return int
*/
function ncurses_hide_panel ($panel) {}
@ -1603,7 +1603,7 @@ function ncurses_hide_panel ($panel) {}
* @link https://php.net/manual/en/function.ncurses-del-panel.php
* @param $panel resource <p>
* </p>
* @return bool
* @return bool
*/
function ncurses_del_panel ($panel) {}
@ -1612,7 +1612,7 @@ function ncurses_del_panel ($panel) {}
* @link https://php.net/manual/en/function.ncurses-new-panel.php
* @param $window resource <p>
* </p>
* @return resource
* @return resource
*/
function ncurses_new_panel ($window) {}

View File

@ -364,7 +364,7 @@ function newrelic_start_transaction($appName, $license = null) {}
* page in the New Relic UI.
* This function allows an unsupported datastore to be instrumented in the same way as the PHP agent automatically
* instruments its supported datastores.
*
*
* @since 7.5.0.199
* @see https://docs.newrelic.com/docs/agents/php-agent/php-agent-api/newrelic_record_datastore_segment
*

View File

@ -610,7 +610,7 @@ function openssl_digest($data, $method, $raw_output = false) { }
* The cipher method. For a list of available cipher methods, use {@see openssl_get_cipher_methods()}.
* </p>
* @param string $key <p>
* The key.
* The key.
* </p>
* @param int $options [optional] <p>
* options is a bitwise disjunction of the flags OPENSSL_RAW_DATA and OPENSSL_ZERO_PADDING.

View File

@ -42,4 +42,4 @@ function run(Closure $task, array $argv = null) : ?Future{}
* @return int
*/
function count() : int{}
#endif
#endif

View File

@ -105,4 +105,4 @@ final class Channel{
* @return string
*/
public function __toString() : string{}
}
}

View File

@ -3,4 +3,4 @@
namespace parallel\Channel;
class Error extends \parallel\Error{
}
}

View File

@ -5,4 +5,4 @@ namespace parallel\Channel\Error;
use parallel\Channel\Error;
class Closed extends Error{
}
}

View File

@ -5,4 +5,4 @@ namespace parallel\Channel\Error;
use parallel\Channel\Error;
class Existence extends Error{
}
}

View File

@ -5,4 +5,4 @@ namespace parallel\Channel\Error;
use parallel\Channel\Error;
class IllegalValue extends Error{
}
}

View File

@ -3,4 +3,4 @@
namespace parallel;
class Error extends \Error{
}
}

View File

@ -109,4 +109,4 @@ final class Events implements Countable, Traversable{
* @return int
*/
public function count() : int{}
}
}

View File

@ -3,4 +3,4 @@
namespace parallel\Events;
class Error extends \parallel\Error{
}
}

View File

@ -5,4 +5,4 @@ namespace parallel\Events\Error;
use parallel\Events\Error;
class Existence extends Error{
}
}

View File

@ -5,4 +5,4 @@ namespace parallel\Events\Error;
use parallel\Events\Error;
class Timeout extends Error{
}
}

View File

@ -30,4 +30,4 @@ final class Event{
* @var mixed
*/
public $value;
}
}

View File

@ -3,4 +3,4 @@
namespace parallel\Events\Event;
class Error extends \parallel\Error{
}
}

View File

@ -20,4 +20,4 @@ final class Type{
/** Event::$object (Future) raised error */
public const Error = 4;
}
}

View File

@ -36,4 +36,4 @@ final class Input{
* Shall remove input for all targets
*/
public function clear() : void{}
}
}

View File

@ -3,4 +3,4 @@
namespace parallel\Events\Input;
class Error extends \parallel\Error{
}
}

View File

@ -5,4 +5,4 @@ namespace parallel\Events\Input\Error;
use parallel\Events\Input\Error;
class Existence extends Error{
}
}

View File

@ -5,4 +5,4 @@ namespace parallel\Events\Input\Error;
use parallel\Events\Input\Error;
class IllegalValue extends Error{
}
}

View File

@ -56,4 +56,4 @@ final class Future{
* @throws Future\Error\Cancelled if task was already cancelled.
*/
public function cancel() : bool{}
}
}

View File

@ -3,4 +3,4 @@
namespace parallel\Future;
class Error extends \parallel\Error{
}
}

View File

@ -5,4 +5,4 @@ namespace parallel\Future\Error;
use parallel\Error;
class Cancelled extends Error{
}
}

View File

@ -5,4 +5,4 @@ namespace parallel\Future\Error;
use parallel\Error;
class Foreign extends Error{
}
}

View File

@ -5,4 +5,4 @@ namespace parallel\Future\Error;
use parallel\Error;
class Killed extends Error{
}
}

View File

@ -114,4 +114,4 @@ final class Runtime{
* @throws Runtime\Error\Closed if Runtime was closed.
*/
public function kill() : void{}
}
}

View File

@ -3,4 +3,4 @@
namespace parallel\Runtime;
class Error extends \parallel\Error{
}
}

View File

@ -5,4 +5,4 @@ namespace parallel\Runtime\Error;
use parallel\Runtime\Error;
class Bootstrap extends Error{
}
}

View File

@ -5,4 +5,4 @@ namespace parallel\Runtime\Error;
use parallel\Runtime\Error;
class Closed extends Error{
}
}

View File

@ -5,4 +5,4 @@ namespace parallel\Runtime\Error;
use parallel\Runtime\Error;
class IllegalFunction extends Error{
}
}

View File

@ -5,4 +5,4 @@ namespace parallel\Runtime\Error;
use parallel\Runtime\Error;
class IllegalInstruction extends Error{
}
}

View File

@ -5,4 +5,4 @@ namespace parallel\Runtime\Error;
use parallel\Runtime\Error;
class IllegalParameter extends Error{
}
}

View File

@ -5,4 +5,4 @@ namespace parallel\Runtime\Error;
use parallel\Runtime\Error;
class IllegalReturn extends Error{
}
}

View File

@ -5,4 +5,4 @@ namespace parallel\Runtime\Error;
use parallel\Runtime\Error;
class IllegalVariable extends Error{
}
}

View File

@ -5,4 +5,4 @@ namespace parallel\Runtime\Error;
use parallel\Runtime\Error;
class Killed extends Error{
}
}

View File

@ -3,4 +3,4 @@
namespace parallel\Runtime\Object;
class Unavailable{
}
}

View File

@ -3,4 +3,4 @@
namespace parallel\Runtime\Type;
class Unavailable{
}
}

View File

@ -60,4 +60,4 @@ final class Sync{
* @param callable $block
*/
public function __invoke(callable $block){}
}
}

View File

@ -3,4 +3,4 @@
namespace parallel\Sync;
class Error extends \parallel\Error{
}
}

View File

@ -5,4 +5,4 @@ namespace parallel\Sync\Error;
use parallel\Sync\Error;
class IllegalValue extends Error{
}
}

View File

@ -42,32 +42,32 @@
* [0] => foobarbaz
* [1] => 0
* )
*
*
* [1] => Array
* (
* [0] => foo
* [1] => 0
* )
*
*
* [2] => Array
* (
* [0] => bar
* [1] => 3
* )
*
*
* [3] => Array
* (
* [0] => baz
* [1] => 6
* )
*
*
* )
* </pre>
* </blockquote>
* <b>PREG_UNMATCHED_AS_NULL</b>
* <blockquote>
* If this flag is passed, unmatched subpatterns are reported as NULL;
* otherwise they are reported as an empty string.
* otherwise they are reported as an empty string.
* <pre>
* <?php
* preg_match('/(a)(b)*(c)/', 'ac', $matches);
@ -148,7 +148,7 @@
* </pre>
* Alternatively, to avoid using substr(), use the \G assertion rather
* than the ^ anchor, or the A modifier instead, both of which work with
* the offset parameter.
* the offset parameter.
* </p>
* @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>

View File

@ -2163,7 +2163,7 @@ function PDF_continue_text($pdf, $text){}
* @param string $optlist
*
* @return int
*
*
* @link https://secure.php.net/manual/en/function.pdf-create-3dview.php
*/
function PDF_create_3dview($pdf, $username, $optlist){}
@ -2216,7 +2216,7 @@ function PDF_create_bookmark($pdf, $text, $optlist){}
* @param string $optlist
*
* @return bool
*
*
* @link https://secure.php.net/manual/en/function.pdf-create-field.php
*/
function PDF_create_field($pdf, $llx, $lly, $urx, $ury, $name, $type, $optlist){}
@ -2225,9 +2225,9 @@ function PDF_create_field($pdf, $llx, $lly, $urx, $ury, $name, $type, $optlist){
* @param resource $pdf
* @param string $name
* @param string $optlist
*
* @return bool
*
*
* @return bool
*
* @link https://secure.php.net/manual/en/function.pdf-create-fieldgroup.php
*/
function PDF_create_fieldgroup($pdf, $name, $optlist){}
@ -2235,9 +2235,9 @@ function PDF_create_fieldgroup($pdf, $name, $optlist){}
/**
* @param resource $pdf
* @param string $optlist
*
* @return int
*
*
* @return int
*
* @link https://secure.php.net/manual/en/function.pdf-create-gstate.php
*/
function PDF_create_gstate($pdf, $optlist){}
@ -2247,9 +2247,9 @@ function PDF_create_gstate($pdf, $optlist){}
* @param string $filename
* @param string $data
* @param string $optlist
*
* @return bool
*
*
* @return bool
*
* @link https://secure.php.net/manual/en/function.pdf-create-pvf.php
*/
function PDF_create_pvf($pdf, $filename, $data, $optlist){}
@ -2258,9 +2258,9 @@ function PDF_create_pvf($pdf, $filename, $data, $optlist){}
* @param resource $pdf
* @param string $text
* @param string $optlist
*
* @return int
*
*
* @return int
*
* @link https://secure.php.net/manual/en/function.pdf-create-textflow.php
*/
function PDF_create_textflow($pdf, $text, $optlist){}
@ -2273,9 +2273,9 @@ function PDF_create_textflow($pdf, $text, $optlist){}
* @param float $y2
* @param float $x3
* @param float $y3
*
* @return bool
*
*
* @return bool
*
* @link https://secure.php.net/manual/en/function.pdf-curveto.php
*/
function PDF_curveto($pdf, $x1, $y1, $x2, $y2, $x3, $y3){}
@ -2284,9 +2284,9 @@ function PDF_curveto($pdf, $x1, $y1, $x2, $y2, $x3, $y3){}
* @param resource $pdf
* @param string $name
* @param string $optlist
*
* @return int
*
*
* @return int
*
* @link https://secure.php.net/manual/en/function.pdf-define-layer.php
*/
function PDF_define_layer($pdf, $name, $optlist){}
@ -2294,9 +2294,9 @@ function PDF_define_layer($pdf, $name, $optlist){}
/**
* @param resource $pdf
* @param string $filename
*
* @return int
*
*
* @return int
*
* @link https://secure.php.net/manual/en/function.pdf-delete-pvf.php
*/
function PDF_delete_pvf($pdf, $filename){}
@ -2305,9 +2305,9 @@ function PDF_delete_pvf($pdf, $filename){}
* @param resource $pdf
* @param int $table
* @param string $optlist
*
* @return bool
*
*
* @return bool
*
* @link https://secure.php.net/manual/en/function.pdf-delete-table.php
*/
function PDF_delete_table($pdf, $table, $optlist){}
@ -2324,9 +2324,9 @@ function PDF_delete_textflow($pdf, $textflow){}
/**
* @param resource $pdf
*
* @return bool
*
*
* @return bool
*
* @link https://secure.php.net/manual/en/function.pdf-delete.php
*/
function PDF_delete($pdf){}
@ -2337,9 +2337,9 @@ function PDF_delete($pdf){}
* @param int $slot
* @param string $glyphname
* @param int $uv
*
* @return bool
*
*
* @return bool
*
* @link https://secure.php.net/manual/en/function.pdf-encoding-set-char.php
*/
function PDF_encoding_set_char($pdf, $encoding, $slot, $glyphname, $uv){}
@ -2347,27 +2347,27 @@ function PDF_encoding_set_char($pdf, $encoding, $slot, $glyphname, $uv){}
/**
* @param resource $pdf
* @param string $optlist
*
* @return bool
*
*
* @return bool
*
* @link https://secure.php.net/manual/en/function.pdf-end-document.php
*/
function PDF_end_document($pdf, $optlist){}
/**
* @param resource $pdf
*
* @return bool
*
*
* @return bool
*
* @link https://secure.php.net/manual/en/function.pdf-end-font.php
*/
function PDF_end_font($pdf){}
/**
* @param resource $pdf
*
* @return bool
*
*
* @return bool
*
* @link https://secure.php.net/manual/en/function.pdf-end-glyph.php
*/
function PDF_end_glyph($pdf){}
@ -2375,18 +2375,18 @@ function PDF_end_glyph($pdf){}
/**
* @param resource $pdf
* @param int $id
*
* @return bool
*
*
* @return bool
*
* @link https://secure.php.net/manual/en/function.pdf-end-item.php
*/
function PDF_end_item($pdf, $id){}
/**
* @param resource $pdf
*
* @return bool
*
*
* @return bool
*
* @link https://secure.php.net/manual/en/function.pdf-end-layer.php
*/
function PDF_end_layer($pdf){}
@ -2394,45 +2394,45 @@ function PDF_end_layer($pdf){}
/**
* @param resource $pdf
* @param string $optlist
*
* @return bool
*
*
* @return bool
*
* @link https://secure.php.net/manual/en/function.pdf-end-page-ext.php
*/
function PDF_end_page_ext($pdf, $optlist){}
/**
* @param resource $pdf
*
* @return bool
*
*
* @return bool
*
* @link https://secure.php.net/manual/en/function.pdf-end-page.php
*/
function PDF_end_page($p){}
/**
* @param resource $pdf
*
* @return bool
*
*
* @return bool
*
* @link https://secure.php.net/manual/en/function.pdf-end-pattern.php
*/
function PDF_end_pattern($p){}
/**
* @param resource $pdf
*
* @return bool
*
*
* @return bool
*
* @link https://secure.php.net/manual/en/function.pdf-end-template.php
*/
function PDF_end_template($p){}
/**
* @param resource $pdf
*
* @return bool
*
*
* @return bool
*
* @link https://secure.php.net/manual/en/function.pdf-endpath.php
*/
function PDF_endpath($p){}
@ -2443,9 +2443,9 @@ function PDF_endpath($p){}
* @param string $blockname
* @param int $image
* @param string $optlist
*
* @return int
*
*
* @return int
*
* @link https://secure.php.net/manual/en/function.pdf-fill-imageblock.php
*/
function PDF_fill_imageblock($pdf, $page, $blockname, $image, $optlist){}
@ -2456,18 +2456,18 @@ function PDF_fill_imageblock($pdf, $page, $blockname, $image, $optlist){}
* @param string $blockname
* @param int $contents
* @param string $optlist
*
* @return int
*
*
* @return int
*
* @link https://secure.php.net/manual/en/function.pdf-fill-pdfblock.php
*/
function PDF_fill_pdfblock($pdf, $page, $blockname, $contents, $optlist){}
/**
* @param resource $pdf
*
* @return bool
*
*
* @return bool
*
* @link https://secure.php.net/manual/en/function.pdf-fill-stroke.php
*/
function PDF_fill_stroke($pdf){}
@ -2478,9 +2478,9 @@ function PDF_fill_stroke($pdf){}
* @param string $blockname
* @param string $text
* @param string $optlist
*
* @return int
*
*
* @return int
*
* @link https://secure.php.net/manual/en/function.pdf-fill-textblock.php
*/
@ -2488,9 +2488,9 @@ function PDF_fill_textblock($pdf, $page, $blockname, $text, $optlist){}
/**
* @param resource $pdf
*
*
* @return bool
*
*
* @link https://secure.php.net/manual/en/function.pdf-fill.php
*/
@ -2500,9 +2500,9 @@ function PDF_fill($pdf){}
* @param string $fontname
* @param string $encoding
* @param int $embed
*
*
* @return int
*
*
* @link https://secure.php.net/manual/en/function.pdf-findfont.php(Dep)
*/
@ -2513,9 +2513,9 @@ function PDF_findfont($pdf, $fontname , $encoding , $embed){}
* @param float $x
* @param float $y
* @param string $optlist
*
*
* @return bool
*
*
* @link https://secure.php.net/manual/en/function.pdf-fit-image.php
*/
@ -2526,9 +2526,9 @@ function PDF_fit_image($pdf, $image , $x , $y , $optlist){}
* @param float $x
* @param float $y
* @param string $optlist
*
*
* @return bool
*
*
* @link https://secure.php.net/manual/en/function.pdf-fit-pdi-page.php
*/
@ -2541,9 +2541,9 @@ function PDF_fit_pdi_page($pdf, $page , $x , $y , $optlist){}
* @param float $urx
* @param float $ury
* @param string $optlist
*
*
* @return string
*
*
* @link https://secure.php.net/manual/en/function.pdf-fit-table.php
*/
@ -2556,9 +2556,9 @@ function PDF_fit_table($pdf, $table , $llx , $lly , $urx , $ury , $optlist){}
* @param float $urx
* @param float $ury
* @param string $optlist
*
*
* @return string
*
*
* @link https://secure.php.net/manual/en/function.pdf-fit-textflow.php
*/
@ -2569,63 +2569,63 @@ function PDF_fit_textflow($pdf, $textflow , $llx , $lly , $urx , $ury , $optlist
* @param float $x
* @param float $y
* @param string $optlist
*
*
* @return bool
*
*
* @link https://secure.php.net/manual/en/function.pdf-fit-textline.php
*/
function PDF_fit_textline($pdf, $text , $x , $y , $optlist){}
/**
* @param resource $pdf
*
*
* @return string
*
*
* @link https://secure.php.net/manual/en/function.pdf-get-apiname.php
*/
function PDF_get_apiname($pdf){}
/**
* @param resource $pdf
*
*
* @return string
*
*
* @link https://secure.php.net/manual/en/function.pdf-get-buffer.php
*/
function PDF_get_buffer($pdf){}
/**
* @param resource $pdf
*
*
* @return string
*
*
* @link https://secure.php.net/manual/en/function.pdf-get-errmsg.php
*/
function PDF_get_errmsg($pdf){}
/**
* @param resource $pdf
*
*
* @return int
*
*
* @link https://secure.php.net/manual/en/function.pdf-get-errnum.php
*/
function PDF_get_errnum($pdf){}
/**
* @param void $
*
*
* @return int
*
*
* @link https://secure.php.net/manual/en/function.pdf-get-majorversion.php(dep)
*/
function PDF_get_majorversion(){}
/**
* @param void $
*
*
* @return int
*
*
* @link https://secure.php.net/manual/en/function.pdf-get-minorversion.php(dep)
*/
@ -2634,9 +2634,9 @@ function PDF_get_minorversion(){}
* @param resource $pdf
* @param string $key
* @param float $modifier
*
*
* @return string
*
*
* @link https://secure.php.net/manual/en/function.pdf-get-parameter.php
*/
@ -2647,9 +2647,9 @@ function PDF_get_parameter($pdf, $key , $modifier){}
* @param int $doc
* @param int $page
* @param int $reserved
*
*
* @return string
*
*
* @link https://secure.php.net/manual/en/function.pdf-get-pdi-parameter.php
*/
@ -2660,9 +2660,9 @@ function PDF_get_pdi_parameter($pdf, $key , $doc , $page , $reserved){}
* @param int $doc
* @param int $page
* @param int $reserved
*
*
* @return float
*
*
* @link https://secure.php.net/manual/en/function.pdf-get-pdi-value.php
*/
@ -2671,9 +2671,9 @@ function PDF_get_pdi_value($pdf, $key , $doc , $page , $reserved){}
* @param resource $pdf
* @param string $key
* @param float $modifier
*
*
* @return float
*
*
* @link https://secure.php.net/manual/en/function.pdf-get-value.php
*/
@ -2683,9 +2683,9 @@ function PDF_get_value($pdf, $key , $modifier){}
* @param int $font
* @param string $keyword
* @param string $optlist
*
*
* @return float
*
*
* @link https://secure.php.net/manual/en/function.pdf-info-font.php
*/
@ -2695,9 +2695,9 @@ function PDF_info_font($pdf, $font , $keyword , $optlist){}
* @param string $boxname
* @param int $num
* @param string $keyword
*
*
* @return float
*
*
* @link https://secure.php.net/manual/en/function.pdf-info-matchbox.php
*/
@ -2706,9 +2706,9 @@ function PDF_info_matchbox($pdf, $boxname , $num , $keyword){}
* @param resource $pdf
* @param int $table
* @param string $keyword
*
*
* @return float
*
*
* @link https://secure.php.net/manual/en/function.pdf-info-table.php
*/
@ -2717,9 +2717,9 @@ function PDF_info_table($pdf, $table , $keyword){}
* @param resource $pdf
* @param int $textflow
* @param string $keyword
*
*
* @return float
*
*
* @link https://secure.php.net/manual/en/function.pdf-info-textflow.php
*/
@ -2730,18 +2730,18 @@ function PDF_info_textflow($pdf, $textflow , $keyword){}
* @param string $text
* @param string $keyword
* @param string $optlist
*
*
* @return float
*
*
* @link https://secure.php.net/manual/en/function.pdf-info-textline.php
*/
function PDF_info_textline($pdf, $text , $keyword , $optlist){}
/**
* @param resource $pdf
*
*
* @return bool
*
*
* @link https://secure.php.net/manual/en/function.pdf-initgraphics.php
*/
function PDF_initgraphics($pdf){}
@ -2750,9 +2750,9 @@ function PDF_initgraphics($pdf){}
* @param resource $pdf
* @param float $x
* @param float $y
*
*
* @return bool
*
*
* @link https://secure.php.net/manual/en/function.pdf-lineto.php
*/
function PDF_lineto($pdf, $x , $y){}
@ -2761,9 +2761,9 @@ function PDF_lineto($pdf, $x , $y){}
* @param resource $pdf
* @param string $filename
* @param string $optlist
*
*
* @return int
*
*
* @link https://secure.php.net/manual/en/function.pdf-load-3ddata.php
*/
function PDF_load_3ddata($pdf, $filename , $optlist){}
@ -2773,9 +2773,9 @@ function PDF_load_3ddata($pdf, $filename , $optlist){}
* @param string $fontname
* @param string $encoding
* @param string $optlist
*
*
* @return int
*
*
* @link https://secure.php.net/manual/en/function.pdf-load-font.php
*/
function PDF_load_font($pdf, $fontname , $encoding , $optlist){}
@ -2784,9 +2784,9 @@ function PDF_load_font($pdf, $fontname , $encoding , $optlist){}
* @param resource $pdf
* @param string $profilename
* @param string $optlist
*
*
* @return int
*
*
* @link https://secure.php.net/manual/en/function.pdf-load-iccprofile.php
*/
function PDF_load_iccprofile($pdf, $profilename , $optlist){}
@ -2796,9 +2796,9 @@ function PDF_load_iccprofile($pdf, $profilename , $optlist){}
* @param string $imagetype
* @param string $filename
* @param string $optlist
*
*
* @return int
*
*
* @link https://secure.php.net/manual/en/function.pdf-load-image.php
*/
function PDF_load_image($pdf, $imagetype , $filename , $optlist){}
@ -2806,9 +2806,9 @@ function PDF_load_image($pdf, $imagetype , $filename , $optlist){}
/**
* @param resource $pdf
* @param string $spotname
*
*
* @return int
*
*
* @link https://secure.php.net/manual/en/function.pdf-makespotcolor.php
*/
function PDF_makespotcolor($pdf, $spotname){}
@ -2817,16 +2817,16 @@ function PDF_makespotcolor($pdf, $spotname){}
* @param resource $pdf
* @param float $x
* @param float $y
*
*
* @return bool
*
*
* @link https://secure.php.net/manual/en/function.pdf-moveto.php
*/
function PDF_moveto($pdf, $x , $y){}
/**
* @return resource
*
*
* @link https://secure.php.net/manual/en/function.pdf-new.php
*/
function PDF_new(){}
@ -2839,9 +2839,9 @@ function PDF_new(){}
* @param int $BitReverse
* @param int $k
* @param int $Blackls1
*
*
* @return int
*
*
* @link https://secure.php.net/manual/en/function.pdf-open-ccitt.php(dep)
*/
function PDF_open_ccitt($pdf, $filename , $width , $height , $BitReverse , $k , $Blackls1){}
@ -2849,9 +2849,9 @@ function PDF_open_ccitt($pdf, $filename , $width , $height , $BitReverse , $k ,
/**
* @param resource $pdf
* @param string $filename
*
*
* @return bool
*
*
* @link https://secure.php.net/manual/en/function.pdf-open-file.php(dep)
*/
function PDF_open_file($pdf, $filename){}
@ -2862,9 +2862,9 @@ function PDF_open_file($pdf, $filename){}
* @param string $filename
* @param string $stringparam
* @param int $intparam
*
*
* @return int
*
*
* @link https://secure.php.net/manual/en/function.pdf-open-image-file.php(dep)
*/
function PDF_open_image_file($pdf, $imagetype , $filename , $stringparam , $intparam){}
@ -2880,9 +2880,9 @@ function PDF_open_image_file($pdf, $imagetype , $filename , $stringparam , $intp
* @param int $components
* @param int $bpc
* @param string $params
*
*
* @return int
*
*
* @link https://secure.php.net/manual/en/function.pdf-open-image.php(dep)
*/
function PDF_open_image($pdf, $imagetype , $source , $data , $length , $width , $height , $components , $bpc , $params){}
@ -2890,9 +2890,9 @@ function PDF_open_image($pdf, $imagetype , $source , $data , $length , $width ,
/**
* @param resource $pdf
* @param resource $image
*
*
* @return int
*
*
* @link https://secure.php.net/manual/en/function.pdf-open-memory-image.php(not supported)
*/
function PDF_open_memory_image($pdf, $image){}
@ -2901,9 +2901,9 @@ function PDF_open_memory_image($pdf, $image){}
* @param resource $pdf
* @param string $filename
* @param string $optlist
*
*
* @return int
*
*
* @link https://secure.php.net/manual/en/function.pdf-open-pdi-document.php
*/
function PDF_open_pdi_document($pdf, $filename , $optlist){}
@ -2913,9 +2913,9 @@ function PDF_open_pdi_document($pdf, $filename , $optlist){}
* @param int $doc
* @param int $pagenumber
* @param string $optlist
*
*
* @return int
*
*
* @link https://secure.php.net/manual/en/function.pdf-open-pdi-page.php
*/
function PDF_open_pdi_page($pdf, $doc , $pagenumber , $optlist){}
@ -2925,9 +2925,9 @@ function PDF_open_pdi_page($pdf, $doc , $pagenumber , $optlist){}
* @param string $filename
* @param string $optlist
* @param int $len
*
*
* @return int
*
*
* @link https://secure.php.net/manual/en/function.pdf-open-pdi.php
*/
function PDF_open_pdi($pdf, $filename , $optlist , $len){}
@ -2936,9 +2936,9 @@ function PDF_open_pdi($pdf, $filename , $optlist , $len){}
* @param resource $pdf
* @param int $doc
* @param string $path
*
*
* @return float
*
*
* @link https://secure.php.net/manual/en/function.pdf-pcos-get-number.php
*/
function PDF_pcos_get_number($pdf, $doc , $path){}
@ -3415,9 +3415,9 @@ function PDF_show_xy($pdf, $text, $x, $y){}
/**
* @param resource $pdf
* @param string $text
*
*
* @return bool
*
*
* @link https://secure.php.net/manual/en/function.pdf-show.php
*/
function PDF_show($pdf, $text){}
@ -3426,9 +3426,9 @@ function PDF_show($pdf, $text){}
* @param resource $pdf
* @param float $alpha
* @param float $beta
*
*
* @return bool
*
*
* @link https://secure.php.net/manual/en/function.pdf-skew.php
*/
function PDF_skew($pdf, $alpha, $beta){}
@ -3438,18 +3438,18 @@ function PDF_skew($pdf, $alpha, $beta){}
* @param string $text
* @param int $font
* @param float $fontsize
*
*
* @return float
*
*
* @link https://secure.php.net/manual/en/function.pdf-stringwidth.php
*/
function PDF_stringwidth($pdf, $text, $font, $fontsize){}
/**
* @param resource $pdf
*
*
* @return bool
*
*
* @link https://secure.php.net/manual/en/function.pdf-stroke.php
*/
function PDF_stroke($p){}
@ -3457,9 +3457,9 @@ function PDF_stroke($p){}
/**
* @param resource $pdf
* @param string $optlist
*
*
* @return bool
*
*
* @link https://secure.php.net/manual/en/function.pdf-suspend-page.php
*/
function PDF_suspend_page($pdf, $optlist){}
@ -3468,9 +3468,9 @@ function PDF_suspend_page($pdf, $optlist){}
* @param resource $pdf
* @param float $tx
* @param float $ty
*
*
* @return bool
*
*
* @link https://secure.php.net/manual/en/function.pdf-translate.php
*/
function PDF_translate($pdf, $tx, $ty){}
@ -3478,9 +3478,9 @@ function PDF_translate($pdf, $tx, $ty){}
/**
* @param resource $pdf
* @param string $utf16string
*
*
* @return string
*
*
* @link https://secure.php.net/manual/en/function.pdf-utf16-to-utf8.php
*/
function PDF_utf16_to_utf8($pdf, $utf16string){}
@ -3489,9 +3489,9 @@ function PDF_utf16_to_utf8($pdf, $utf16string){}
* @param resource $pdf
* @param string $utf32string
* @param string $ordering
*
*
* @return string
*
*
* @link https://secure.php.net/manual/en/function.pdf-utf32-to-utf16.php
*/
function PDF_utf32_to_utf16($pdf, $utf32string, $ordering){}
@ -3500,9 +3500,9 @@ function PDF_utf32_to_utf16($pdf, $utf32string, $ordering){}
* @param resource $pdf
* @param string $utf8string
* @param string $ordering
*
*
* @return string
*
*
* @link https://secure.php.net/manual/en/function.pdf-utf8-to-utf16.php
*/
function PDF_utf8_to_utf16($pdf, $utf8string, $ordering){}

View File

@ -339,7 +339,7 @@ function pg_query ($connection = null, $query) {}
function pg_query_params ($connection = null, $query, array $params) {}
/**
* Submits a request to create a prepared statement with the
* Submits a request to create a prepared statement with the
* given parameters, and waits for completion.
* @link https://php.net/manual/en/function.pg-prepare.php
* @param resource $connection [optional] <p>
@ -1387,7 +1387,7 @@ function pg_escape_literal ($connection = null, $data) {}
function pg_unescape_bytea ($data) {}
/**
* Determines the verbosity of messages returned by <b>pg_last_error</b>
* Determines the verbosity of messages returned by <b>pg_last_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>

360
pq/pq.php

File diff suppressed because it is too large Load Diff

View File

@ -381,4 +381,4 @@ function radius_config($radius_handle, $file) { }
* @see radius_send_request()
* @since 1.1.0
*/
function radius_create_request($radius_handle, $type) { }
function radius_create_request($radius_handle, $type) { }

View File

@ -589,4 +589,4 @@ final class RarException extends Exception
public static function setUsingExceptions($using_exceptions)
{
}
}
}

Some files were not shown because too many files have changed in this diff Show More