RecursiveRegexIterator::getChildren

(PHP 5 >= 5.2.0, PHP 7) Returns an iterator for the current entry. public RecursiveRegexIterator RecursiveRegexIterator::getChildren ( void ) Returns an iterator for the current iterator entry. Returns: An iterator for the current entry, if it can be iterated over by the inner iterator. Exception: An InvalidArgumentException will be thrown if the current entry

mysqli_stmt::more_results

(PHP 5 >= 5.3.0, PHP 7) Check if there are more query results from a multiple query public bool mysqli_stmt::more_results ( void ) Object oriented style (method): Procedural style: bool mysqli_stmt_more_results ( mysql_stmt $stmt ) Checks if there are more query results from a multiple query. Parameters: stmt Procedural style only: A statement identifier returned by my

enchant_dict_describe

(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 0.1.0 ) Describes an individual dictionary mixed enchant_dict_describe ( resource $dict ) Returns the details of the dictionary. Parameters: dict Dictionary resource Returns: Returns TRUE on success or FALSE on failure. Examples: A enchant

OCI-Lob::write

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Writes data to the large object int OCI-Lob::write ( string $data [, int $length ] ) Writes data from the parameter data into the current position of LOB's internal pointer. Parameters: data The data to write in the LOB. length If this parameter is given, writing will stop after length bytes have be

SAMConnection::receive

(PECL sam >= 0.1.0) Receive a message from a queue or subscription. SAMMessage SAMConnection::receive ( string $target [, array $properties ] ) Parameters: target The identity of the queue, topic or subscription from which to receive the message. properties An optional associative array of properties describing other parameters to co

hw_api::parents

(PHP 4, PHP 5 < 5.2.0, PECL hwapi SVN) Returns parents of an object array hw_api::parents ( array $parameter ) Retrieves the parents of an object. The parents can be further filtered by specifying an object query. Parameters: parameter The parameter array contains the required elements 'objectidentifier' and the optional elements 'attributeselector' and 'objectquery'.

get_defined_functions

(PHP 4 >= 4.0.4, PHP 5, PHP 7) Returns an array of all defined functions array get_defined_functions ( void ) Gets an array of all defined functions. Returns: Returns a multidimensional array containing a list of all defined functions, both built-in (internal) and user-defined. The internal functions will be accessible via $arr["internal"], and the user defined ones using $arr["user"] (see exam

trader_cdlkickingbylength

(PECL trader >= 0.2.0) Kicking - bull/bear determined by the longer marubozu array trader_cdlkickingbylength ( array $open, array $high, array $low, array $close ) Parameters: open Opening price, array of real values. high High price, array of real values. low Low price, array of real values.

Scope Resolution Operator (::)

Examples: :: from outside the class definition The Scope Resolution Operator (also called Paamayim Nekudotayim) or in simpler terms, the double colon, is a token that allows access to static, constant, and overridden properties or methods of a class. When referencing these items from outside the class definition, use the name of the class. As of PHP 5.3.0, it's possible to reference the class using a variable. The variable's value can not be a keyword (e.g. self, p

gzinflate

(PHP 4 >= 4.0.4, PHP 5, PHP 7) Inflate a deflated string string gzinflate ( string $data [, int $length = 0 ] ) This function inflates a deflated string. Parameters: data The data compressed by gzdeflate(). length The maximum length of data to decode. Returns: The original uncompressed data or FALSE on erro