pg_send_query

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Sends asynchronous query bool pg_send_query ( resource $connection, string $query ) pg_send_query() sends a query or queries asynchronously to the connection. Unlike pg_query(), it can send multiple queries at once to PostgreSQL and get the results one by one using pg_get_result(). Script execution is not blocked while the queries are executing. Use pg_connection_busy() to check if the c

boolval

(PHP 5 >= 5.5.0, PHP 7) Get the boolean value of a variable boolean boolval ( mixed $var ) Returns the boolean value of var. Parameters: var The scalar value being converted to a boolean. Returns: The boolean value of var. Examples: boolval() examples <?php echo '0

EventHttpRequest::getBufferEvent

(PECL event >= 1.8.0) Returns EventBufferEvent object public EventBufferEvent EventHttpRequest::closeConnection ( void ) Returns EventBufferEvent object which represents buffer event that the connection is using. Returns: Returns EventBufferEvent object. The reference counter of the returned object will be incremented by one to protect internal structures a

wincache_ucache_meminfo

(PECL wincache >= 1.1.0) Retrieves information about user cache memory usage array wincache_ucache_meminfo ( void ) Retrieves information about memory usage by user cache. Returns: Array of meta data about user cache memory usage or FALSE on failure The array returned by this function contains the following elements: memory_total - amount of memory in bytes allocated for the user cache

NumberFormatter::format

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Format a number public string NumberFormatter::format ( number $value [, int $type ] ) Object oriented style Procedural style string numfmt_format ( NumberFormatter $fmt , number $value [, int $type ] ) Format a numeric value according to the formatter rules. Parameters: fmt NumberFormatter object.

classkit_method_remove

(PECL classkit >= 0.1) Dynamically removes the given method bool classkit_method_remove ( string $classname, string $methodname ) Note: This function cannot be used to manipulate the currently running (or chained) method. Parameters: classname The class in which to remove the method methodname The name of the method to rem

hw_api::children

(PHP 4, PHP 5 < 5.2.0, PECL hwapi SVN) Returns children of an object array hw_api::children ( array $parameter ) Retrieves the children of a collection or the attributes of a document. The children can be further filtered by specifying an object query. Parameters: parameter The parameter array contains the required elements 'objectIdentifier' and the optional elements

ncurses_slk_clear

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Clears soft labels from screen bool ncurses_slk_clear ( void ) The function ncurses_slk_clear() clears soft label keys from screen. Returns: Returns TRUE on errors, FALSE otherwise. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change wit

SyncReaderWriter::__construct

(PECL sync >= 1.0.0) Constructs a new SyncReaderWriter object public SyncReaderWriter::__construct ([ string $name [, bool $autounlock ]] ) Constructs a named or unnamed reader-writer object. Parameters: name The name of the reader-writer if this is a named reader-writer object. Note: If the name already exists, it must be able to be opened by the current user that

SplObjectStorage::attach

(PHP 5 >= 5.1.0, PHP 7) Adds an object in the storage public void SplObjectStorage::attach ( object $object [, mixed $data = NULL ] ) Adds an object inside the storage, and optionally associate it to some data. Parameters: object The object to add. data The data to associate with the object. Returns: No va