Imagick::readImageFile

(PECL imagick 2.0.0) Reads image from open filehandle bool Imagick::readImageFile ( resource $filehandle [, string $fileName = null ] ) Reads image from open filehandle Parameters: filehandle Reads image from open filehandle fileName Reads image from open filehandle Returns: Returns TRUE on success.

PharData::addFromString

(PHP >= 5.3.0, PECL phar >= 2.0.0) Add a file from the filesystem to the tar/zip archive bool PharData::addFromString ( string $localname, string $contents ) With this method, any string can be added to the tar/zip archive. The file will be stored in the archive with localname as its path. This method is similar to ZipArchive::addFromString(). Parameters: localname

PDO::commit

(PHP 5 >= 5.1.0, PHP 7, PECL pdo >= 0.1.0) Commits a transaction public bool PDO::commit ( void ) Commits a transaction, returning the database connection to autocommit mode until the next call to PDO::beginTransaction() starts a new transaction. Returns: Returns TRUE on success or FALSE on failure. Examples: Committing a basic

SQLite3Stmt::execute

(PHP 5 >= 5.3.0, PHP 7) Executes a prepared statement and returns a result set object public SQLite3Result SQLite3Stmt::execute ( void ) Executes a prepared statement and returns a result set object. Returns: Returns an SQLite3Result object on successful execution of the prepared statement, FALSE on failure.

maxdb_close

(PECL maxdb >= 1.0) Closes a previously opened database connection bool maxdb_close ( resource $link ) Procedural style Object oriented style bool maxdb::close ( void ) The maxdb_close() function closes a previously opened database connection specified by the link parameter. Returns: Returns TRUE on success or FALSE on failure.

shm_remove_var

(PHP 4, PHP 5, PHP 7) Removes a variable from shared memory bool shm_remove_var ( resource $shm_identifier, int $variable_key ) Removes a variable with a given variable_key and frees the occupied memory. Parameters: shm_identifier The shared memory identifier as returned by shm_attach() variable_key The variable key.

oci_field_type_raw

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Tell the raw Oracle data type of the field int oci_field_type_raw ( resource $statement, mixed $field ) Returns Oracle's raw "SQLT" data type of the field. If you want a field's type name, then use oci_field_type() instead. Parameters: statement A valid OCI statement identifier. field Can be the f

newt_checkbox_tree_add_item

(PECL newt >= 0.1) Adds new item to the checkbox tree void newt_checkbox_tree_add_item ( resource $checkboxtree, string $text, mixed $data, int $flags, int $index [, int $... ] ) This function allows to add new item to the checkbox tree. Parameters: checkboxtree This function allows to add new item to the checkbox tree. text This fu

XsltProcessor::setSecurityPrefs

(PHP >= 5.4.0) Set security preferences public int XsltProcessor::setSecurityPrefs ( int $securityPrefs ) Sets the security preferences. Parameters: securityPrefs The new security preferences. The following constants can be ORed: XSL_SECPREF_READ_FILE, XSL_SECPREF_WRITE_FILE, XSL_SECPREF_CREATE_DIRECTORY, XSL_SECPREF_READ_NETWORK, XSL_SECPREF_WRITE_NETWORK. Alternative

bcpowmod

(PHP 5, PHP 7) Raise an arbitrary precision number to another, reduced by a specified modulus string bcpowmod ( string $left_operand, string $right_operand, string $modulus [, int $scale = 0 ] ) Use the fast-exponentiation method to raise left_operand to the power right_operand with respect to the modulus modulus. Parameters: left_operand The left operand, as a string.