maxdb_stmt_num_rows

(PECL maxdb >= 1.0) Return the number of rows in statements result set int maxdb_stmt_num_rows ( resource $stmt ) Procedural style Object oriented style int $maxdb_stmt->num_rows; Returns the number of rows in the result set. Returns: An integer representing the number of rows in result set. Examples: Object oriented style

cubrid_lob2_import

(PECL CUBRID >= 8.4.1) Import BLOB/CLOB data from a file. bool cubrid_lob2_import ( resource $lob_identifier, string $file_name ) The cubrid_lob2_import() function is used to save the contents of BLOB/CLOB data from a file. To use this function, you must use cubrid_lob2_new() or fetch a lob object from CUBRID database first. If the file already exists, the operation will fail. This function will not influence the cursor p

Judy::offsetExists

(PECL judy >= 0.1.1) Whether a offset exists public bool Judy::offsetExists ( mixed $offset ) Whether or not an offset exists. Parameters: offset An offset to check for. Returns: Returns TRUE on success or FALSE on failure.

OAuth::getLastResponseInfo

(PECL OAuth >= 0.99.1) Get HTTP information about the last response public array OAuth::getLastResponseInfo ( void ) Get HTTP information about the last response. Returns: Returns an array containing the response information for the last request. Constants from curl_getinfo() may be used. See also: OAuth::fet

CairoContext::getGroupTarget

(PECL cairo >= 0.1.0) The getGroupTarget purpose public void CairoContext::getGroupTarget ( void ) Object oriented style (method): Procedural style: void cairo_get_group_target ( CairoContext $context ) Description here. Parameters: context Description... Returns: Description... This function is currently

cairo_surface_write_to_png

(PECL cairo >= 0.1.0) Description void cairo_surface_write_to_png ( CairoSurface $surface, resource $stream ) The function description goes here. Parameters: surface Description... stream Description... Returns: What is returned on success and failure This function is cu

MongoClient::setReadPreference

(PECL mongo >=1.3.0) Set the read preference for this connection public bool MongoClient::setReadPreference ( string $read_preference [, array $tags ] ) Parameters: read_preference The read preference mode: MongoClient::RP_PRIMARY, MongoClient::RP_PRIMARY_PREFERRED, MongoClient::RP_SECONDARY, MongoClient::RP_SECONDARY_PREFERRED, or MongoClient::RP_NEAREST.

MongoGridFSFile::getResource

(PECL mongo >=1.3.0) Returns a resource that can be used to read the stored file public resource MongoGridFSFile::getResource ( void ) This method returns a stream resource that can be used with all file functions in PHP that deal with reading files. The contents of the file are pulled out of MongoDB on the fly, so that the whole file does not have to be loaded into memory first. At most two GridFSFile chunks will be lo

MongoGridFSFile::write

(PECL mongo >=0.9.0) Writes this file to the filesystem public int MongoGridFSFile::write ([ string $filename = NULL ] ) Parameters: filename The location to which to write the file. If none is given, the stored filename will be used. Returns: Returns the number of bytes written. Examples:

MongoGridFSFile::getBytes

(PECL mongo >=0.9.0) Returns this file's contents as a string of bytes public string MongoGridFSFile::getBytes ( void ) Warning: this will load the file into memory. If the file is bigger than your memory, this will cause problems! Returns: Returns a string of the bytes in the file. Examples: MongoGridFSFile::getBytes() example