curl_multi_close

(PHP 5, PHP 7) Close a set of cURL handles void curl_multi_close ( resource $mh ) Closes a set of cURL handles. Parameters: mh A cURL multi handle returned by curl_multi_init(). Returns: No value is returned. Examples: curl_multi_close() example This example will create tw

imap_mail_move

(PHP 4, PHP 5, PHP 7) Move specified messages to a mailbox bool imap_mail_move ( resource $imap_stream, string $msglist, string $mailbox [, int $options = 0 ] ) Moves mail messages specified by msglist to the specified mailbox. Parameters: imap_stream An IMAP stream returned by imap_open(). msglist msglist is a range not just message num

array_replace_recursive

(PHP 5 >= 5.3.0, PHP 7) Replaces elements from passed arrays into the first array recursively array array_replace_recursive ( array $array1, array $array2 [, array $... ] ) array_replace_recursive() replaces the values of array1 with the same values from all the following arrays. If a key from the first array exists in the second array, its value will be replaced by the value from the second array. If the key exists in th

IntlBreakIterator::createCharacterInstance

(No version information available, might only be in Git) Create break iterator for boundaries of combining character sequences public static ReturnType IntlBreakIterator::createCharacterInstance ([ string $"locale" ] ) Parameters: "locale" Returns: This function is currently not documented; only its argument list

NumberFormatter::parse

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Parse a number public mixed NumberFormatter::parse ( string $value [, int $type [, int &$position ]] ) Object oriented style Procedural style mixed numfmt_parse ( NumberFormatter $fmt , string $value [, int $type [, int &$position ]] ) Parse a string into a number using the current formatter rules. Parameters: fmt

SplQueue::enqueue

(PHP 5 >= 5.3.0, PHP 7) Adds an element to the queue. void SplQueue::enqueue ( mixed $value ) Enqueues value at the end of the queue. Note: SplQueue::enqueue() is an alias of SplDoublyLinkedList::push(). Parameters: value The value to enqueue. Returns: No value is returned.

imagepolygon

(PHP 4, PHP 5, PHP 7) Draws a polygon bool imagepolygon ( resource $image, array $points, int $num_points, int $color ) imagepolygon() creates a polygon in the given image. Parameters: image An image resource, returned by one of the image creation functions, such as imagecreatetruecolor(). points An array containing the polygon's vertices

zend_thread_id

(PHP 5, PHP 7) Returns a unique identifier for the current thread int zend_thread_id ( void ) This function returns a unique identifier for the current thread. Returns: Returns the thread id as an integer. Notes: This function is only available if PHP has been built with ZTS (Zend Thread Safety) support and debug mode (--enable-debug).

MongoDB::setProfilingLevel

(PECL mongo >=0.9.0) Sets this database's profiling level public int MongoDB::setProfilingLevel ( int $level ) This changes the current database profiling level. This function is equivalent to running: <?php public function setProfilingLevel($level) {     return $this->command(array('profile' => $level)); } ?> The options for level are 0 (off), 1 (queries > 100ms), and 2 (all queries). If you wou

cubrid_field_flags

(PECL CUBRID >= 8.3.0) Return a string with the flags of the given field offset string cubrid_field_flags ( resource $result, int $field_offset ) This function returns a string with the flags of the given field offset separated by space. You can split the returned value using explode. The possible flags could be: not_null, primary_key, unique_key, foreign_key, auto_increment, shared, reverse_index, reverse_unique and time