Gmagick::setimagedelay

(PECL gmagick >= Unknown) Sets the image delay public Gmagick Gmagick::setimagedelay ( int $delay ) Sets the image delay Parameters: delay The image delay in 1/100th of a second. Returns: The Gmagick object on success. Exception: Throws an GmagickException on error.

CairoFontFace::status

(PECL cairo >= 0.1.0) Check for CairoFontFace errors public int CairoFontFace::status ( void ) Object oriented style (method): Procedural style: int cairo_font_face_status ( CairoFontFace $fontface ) Checks whether an error has previously occurred for this font face Parameters: fontface A valid CairoFontFace object Returns: CAIRO_STATUS_SUCCE

get_declared_traits

(PHP 5 >= 5.4.0, PHP 7) Returns an array of all declared traits array get_declared_traits ( void ) Returns: Returns an array with names of all declared traits in values. Returns NULL in case of a failure. See also: class_uses() -

svn_revert

(PECL svn >= 0.3.0) Revert changes to the working copy bool svn_revert ( string $path [, bool $recursive = false ] ) Revert any local changes to the path in a working copy. Parameters: path The path to the working repository. recursive Optionally make recursive changes. Returns: Returns TRUE on success or F

timezone_name_from_abbr

(PHP 5 >= 5.1.3, PHP 7) Returns the timezone name from abbreviation string timezone_name_from_abbr ( string $abbr [, int $gmtOffset = -1 [, int $isdst = -1 ]] ) Parameters: abbr Time zone abbreviation. gmtOffset Offset from GMT in seconds. Defaults to -1 which means that first found time zone corresponding to abbr is returned. Otherw

RecursiveIteratorIterator::getSubIterator

(PHP 5, PHP 7) The current active sub iterator public RecursiveIterator RecursiveIteratorIterator::getSubIterator ([ int $level ] ) Parameters: level Returns: The current active sub iterator. This function is currently not documented; only its argument list is available.

ereg_replace

(PHP 4, PHP 5) Replace regular expression string ereg_replace ( string $pattern, string $replacement, string $string ) This function scans string for matches to pattern, then replaces the matched text with replacement. Parameters: pattern A POSIX extended regular expression. replacement If pattern contains parenthesized substrings, repl

DOMNode::hasAttributes

(PHP 5, PHP 7) Checks if node has attributes public bool DOMNode::hasAttributes ( void ) This method checks if the node has attributes. The tested node has to be an XML_ELEMENT_NODE. Returns: Returns TRUE on success or FALSE on failure. See also: DOMNode::hasChildNodes() -

RecursiveIteratorIterator::endIteration

(PHP 5 >= 5.1.0, PHP 7) End Iteration public void RecursiveIteratorIterator::endIteration ( void ) Called when the iteration ends (when RecursiveIteratorIterator::valid() first returns FALSE. Returns: No value is returned. This function is currently not documented; only its argument list is available.

ArrayObject::count

(PHP 5 >= 5.0.0, PHP 7) Get the number of public properties in the ArrayObject public int ArrayObject::count ( void ) Get the number of public properties in the ArrayObject. Returns: The number of public properties in the ArrayObject. Note: When the ArrayObject is constructed from an array all properties are public. Examples: A