shuffle

(PHP 4, PHP 5, PHP 7) Shuffle an array bool shuffle ( array &$array ) This function shuffles (randomizes the order of the elements in) an array. Parameters: array The array. Returns: Returns TRUE on success or FALSE on failure. Notes: This function assigns new keys to the elements in array. It w

HaruPage::textRect

(PECL haru >= 0.0.1) Print the text inside the specified region bool HaruPage::textRect ( float $left, float $top, float $right, float $bottom, string $text [, int $align = HaruPage::TALIGN_LEFT ] ) Prints the text inside the specified region. Parameters: left Left border of the text area. top Top border of the text area.

OAuth::enableDebug

(PECL OAuth >= 0.99.3) Turn on verbose debugging public bool OAuth::enableDebug ( void ) Turns on verbose request information useful for debugging, the debug information is stored in the debugInfo member. Alternatively, the debug member can be set to a non-FALSE value to turn debug on. Returns: TRUE Changelog: 0.99.8 The debug and debugIn

apcu_delete

(PECL apcu >= 4.0.0) Removes a stored variable from the cache mixed apcu_delete ( string $key ) Removes a stored variable from the cache. Parameters: key The key used to store the value (with apcu_store()). Returns: Returns TRUE on success or FALSE on failure. Examples: A apcu_de

stream_encoding

(No version information available, might only be in Git) Set character set for stream encoding bool stream_encoding ( resource $stream [, string $encoding ] ) This function is currently not documented; only its argument list is available.

Memcached::getOption

(PECL memcached >= 0.1.0) Retrieve a Memcached option value public mixed Memcached::getOption ( int $option ) This method returns the value of a Memcached option. Some options correspond to the ones defined by libmemcached, and some are specific to the extension. See Memcached Constants for more information. Parameters: option One of the Memcached::OPT_* constants.

OAuth::getLastResponseInfo

(PECL OAuth >= 0.99.1) Get HTTP information about the last response public array OAuth::getLastResponseInfo ( void ) Get HTTP information about the last response. Returns: Returns an array containing the response information for the last request. Constants from curl_getinfo() may be used. See also: OAuth::fet

mssql_fetch_batch

(PHP 4 >= 4.0.4, PHP 5, PECL odbtp >= 1.1.1) Returns the next batch of records int mssql_fetch_batch ( resource $result ) Returns the next batch of records. Parameters: result The result resource that is being evaluated. This result comes from a call to mssql_query(). Returns: Returns the number of rows in the returned batch.

DirectoryIterator::getCTime

(PHP 5, PHP 7) Get inode change time of the current DirectoryIterator item public int DirectoryIterator::getCTime ( void ) Get the inode change time for the current DirectoryIterator item. Returns: Returns the last change time of the file, as a Unix timestamp. Examples: DirectoryIterator::getCTime() example This example di

natcasesort

(PHP 4, PHP 5, PHP 7) Sort an array using a case insensitive "natural order" algorithm bool natcasesort ( array &$array ) natcasesort() is a case insensitive version of natsort(). This function implements a sort algorithm that orders alphanumeric strings in the way a human being would while maintaining key/value associations. This is described as a "natural ordering". Parameters: