eio_get_last_error

(PECL eio >= 1.0.0) Returns string describing the last error associated with a request resource string eio_get_last_error ( resource $req ) eio_get_last_error() returns string describing the last error associated with req. Parameters: req The request resource Returns: eio_get_last_error() returns string describing the last error associated wit

ocisavelobfile

(PHP 4, PHP 5, PHP 7, PECL OCI8 >= 1.0.0) Alias of OCI-Lob::import() Alias of OCI-Lob::import() This alias has been DEPRECATED as of PHP 5.4.0. Relying on this alias is highly discouraged.

SolrQuery::removeSortField

(PECL solr >= 0.9.2) Removes one of the sort fields public SolrQuery SolrQuery::removeSortField ( string $field ) Removes one of the sort fields Parameters: field The name of the field Returns: Returns the current SolrQuery object, if the return value is used.

IntlChar::isIDIgnorable

(PHP 7) Check if code point is an ignorable character public static bool IntlChar::isIDIgnorable ( mixed $codepoint ) Determines if the specified character should be regarded as an ignorable character in an identifier. TRUE for characters with general category "Cf" (format controls) as well as non-whitespace ISO controls (U+0000..U+0008, U+000E..U+001B, U+007F..U+009F). Note: Note that Unicode just recommends to ignore

SplDoublyLinkedList::current

(PHP 5 >= 5.3.0, PHP 7) Return current array entry public mixed SplDoublyLinkedList::current ( void ) Get the current doubly linked list node. Returns: The current node value.

ldap_compare

(PHP 4 >= 4.0.2, PHP 5, PHP 7) Compare value of attribute found in entry specified with DN mixed ldap_compare ( resource $link_identifier, string $dn, string $attribute, string $value ) Compare value of attribute with value of same attribute in an LDAP directory entry. Parameters: link_identifier An LDAP link identifier, returned by ldap_connect().

posix_getegid

(PHP 4, PHP 5, PHP 7) Return the effective group ID of the current process int posix_getegid ( void ) Return the numeric effective group ID of the current process. Returns: Returns an integer of the effective group ID. Examples: posix_getegid() example This example will print out the effective group id, once it is changed

GmagickPixel::setcolor

(PECL gmagick >= Unknown) Sets the color public GmagickPixel GmagickPixel::setcolor ( string $color ) Sets the color described by the GmagickPixel object, with a string (e.g. "blue", "#0000ff", "rgb(0,0,255)", "cmyk(100,100,100,10)", etc.). Parameters: color The color definition to use in order to initialise the GmagickPixel object. Returns: T

SplDoublyLinkedList::prev

(PHP 5 >= 5.3.0, PHP 7) Move to previous entry public void SplDoublyLinkedList::prev ( void ) Move the iterator to the previous node. Returns: No value is returned.

array_reduce

(PHP 4 >= 4.0.5, PHP 5, PHP 7) Iteratively reduce the array to a single value using a callback function mixed array_reduce ( array $array, callable $callback [, mixed $initial = NULL ] ) array_reduce() applies iteratively the callback function to the elements of the array, so as to reduce the array to a single value. Parameters: array The input array.