OCI-Lob::size

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Returns size of large object int OCI-Lob::size ( void ) Gets the size of the large object. Returns: Returns length of large object value or FALSE on failure. Empty objects have zero length.

ImagickDraw::getClipPath

(PECL imagick 2.0.0) Obtains the current clipping path ID string ImagickDraw::getClipPath ( void ) Obtains the current clipping path ID. Returns: Returns a string containing the clip path ID or false if no clip path exists. This function is currently not documented; only its argument list is available.

openssl_pkcs12_read

(PHP 5 >= 5.2.2, PHP 7) Parse a PKCS#12 Certificate Store into an array bool openssl_pkcs12_read ( string $pkcs12, array &$certs, string $pass ) openssl_pkcs12_read() parses the PKCS#12 certificate store supplied by pkcs12 into a array named certs. Parameters: pkcs12 The certificate store contents, not its file name. certs On suc

maxdb_num_rows

(PECL maxdb >= 1.0) Gets the number of rows in a result int maxdb_num_rows ( resource $result ) Procedural style Object oriented style int $maxdb->num_rows; Returns the number of rows in the result set. The use of maxdb_num_rows() depends on whether you use buffered or unbuffered result sets. In case you use unbuffered resultsets maxdb_num_rows() will not correct the correct number of rows until all the rows in the

maxdb_rpl_probe

(PECL maxdb >= 1.0) RPL probe bool maxdb_rpl_probe ( resource $link ) This function is currently not documented; only its argument list is available.

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().