SDO_DAS_ChangeSummary::getChangedDataObjects

(^) Get the changed data objects from a change summary SDO_List SDO_DAS_ChangeSummary::getChangedDataObjects ( void ) Get an SDO_List of the SDO_DataObjects which have been changed. These data objects can then be used to identify the types of change made to each, along with the old values. Returns: Returns an SDO_List of SDO_DataObjects. This function is EXPE

Imagick::functionImage

(No version information available, might only be in Git) Applies a function on the image public bool Imagick::functionImage ( int $function, array $arguments [, int $channel = Imagick::CHANNEL_DEFAULT ] ) Applies an arithmetic, relational, or logical expression to a pseudo image. See also » ImageMagick v6 Examples - Image Transformations — Function, Multi-Argument Evaluate This method is available if Imagick has been co

MongoCursor::sort

(PECL mongo >=0.9.0) Sorts the results by given fields public MongoCursor MongoCursor::sort ( array $fields ) Parameters: fields An array of fields by which to sort. Each element in the array has as key the field name, and as value either 1 for ascending sort, or -1 for descending sort. Each result is first sorted on the first field in the array, then (if it exists) on

Memcache::get

(PECL memcache >= 0.2.0) Retrieve item from the server string Memcache::get ( string $key [, int &$flags ] ) array Memcache::get ( array $keys [, array &$flags ] ) Memcache::get() returns previously stored data if an item with such key exists on the server at this moment. You can pass array of keys to Memcache::get() to get array of values. The result array will contain only found key-value pairs.

RarArchive::setAllowBroken

(PECL rar >= 3.0.0) Whether opening broken archives is allowed public bool RarArchive::setAllowBroken ( bool $allow_broken ) Object oriented style (method): Procedural style: bool rar_allow_broken_set ( RarArchive $rarfile , bool $allow_broken ) This method defines whether broken archives can be read or all the operations that attempt to extract the archive entries will fail. Broken archives are archives for which no err

mcrypt_decrypt

(PHP 4 >= 4.0.2, PHP 5, PHP 7) Decrypts crypttext with given parameters string mcrypt_decrypt ( string $cipher, string $key, string $data, string $mode [, string $iv ] ) Decrypts the data and returns the unencrypted data. Parameters: cipher One of the MCRYPT_ciphername constants, or the name of the algorithm as string. key The key with

CURLFile::getPostFilename

(PHP 5 >= 5.5.0, PHP 7) Get file name for POST public string CURLFile::getPostFilename ( void ) Returns: Returns file name for POST.

SWFFont::getWidth

(PHP 5 <= 5.3.0, PECL ming SVN) Returns the string's width float SWFFont::getWidth ( string $string ) swffont::getwidth() returns the string string's width, using font's default scaling. You'll probably want to use the swftext() version of this method which uses the text object's scale. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding d

maxdb_info

(PECL maxdb >= 1.0) Retrieves information about the most recently executed query string maxdb_info ( resource $link ) Procedural style Object oriented style string $maxdb->info; The maxdb_info() function returns a string providing information about the last query executed. The nature of this string is provided below: Possible maxdb_info return values Query type Example result string INSERT INTO...SELECT... Records: 1

Phar::mount

(PHP >= 5.3.0, PECL phar >= 2.0.0) Mount an external path or file to a virtual location within the phar archive final public static void Phar::mount ( string $pharpath, string $externalpath ) Much like the unix file system concept of mounting external devices to paths within the directory tree, Phar::mount() allows referring to external files and directories as if they were inside of an archive. This allows powerful a