libxml_get_last_error

(PHP 5 >= 5.1.0, PHP 7) Retrieve last error from libxml LibXMLError libxml_get_last_error ( void ) Retrieve last error from libxml. Returns: Returns a LibXMLError object if there is any error in the buffer, FALSE otherwise. See also: libxml_get_errors() - libxml_clear_errors() -

mysqli_get_client_version

(PHP 5, PHP 7) Returns the MySQL client version as an integer int mysqli_get_client_version ( mysqli $link ) Object oriented style int $mysqli->client_version; Procedural style Returns client version number as an integer. Returns: A number that represents the MySQL client library version in format: main_version*10000 + minor_version *100 + sub_version. For example, 4.1.0 is returned as 40100.

OCI-Lob::export

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Exports LOB's contents to a file bool OCI-Lob::export ( string $filename [, int $start [, int $length ]] ) Exports LOB contents to a file. Parameters: filename Path to the file. start Indicates from where to start exporting. length Indicates the length of data to

RarArchive::open

(PECL rar >= 2.0.0) Open RAR archive public static RarArchive RarArchive::open ( string $filename [, string $password = NULL [, callable $volume_callback = NULL ]] ) Object oriented style (method): Procedural style: RarArchive rar_open ( string $filename [, string $password = NULL [, callable $volume_callback = NULL ]] ) Open specified RAR archive and return RarArchive instance representing it. Note: If opening a m

mysqli_stmt::$num_rows

(PHP 5, PHP 7) Return the number of rows in statements result set int mysqli_stmt_num_rows ( mysqli_stmt $stmt ) Object oriented style int $mysqli_stmt->num_rows; Procedural style Returns the number of rows in the result set. The use of mysqli_stmt_num_rows() depends on whether or not you used mysqli_stmt_store_result() to buffer the entire result set in the statement handle. If you use mysqli_stmt_store_result(), mysq

bcompiler_parse_class

(PECL bcompiler >= 0.4) Reads the bytecodes of a class and calls back to a user function bool bcompiler_parse_class ( string $class, string $callback ) Reads the bytecodes of a class and calls back to a user function. Parameters: class The class name, as a string. callback The class name, as a string. Returns:

GearmanClient::removeOptions

(PECL gearman >= 0.6.0) Remove client options public bool GearmanClient::removeOptions ( int $options ) Removes (unsets) one or more options. Parameters: options The options to be removed (unset) Returns: Always returns TRUE.

Imagick::count

(No version information available, might only be in Git) Description public void Imagick::count ([ string $mode ] ) Returns the number of images. Parameters: mode An unused argument. Currently there is a non-particularly well defined feature in PHP where calling count() on a countable object might (or might not) require this method to accept a parameter. This parameter i

IntlTimeZone::fromDateTimeZone

(PHP 5.5.0, PHP 7, PECL >= 3.0.0a1) Create a timezone object from DateTimeZone public static IntlTimeZone IntlTimeZone::fromDateTimeZone ( DateTimeZone $zoneId ) Parameters: zoneId Returns: This function is currently not documented; only its argument list is available.

Imagick::contrastImage

(PECL imagick 2.0.0) Change the contrast of the image bool Imagick::contrastImage ( bool $sharpen ) Enhances the intensity differences between the lighter and darker elements of the image. Set sharpen to a value other than 0 to increase the image contrast otherwise the contrast is reduced. Parameters: sharpen The sharpen value Returns: Returns TR