inotify_init

(PECL inotify >= 0.1.2) Initialize an inotify instance resource inotify_init ( void ) Initialize an inotify instance for use with inotify_add_watch() Returns: A stream resource or FALSE on error. Examples: Example usage of inotify <?php // Open an inotify instance $fd = inotify_init(); // Watch __FILE__ for metadat

ZipArchive::getArchiveComment

(PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.1.0) Returns the Zip archive comment string ZipArchive::getArchiveComment ([ int $flags ] ) Returns the Zip archive comment. Parameters: flags If flags is set to ZipArchive::FL_UNCHANGED, the original unchanged comment is returned. Returns: Returns the Zip archive comment or FALSE on failure.

pg_connection_reset

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Reset connection (reconnect) bool pg_connection_reset ( resource $connection ) pg_connection_reset() resets the connection. It is useful for error recovery. Parameters: connection PostgreSQL database connection resource. Returns: Returns TRUE on success or FALSE on failure.

trader_macdext

(PECL trader >= 0.2.0) MACD with controllable MA type array trader_macdext ( array $real [, integer $fastPeriod [, integer $fastMAType [, integer $slowPeriod [, integer $slowMAType [, integer $signalPeriod [, integer $signalMAType ]]]]]] ) Parameters: real Array of real values. fastPeriod Number of period for the fast MA. Valid range f

Memcache::add

(PECL memcache >= 0.2.0) Add an item to the server bool Memcache::add ( string $key, mixed $var [, int $flag [, int $expire ]] ) Memcache::add() stores variable var with key only if such key doesn't exist at the server yet. Also you can use memcache_add() function. Parameters: key The key that will be associated with the item. var Th

array_walk_recursive

(PHP 5, PHP 7) Apply a user function recursively to every member of an array bool array_walk_recursive ( array &$array, callable $callback [, mixed $userdata = NULL ] ) Applies the user-defined callback function to each element of the array. This function will recurse into deeper arrays. Parameters: array The input array. callback

getallheaders

(PHP 4, PHP 5, PHP 7) Fetch all HTTP request headers array getallheaders ( void ) Fetches all HTTP headers from the current request. This function is an alias for apache_request_headers(). Please read the apache_request_headers() documentation for more information on how this function works. Returns: An associative array of all the HTTP headers in the current request, or FALSE on failure.

Memcache::setCompressThreshold

(PECL memcache >= 2.0.0) Enable automatic compression of large values bool Memcache::setCompressThreshold ( int $threshold [, float $min_savings ] ) Memcache::setCompressThreshold() enables automatic compression of large values. You can also use the memcache_set_compress_threshold() function. Note: This function has been added to Memcache version 2.0.0. Parameters: threshold

Locale::setDefault

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) sets the default runtime locale public static bool Locale::setDefault ( string $locale ) Object oriented style Procedural style bool locale_set_default ( string $locale ) Sets the default runtime locale to $locale. This changes the value of INTL global 'default_locale' locale identifier. UAX #35 extensions are accepted. Parameters:

TokyoTyrantTable::putCat

(PECL tokyo_tyrant >= 0.1.0) Concatenates to a row public void TokyoTyrantTable::putCat ( string $key, array $columns ) This method can be used to add new columns to existing records. Existing keys will be left unmodified but any new columns will be appended to the row. Passing null as key will generate a new row. Parameters: key The primary key of the row or NULL