preg_split

(PHP 4, PHP 5, PHP 7) Split string by a regular expression array preg_split ( string $pattern, string $subject [, int $limit = -1 [, int $flags = 0 ]] ) Split the given string by a regular expression. Parameters: pattern The pattern to search for, as a string. subject The input string. limit If spec

TokyoTyrantTable::put

(PECL tokyo_tyrant >= 0.1.0) Store a row public int TokyoTyrantTable::put ( string $key, array $columns ) Puts a new row into the database. This method parameters are key which is the primary key of the row, passing NULL will generate a new unique id. value is an array containing the row contents which is usually key value pairs. Parameters: key The primary key of the

deg2rad

(PHP 4, PHP 5, PHP 7) Converts the number in degrees to the radian equivalent float deg2rad ( float $number ) This function converts number from degrees to the radian equivalent. Parameters: number Angular value in degrees Returns: The radian equivalent of number Examples: deg2rad()

SessionHandler::write

(PHP 5 >= 5.4.0, PHP 7) Write session data public bool SessionHandler::write ( string $session_id, string $session_data ) Writes the session data to the session storage. Called by normal PHP shutdown, by session_write_close(), or when session_register_shutdown() fails. PHP will call SessionHandler::close() immediately after this method returns. This method wraps the internal PHP save handler defined in the session.save_

HaruPage::getLineCap

(PECL haru >= 0.0.1) Get the current line cap style int HaruPage::getLineCap ( void ) Get the current line cap style. Returns: Returns the current line cap style. The result value is one of the following: HaruPage::BUTT_END - the line is squared off at the endpoint of the path. HaruPage::ROUND_END - the end of the line becomes a semicircle with center in the end point of the path. HaruPag

curl_share_close

(PHP 5 >= 5.5.0, PHP 7) Close a cURL share handle void curl_share_close ( resource $sh ) Closes a cURL share handle and frees all resources. Parameters: sh A cURL share handle returned by curl_share_init() Returns: No value is returned. Examples: curl_share_setopt() example

CachingIterator::__construct

(PHP 5, PHP 7) Construct a new CachingIterator object for the iterator. public CachingIterator::__construct ( Iterator $iterator [, int $flags = self::CALL_TOSTRING ] ) Parameters: iterator Iterator to cache flags Bitmask of flags. This function is currently not documented; only its argument l

Ev::now

(PECL ev >= 0.2.0) Returns the time when the last iteration of the default event loop has started. final public static double Ev::now ( void ) Returns the time when the last iteration of the default event loop has started. This is the time that timers( EvTimer and EvPeriodic ) are based on, and referring to it is usually faster then calling Ev::time() . Returns: Returns number of seconds(fracti

IntlCalendar::roll

(PHP 5.5.0, PHP 7, PECL >= 3.0.0a1) Add value to field without carrying into more significant fields public bool IntlCalendar::roll ( int $field, mixed $amountOrUpOrDown ) Object oriented style Procedural style bool intlcal_roll ( IntlCalendar $cal , int $field , mixed $amountOrUpOrDown ) Adds a (signed) amount to a field. The difference with respect to IntlCalendar::add() is that when the field value overflows, it d

getmyinode

(PHP 4, PHP 5, PHP 7) Gets the inode of the current script int getmyinode ( void ) Gets the inode of the current script. Returns: Returns the current script's inode as an integer, or FALSE on error. See also: getmygid() - getmyuid() - getmypid() -