hash_update

(PHP 5 >= 5.1.2, PHP 7, PECL hash >= 1.1) Pump data into an active hashing context bool hash_update ( resource $context, string $data ) Parameters: context Hashing context returned by hash_init(). data Message to be included in the hash digest. Returns: Returns TRUE.

PDF_set_text_matrix

(PHP 4 <= 4.0.4) Set text matrix [deprecated] This function is deprecated since PDFlib version 3, use PDF_scale(), PDF_translate(), PDF_rotate(), or PDF_skew() instead.

Event::free

(PECL libevent >= 0.0.1) Make event non-pending and free resources allocated for this event. public void Event::free ( void ) Removes event from the list of events monitored by libevent, and free resources allocated for the event. Returns: No value is returned. The Event::free() method currently doesn't destruct the object itself. To destruct the object co

trader_cdlhikkakemod

(PECL trader >= 0.2.0) Modified Hikkake Pattern array trader_cdlhikkakemod ( 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

ftp_systype

(PHP 4, PHP 5, PHP 7) Returns the system type identifier of the remote FTP server string ftp_systype ( resource $ftp_stream ) Returns the system type identifier of the remote FTP server. Parameters: ftp_stream The link identifier of the FTP connection. Returns: Returns the remote system type, or FALSE on error.

SphinxClient::setGroupBy

(PECL sphinx >= 0.1.0) Set grouping attribute public bool SphinxClient::setGroupBy ( string $attribute, int $func [, string $groupsort = "@group desc" ] ) Sets grouping attribute, function, and group sorting mode, and enables grouping. Grouping feature is very similar to GROUP BY clause in SQL. Results produced by this function call are going to be the same as produced by the following pseudo code: SELECT ... GROUP BY

Yaf_Loader::registerLocalNamespace

(Yaf >=1.0.0) register local class prefix public void Yaf_Loader::registerLocalNamespace ( mixed $prefix ) Register local class prefix name, Yaf_Loader search classes in two library directories, the one is configured via application.library.directory(in application.ini) which is called local libraray directory; the other is configured via yaf.library (in php.ini) which is callled global library directory, since it can be

dba_sync

(PHP 4, PHP 5, PHP 7) Synchronize database bool dba_sync ( resource $handle ) dba_sync() synchronizes the database. This will probably trigger a physical write to the disk, if supported. Parameters: handle The database handler, returned by dba_open() or dba_popen(). Returns: Returns TRUE on success or FALSE on failure.

radius_put_vendor_attr

(PECL radius >= 1.1.0) Attaches a vendor specific binary attribute bool radius_put_vendor_attr ( resource $radius_handle, int $vendor, int $type, string $value [, int $options = 0 [, int $tag ]] ) Attaches a vendor specific binary attribute to the current RADIUS request. Note: A request must be created via radius_create_request() before this function can be called. Parameters:

pcntl_fork

(PHP 4 >= 4.1.0, PHP 5, PHP 7) Forks the currently running process int pcntl_fork ( void ) The pcntl_fork() function creates a child process that differs from the parent process only in its PID and PPID. Please see your system's fork(2) man page for specific details as to how fork works on your system. Returns: On success, the PID of the child process is returned in the parent's thread of execu