openal_source_play

(PECL openal >= 0.1.0) Start playing the source bool openal_source_play ( resource $source ) Parameters: source An Open AL(Source) resource (previously created by openal_source_create()). Returns: Returns TRUE on success or FALSE on failure. See also: openal

ncurses_ungetmouse

(PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Pushes mouse event to queue bool ncurses_ungetmouse ( array $mevent ) Pushes a KEY_MOUSE event onto the input queue and associates with this event the given state data and screen-relative character cell coordinates, specified in mevent. Parameters: mevent An associative array specifying the event options: "

SplFileObject::setCsvControl

(PHP 5 >= 5.2.0, PHP 7) Set the delimiter and enclosure character for CSV public void SplFileObject::setCsvControl ([ string $delimiter = "," [, string $enclosure = "\"" [, string $escape = "\\" ]]] ) Sets the delimiter and enclosure character for parsing CSV fields. Parameters: delimiter The field delimiter (one character only). enclosure

SimpleXMLElement::asXML

(PHP 5 >= 5.0.1, PHP 7) Return a well-formed XML string based on SimpleXML element public mixed SimpleXMLElement::asXML ([ string $filename ] ) The asXML method formats the parent object's data in XML version 1.0. Parameters: filename If specified, the function writes the data to the file rather than returning it. Returns: If the filename is

pcntl_wexitstatus

(PHP 4 >= 4.1.0, PHP 5, PHP 7) Returns the return code of a terminated child int pcntl_wexitstatus ( int $status ) Returns the return code of a terminated child. This function is only useful if pcntl_wifexited() returned TRUE. Parameters: status The status parameter is the status parameter supplied to a successful call to pcntl_waitpid(). Returns:

ssh2_publickey_list

(PECL ssh2 >= 0.10) List currently authorized publickeys array ssh2_publickey_list ( resource $pkey ) List currently authorized publickeys. Parameters: pkey Publickey Subsystem resource Returns: Returns a numerically indexed array of keys, each of which is an associative array containing: name, blob, and attrs elements. Publickey elements A

Yaf_Dispatcher::__construct

(Yaf >=1.0.0) Yaf_Dispatcher constructor public Yaf_Dispatcher::__construct ( void ) Returns:

MongoCursorInterface::timeout

(PECL mongo >=1.5.0) Sets a client-side timeout for this query abstract public MongoCursorInterface MongoCursorInterface::timeout ( int $ms ) A timeout can be set at any time and will affect subsequent data retrieval associated with this cursor, including fetching more results from the database. Parameters: ms The number of milliseconds for the cursor to wait for a res

event_base_loopexit

(PECL libevent >= 0.0.1) Exit loop after a time bool event_base_loopexit ( resource $event_base [, int $timeout = -1 ] ) The next event loop iteration after the given timer expires will complete normally, then exit without blocking for events again. Parameters: event_base Valid event base resource. timeout Optional timeout parameter

filesize

(PHP 4, PHP 5, PHP 7) Gets file size int filesize ( string $filename ) Gets the size for the given file. Parameters: filename Path to the file. Returns: Returns the size of the file in bytes, or FALSE (and generates an error of level E_WARNING) in case of an error. Note: Because PHP's integer type is signed and many platforms use 32bit integers