oci_pconnect

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Connect to an Oracle database using a persistent connection resource oci_pconnect ( string $username, string $password [, string $connection_string [, string $character_set [, int $session_mode ]]] ) Creates a persistent connection to an Oracle server and logs on. Persistent connections are cached and re-used between requests, resulting in reduced overhead on each page load; a typical

PDF_fit_image

(PECL pdflib >= 2.0.0) Place image or template bool PDF_fit_image ( resource $pdfdoc, int $image, float $x, float $y, string $optlist ) Places an image or template on the page, subject to various options. Returns TRUE on success or FALSE on failure.

Name resolution rules

(PHP 5 >= 5.3.0, PHP 7) Examples: Name resolutions illustrated <?php namespace A; use B\D, C\E as F; // function calls foo();      // first tries to call "foo" defined in namespace "A"             // then calls global function "foo" \foo();     // calls function "foo" defined in global scope my\foo();   // calls function "foo" defined in namespace "A\my" F();        // first tr

MongoDB::lastError

(PECL mongo >=0.9.5) Check if there was an error on the most recent db operation performed public array MongoDB::lastError ( void ) This method is equivalent to: <?php public function lastError() {     return $this->command(array('getlasterror' => 1)); } ?> Returns: Returns the error, if there was one. Examples: M

dns_get_mx

(PHP 5, PHP 7) Alias of getmxrr() This function is an alias of: getmxrr().

cairo_svg_surface_create

(PECL cairo >= 0.1.0) Description CairoSvgSurface cairo_svg_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

Gmagick::removeimage

(PECL gmagick >= Unknown) Removes an image from the image list public void Gmagick::removeimage ( void ) Removes an image from the image list. Returns: The Gmagick object on success. Exception: Throws an GmagickException on error.

sqlsrv_rollback

(No version information available, might only be in Git) Rolls back a transaction that was begun with sqlsrv_begin_transaction() bool sqlsrv_rollback ( resource $conn ) Rolls back a transaction that was begun with sqlsrv_begin_transaction() and returns the connection to auto-commit mode. Parameters: conn The connection resource returned by a call to sqlsrv_connect().

Directory::close

(PHP 4, PHP 5, PHP 7) Close directory handle public void Directory::close ([ resource $dir_handle ] ) Same as closedir(), only dir_handle defaults to $this.

mcrypt_enc_is_block_algorithm

(PHP 4 >= 4.0.2, PHP 5, PHP 7) Checks whether the algorithm of the opened mode is a block algorithm bool mcrypt_enc_is_block_algorithm ( resource $td ) Tells whether the algorithm of the opened mode is a block algorithm. Parameters: td The encryption descriptor. Returns: Returns TRUE if the algorithm is a block algorithm or FALSE if it is a st