SWFMovie::streamMP3

(PHP 5 <= 5.3.0, PECL ming SVN) Streams a MP3 file int SWFMovie::streamMP3 ( mixed $mp3file [, float $skip = 0 ] ) Streams the given MP3 file mp3file. This method is not very robust in dealing with oddities (can skip over an initial ID3 tag, but that's about it). Note that the movie isn't smart enough to put enough frames in to contain the entire mp3 stream- you'll have to add (length of song * frames per second) fra

pg_fetch_all_columns

(PHP 5 >= 5.1.0, PHP 7) Fetches all rows in a particular result column as an array array pg_fetch_all_columns ( resource $result [, int $column = 0 ] ) pg_fetch_all_columns() returns an array that contains all rows (records) in a particular column of the result resource. Note: This function sets NULL fields to the PHP NULL value. Parameters: result PostgreSQL query re

SplObjectStorage::serialize

(PHP 5 >= 5.2.2, PHP 7) Serializes the storage public string SplObjectStorage::serialize ( void ) Returns a string representation of the storage. Returns: A string representing the storage. Examples: SplObjectStorage::serialize() example <?php $s = new SplObjectStorage; $o = new StdClass; $s[$o] = "data"; echo $s-&

stream_wrapper_register

(PHP 4 >= 4.3.2, PHP 5, PHP 7) Register a URL wrapper implemented as a PHP class bool stream_wrapper_register ( string $protocol, string $classname [, int $flags = 0 ] ) Allows you to implement your own protocol handlers and streams for use with all the other filesystem functions (such as fopen(), fread() etc.). Parameters: protocol The wrapper name to be registered.

ncurses_delch

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Delete character at current position, move rest of line left bool ncurses_delch ( void ) Deletes the character under the cursor. All characters to the right of the cursor on the same line are moved to the left one position and the last character on the line is filled with a blank. The cursor position does not change. Returns: Returns

MongoDate::__toString

(PECL mongo >= 0.8.1) Returns a string representation of this date public string MongoDate::__toString ( void ) Returns a string representation of this date, similar to the representation returned by microtime(). Returns: This date.

DOMCharacterData::substringData

(PHP 5, PHP 7) Extracts a range of data from the node string DOMCharacterData::substringData ( int $offset, int $count ) Returns the specified substring. Parameters: offset Start offset of substring to extract. count The number of characters to extract. Returns: The specified substring. If the sum of offset a

mailparse_stream_encode

(PECL mailparse >= 0.9.0) Streams data from source file pointer, apply encoding and write to destfp bool mailparse_stream_encode ( resource $sourcefp, resource $destfp, string $encoding ) Streams data from the source file pointer, apply encoding and write to the destination file pointer. Parameters: sourcefp A valid file handle. The file is streamed through the parse

trader_atr

(PECL trader >= 0.2.0) Average True Range array trader_atr ( array $high, array $low, array $close [, integer $timePeriod ] ) Parameters: high High price, array of real values. low Low price, array of real values. close Closing price, array of real values. timePeriod

PDF_show_xy

(PHP 4, PECL pdflib >= 1.0.0) Output text at given position bool PDF_show_xy ( resource $p, string $text, float $x, float $y ) Prints text in the current font. Returns TRUE on success or FALSE on failure.