socket_recv

(PHP 4 >= 4.1.0, PHP 5, PHP 7) Receives data from a connected socket int socket_recv ( resource $socket, string &$buf, int $len, int $flags ) The socket_recv() function receives len bytes of data in buf from socket. socket_recv() can be used to gather data from connected sockets. Additionally, one or more flags can be specified to modify the behaviour of the function. buf is passed by reference, so it must be speci

SplFileObject::key

(PHP 5 >= 5.1.0, PHP 7) Get line number public int SplFileObject::key ( void ) Gets the current line number. Note: This number may not reflect the actual line number in the file if SplFileObject::setMaxLineLen() is used to read fixed lengths of the file. Returns: Returns the current line number. Examples: SplFileObject::key() e

enchant_dict_store_replacement

(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 0.1.0 ) Add a correction for a word void enchant_dict_store_replacement ( resource $dict, string $mis, string $cor ) Add a correction for 'mis' using 'cor'. Notes that you replaced @mis with @cor, so it's possibly more likely that future occurrences of @mis will be replaced with @cor. So it might bump @cor up in the suggestion list. Parameters:

Memcached::casByKey

(PECL memcached >= 0.1.0) Compare and swap an item on a specific server public bool Memcached::casByKey ( float $cas_token, string $server_key, string $key, mixed $value [, int $expiration ] ) Memcached::casByKey() is functionally equivalent to Memcached::cas(), except that the free-form server_key can be used to map the key to a specific server. This is useful if you need to keep a bunch of related keys on a certain serv

Yaf_View_Simple::__construct

(Yaf >=1.0.0) Constructor of Yaf_View_Simple final public Yaf_View_Simple::__construct ( string $template_dir [, array $options ] ) Parameters: template_dir The base directory of the templates, by default, it is APPLICATOIN . "/views" for Yaf. options Options for the engine, as of Yaf 2.1.13, you can use short tag "<?=$var?>

ps_begin_pattern

(PECL ps >= 1.2.0) Start a new pattern int ps_begin_pattern ( resource $psdoc, float $width, float $height, float $xstep, float $ystep, int $painttype ) Starts a new pattern. A pattern is like a page containing e.g. a drawing which can be used for filling areas. It is used like a color by calling ps_setcolor() and setting the color space to pattern. Parameters: psdoc R

Phar::setAlias

(PHP >= 5.3.0, PECL phar >= 1.2.1) Set the alias for the Phar archive public bool Phar::setAlias ( string $alias ) Note: This method requires the php.ini setting phar.readonly to be set to 0 in order to work for Phar objects. Otherwise, a PharException will be thrown. Set the alias for the Phar archive, and write it as the permanent alias for this phar archive. An alias can be used internally to a phar archive to en

SoapClient::__getFunctions

(PHP 5 >= 5.0.1, PHP 7) Returns list of available SOAP functions public array SoapClient::__getFunctions ( void ) Returns an array of functions described in the WSDL for the Web service. Note: This function only works in WSDL mode. Returns: The array of SOAP function prototypes, detailing the return type, the function name and type-hinted paramaters.

m_getcell

(PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0) Get a specific cell from a comma delimited response by column name string m_getcell ( resource $conn, int $identifier, string $column, int $row ) Parameters: conn An MCVE_CONN resource returned by m_initengine(). identifier An MCVE_CONN resource returned by m_initengine().

preg_filter

(PHP 5 >= 5.3.0, PHP 7) Perform a regular expression search and replace mixed preg_filter ( mixed $pattern, mixed $replacement, mixed $subject [, int $limit = -1 [, int &$count ]] ) preg_filter() is identical to preg_replace() except it only returns the (possibly transformed) subjects where there was a match. For details about how this function works, read the preg_replace() documentation. Retur