imap_lsub

(PHP 4, PHP 5, PHP 7) List all the subscribed mailboxes array imap_lsub ( resource $imap_stream, string $ref, string $pattern ) Gets an array of all the mailboxes that you have subscribed. Parameters: imap_stream An IMAP stream returned by imap_open(). ref ref should normally be just the server specification as described in imap_open()

EvPeriodic::set

(PECL ev >= 0.2.0) Configures the watcher public void EvPeriodic::set ( double $offset , double $interval ) (Re-)Configures EvPeriodic watcher Parameters: offset The same meaning as for EvPeriodic::__construct() . See Periodic watcher operation modes interval The same meaning as for EvPeriodic::__construct() . See Periodic watcher

ArrayIterator::next

(PHP 5 >= 5.0.0, PHP 7) Move to next entry public void ArrayIterator::next ( void ) The iterator to the next entry. Returns: No value is returned. Examples: ArrayIterator::next() example <?php $arrayobject = new ArrayObject(); $arrayobject[] = 'zero'; $arrayobject[] = 'one'; $iterator = $arrayobject->getIterat

imap_base64

(PHP 4, PHP 5, PHP 7) Decode BASE64 encoded text string imap_base64 ( string $text ) Decodes the given BASE-64 encoded text. Parameters: text The encoded text Returns: Returns the decoded message as a string. See also: imap_binary() -

imap_list

(PHP 4, PHP 5, PHP 7) Read the list of mailboxes array imap_list ( resource $imap_stream, string $ref, string $pattern ) Read the list of mailboxes. Parameters: imap_stream An IMAP stream returned by imap_open(). ref ref should normally be just the server specification as described in imap_open(). pattern

db2_commit

(PECL ibm_db2 >= 1.0.0) Commits a transaction bool db2_commit ( resource $connection ) Commits an in-progress transaction on the specified connection resource and begins a new transaction. PHP applications normally default to AUTOCOMMIT mode, so db2_commit() is not necessary unless AUTOCOMMIT has been turned off for the connection resource. Parameters: connection A v

php_sapi_name

(PHP 4 >= 4.0.1, PHP 5, PHP 7) Returns the type of interface between web server and PHP string php_sapi_name ( void ) Returns a lowercase string that describes the type of interface (the Server API, SAPI) that PHP is using. For example, in CLI PHP this string will be "cli" whereas with Apache it may have several different values depending on the exact SAPI used. Possible values are listed below. Retu

IntlDateFormatter::getCalendarObject

(PHP 5 >= 5.5.0, PHP 7, PECL intl >= 3.0.0) Get copy of formatterʼs calendar object public IntlCalendar IntlDateFormatter::getCalendarObject ( void ) Object oriented style Procedural style IntlCalendar datefmt_get_calendar_object ( void ) Obtain a copy of the calendar object used internally by this formatter. This calendar will have a type (as in gregorian, japanese, buddhist, roc, persian, islamic, etc.) and a ti

Memcached::appendByKey

(PECL memcached >= 0.1.0) Append data to an existing item on a specific server public bool Memcached::appendByKey ( string $server_key, string $key, string $value ) Memcached::appendByKey() is functionally equivalent to Memcached::append(), except that the free-form server_key can be used to map the key to a specific server. Parameters: server_key The key identifying t

ImagickDraw::render

(PECL imagick 2.0.0) Renders all preceding drawing commands onto the image bool ImagickDraw::render ( void ) Renders all preceding drawing commands onto the image. Returns: Returns TRUE on success or FALSE on failure. This function is currently not documented; only its argument list is available.