Memcached::getByKey

(PECL memcached >= 0.1.0) Retrieve an item from a specific server public mixed Memcached::getByKey ( string $server_key, string $key [, callable $cache_cb [, float &$cas_token ]] ) Memcached::getByKey() is functionally equivalent to Memcached::get(), except that the free-form server_key can be used to map the key to a specific server. Parameters: server_key The key

SAMConnection::disconnect

(PECL sam >= 0.1.0) Disconnects from a Messaging Server bool SAMConnection::disconnect ( void ) Calling the "disconnect" method on a SAMConnection object disconnects the PHP script from a messaging server. No messages can be sent or received after a connection has been disconnected. Returns: Returns TRUE on success or FALSE on failure. Example

FilesystemIterator::setFlags

(PHP 5 >= 5.3.0, PHP 7) Sets handling flags public void FilesystemIterator::setFlags ([ int $flags ] ) Sets handling flags. Parameters: flags The handling flags to set. See the FilesystemIterator constants. Returns: No value is returned. Examples: FilesystemIterator::key() example

fann_set_sarprop_step_error_shift

(PECL fann >= 1.0.0) Sets the sarprop step error shift bool fann_set_sarprop_step_error_shift ( resource $ann, float $sarprop_step_error_shift ) Sets the sarprop step error shift. Parameters: ann Neural network resource. sarprop_step_error_shift The sarprop step error shift. Returns: Returns TRUE on success, or

HaruPage::getFillingColorSpace

(PECL haru >= 0.0.1) Get the current filling color space int HaruPage::getFillingColorSpace ( void ) Get the current filling color space. Returns: Returns the current filling color space. The result value is one of the following: HaruDoc::CS_DEVICE_GRAY HaruDoc::CS_DEVICE_RGB HaruDoc::CS_DEVICE_CMYK HaruDoc::CS_CAL_GRAY HaruDoc::CS_CAL_RGB HaruDoc::CS_LAB HaruDoc::CS_ICC_BASED H

Memcached::prepend

(PECL memcached >= 0.1.0) Prepend data to an existing item public bool Memcached::prepend ( string $key, string $value ) Memcached::prepend() prepends the given value string to the value of an existing item. The reason that value is forced to be a string is that prepending mixed types is not well-defined. Note: If the Memcached::OPT_COMPRESSION is enabled, the operation will fail and a warning will be issued, because

trader_macdfix

(PECL trader >= 0.2.0) Moving Average Convergence/Divergence Fix 12/26 array trader_macdfix ( array $real [, integer $signalPeriod ] ) Parameters: real Array of real values. signalPeriod Smoothing for the signal line (nb of period). Valid range from 1 to 100000. Returns: Returns an array with calculated data or

dio_fcntl

(PHP 4 >= 4.2.0, PHP 5 <= 5.0.5, PHP 7) Performs a c library fcntl on fd mixed dio_fcntl ( resource $fd, int $cmd [, mixed $args ] ) The dio_fcntl() function performs the operation specified by cmd on the file descriptor fd. Some commands require additional arguments args to be supplied. Parameters: fd The file descriptor returned by dio_open().

trader_cdladvanceblock

(PECL trader >= 0.2.0) Advance Block array trader_cdladvanceblock ( array $open, array $high, array $low, array $close ) Parameters: open Opening price, array of real values. high High price, array of real values. low Low price, array of real values. close Closing

pg_fetch_all

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Fetches all rows from a result as an array array pg_fetch_all ( resource $result ) pg_fetch_all() returns an array that contains all rows (records) in the result resource. Note: This function sets NULL fields to the PHP NULL value. Parameters: result PostgreSQL query result resource, returned by pg_query(), pg_query_params() or pg_execute