SphinxClient::open

(PECL sphinx >= 1.0.3) Opens persistent connection to the server public bool SphinxClient::open ( void ) Opens persistent connection to the server. Returns: Returns TRUE on success or FALSE on failure. Changelog: 1.0.3 Added SphinxClient::open(), available only if compiled with libsphinxclient >= 0.9.9.

taint

(PECL taint >=0.1.0) Taint a string bool taint ( string &$string [, string $... ] ) Make a string tainted. This is used for testing purpose only. Parameters: string Make a string tainted. This is used for testing purpose only. ... Make a string tainted. This is used for testing purpose only. Returns: Ret

dio_read

(PHP 4 >= 4.2.0, PHP 5 <= 5.0.5, PHP 7) Reads bytes from a file descriptor string dio_read ( resource $fd [, int $len = 1024 ] ) The function dio_read() reads and returns len bytes from file with descriptor fd. Parameters: fd The file descriptor returned by dio_open(). len The number of bytes to read. If not specified, dio_read()

ImagickPixelIterator::newPixelRegionIterator

(PECL imagick 2.0.0) Returns a new pixel iterator bool ImagickPixelIterator::newPixelRegionIterator ( Imagick $wand, int $x, int $y, int $columns, int $rows ) Returns a new pixel iterator. Parameters: wand Returns a new pixel iterator. x Returns a new pixel iterator. y Returns a new pixel iterator.

session_pgsql_get_error

(PECL session_pgsql SVN) Returns number of errors and last error message array session_pgsql_get_error ([ bool $with_error_message = false ] ) Get the number of errors and optional the error messages. Parameters: with_error_message Set to TRUE the literal error message for each error is also returned. Returns: The number of errors are returned a

sqlite_last_error

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Returns the error code of the last error for a database int sqlite_last_error ( resource $dbhandle ) Object oriented style (method): public int SQLiteDatabase::lastError ( void ) Returns the error code from the last operation performed on dbhandle (the database handle), or 0 when no error occurred. A human readable description of the error code can be retrieved using sqlite_error_

trader_cdlshortline

(PECL trader >= 0.2.0) Short Line Candle array trader_cdlshortline ( 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. close Closing

CairoSolidPattern::getRgba

(PECL cairo >= 0.1.0) The getRgba purpose public array CairoSolidPattern::getRgba ( void ) The method description goes here. Returns: Description... This function is currently not documented; only its argument list is available. Examples: CairoSolidPattern::getRgba() example

glob://

Find pathnames matching pattern The glob: stream wrapper is available since PHP 5.3.0. Examples: Basic usage <?php // Loop over all *.php files in ext/spl/examples/ directory // and print the filename and its size $it = new DirectoryIterator("glob://ext/spl/examples/*.php"); foreach($it as $f) {     printf("%s: %.1FK\n", $f->getFilename(), $f->getSize()/1024); } ?>

Gmagick::getimageformat

(PECL gmagick >= Unknown) Returns the format of a particular image in a sequence public string Gmagick::getimageformat ( void ) Returns the format of a particular image in a sequence. Returns: Returns a string containing the image format on success. Exception: Throws an GmagickException on error.