db2_escape_string

(PECL ibm_db2 >= 1.6.0) Used to escape certain characters string db2_escape_string ( string $string_literal ) Prepends backslashes to special characters in the string argument. Parameters: string_literal The string that contains special characters that need to be modified. Characters that are prepended with a backslash are \x00, \n, \r, \, ', " and \x1a.

ncurses_filter

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Set LINES for iniscr() and newterm() to 1 void ncurses_filter ( void ) This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release of PHP. This function should be used at your own risk. This function i

ibase_blob_cancel

(PHP 5, PHP 7) Cancel creating blob bool ibase_blob_cancel ( resource $blob_handle ) This function will discard a BLOB if it has not yet been closed by ibase_blob_close(). Parameters: blob_handle A BLOB handle opened with ibase_blob_create(). Returns: Returns TRUE on success or FALSE on failure.

Iterator::next

(PHP 5 >= 5.0.0, PHP 7) Move forward to next element abstract public void Iterator::next ( void ) Moves the current position to the next element. Note: This method is called after each foreach loop. Returns: Any returned value is ignored.

ReflectionClass::newInstanceArgs

(PHP 5 >= 5.1.3, PHP 7) Creates a new class instance from given arguments. public object ReflectionClass::newInstanceArgs ([ array $args ] ) Creates a new instance of the class, the given arguments are passed to the class constructor. Parameters: args The parameters to be passed to the class constructor as an array. Returns: Returns a new inst

PDOStatement::columnCount

(PHP 5 >= 5.1.0, PHP 7, PECL pdo >= 0.2.0) Returns the number of columns in the result set public int PDOStatement::columnCount ( void ) Use PDOStatement::columnCount() to return the number of columns in the result set represented by the PDOStatement object. If the PDOStatement object was returned from PDO::query(), the column count is immediately available. If the PDOStatement object was returned from PDO::prepa

DOMImplementation::createDocumentType

(PHP 5, PHP 7) Creates an empty DOMDocumentType object public DOMDocumentType DOMImplementation::createDocumentType ([ string $qualifiedName = NULL [, string $publicId = NULL [, string $systemId = NULL ]]] ) Creates an empty DOMDocumentType object. Entity declarations and notations are not made available. Entity reference expansions and default attribute additions do not occur. Parameters:

cubrid_errno

(PECL CUBRID >= 8.3.1) Return the numerical value of the error message from previous CUBRID operation int cubrid_errno ([ resource $conn_identifier ] ) Returns the error number from the last CUBRID function. The cubrid_errno() function is used to get the error code of the error that occurred during the API execution. Usually, it gets the error code when API returns false as its return value. Parameters:

Imagick::setImageBackgroundColor

(PECL imagick 2.0.0) Sets the image background color bool Imagick::setImageBackgroundColor ( mixed $background ) Sets the image background color. Parameters: background Sets the image background color. Returns: Returns TRUE on success. Exception: Throws ImagickException on error. Changelog:

shmop_delete

(PHP 4 >= 4.0.4, PHP 5, PHP 7) Delete shared memory block bool shmop_delete ( int $shmid ) shmop_delete() is used to delete a shared memory block. Parameters: shmid The shared memory block identifier created by shmop_open() Returns: Returns TRUE on success or FALSE on failure. Examples: