cairo_matrix_rotate

(PECL cairo >= 0.1.0) Description void cairo_matrix_rotate ( CairoMatrix $matrix, float $radians ) The function description goes here. Parameters: matrix Description... radians Description... Returns: What is returned on success and failure This function is currently not

maxdb_query

(PECL maxdb >= 1.0) Performs a query on the database mixed maxdb_query ( resource $link, string $query [, int $resultmode ] ) Procedural style Object oriented style mixed maxdb::query ( string $query ) The maxdb_query() function is used to simplify the act of performing a query against the database represented by the link parameter. Returns: Returns TRUE on success or FALSE on failure. For SEL

MongoCommandCursor::batchSize

(PECL mongo >=1.5.0) Limits the number of elements returned in one batch. public MongoCommandCursor MongoCommandCursor::batchSize ( int $batchSize ) A cursor typically fetches a batch of result objects and store them locally. This method sets the batchSize value to configure the amount of documents retrieved from the server in one round trip. Parameters: batchSize The

ibase_fetch_object

(PHP 5, PHP 7) Get an object from a InterBase database object ibase_fetch_object ( resource $result_id [, int $fetch_flag = 0 ] ) Fetches a row as a pseudo-object from a given result identifier. Subsequent calls to ibase_fetch_object() return the next row in the result set. Parameters: result_id An InterBase result identifier obtained either by ibase_query() or ibase_e

cairo_ps_surface_create

(PECL cairo >= 0.1.0) Description CairoPsSurface cairo_ps_surface_create ( string $file, float $width, float $height ) The function description goes here. Parameters: file Description... width Description... height Description... Returns: What is returned on success and fa

SolrQuery::addHighlightField

(PECL solr >= 0.9.2) Maps to hl.fl public SolrQuery SolrQuery::addHighlightField ( string $field ) Maps to hl.fl. This is used to specify that highlighted snippets should be generated for a particular field Parameters: field Name of the field Returns: Returns the current SolrQuery object, if the return value is used.

ifx_create_blob

(PHP 4, PHP <=5.2.0) Creates an blob object int ifx_create_blob ( int $type, int $mode, string $param ) Creates a blob object. Parameters: type 1 = TEXT, 0 = BYTE mode 0 = blob-object holds the content in memory, 1 = blob-object holds the content in file. param if mode = 0: pointer to the content,

EvPeriodic::again

(PECL ev >= 0.2.0) Simply stops and restarts the periodic watcher again. public void EvPeriodic::again ( void ) Simply stops and restarts the periodic watcher again. This is only useful when attributes are changed. Returns: No value is returned. See also: EvTimer::again() -

SAMConnection::subscribe

(PECL sam >= 0.1.0) Create a subscription to a specified topic. string SAMConnection::subscribe ( string $targetTopic ) The "subscribe" method is used to create a new subscription to a specified topic. Parameters: targetTopic The identity of the topic (topic://topicname) to subscribe to. Returns: A subscription identifier that can be used in

MongoDB::forceError

(PECL mongo >=0.9.5) Creates a database error public bool MongoDB::forceError ( void ) This method is not very useful for normal MongoDB use. It forces a database error to occur. This means that MongoDB::lastError() will return a generic database error after running this command. This command is identical to running: <?php public function forceError() {     return $this->command(array('forceerror' => 1)); }