getrandmax

(PHP 4, PHP 5, PHP 7) Show largest possible random value int getrandmax ( void ) Returns the maximum value that can be returned by a call to rand(). Returns: The largest possible random value returned by rand() See also: rand() - srand() - mt_getrandmax() -

str_replace

(PHP 4, PHP 5, PHP 7) Replace all occurrences of the search string with the replacement string mixed str_replace ( mixed $search, mixed $replace, mixed $subject [, int &$count ] ) This function returns a string or an array with all occurrences of search in subject replaced with the given replace value. If you don't need fancy replacing rules (like regular expressions), you should always use this function instead of pre

trader_cdllongline

(PECL trader >= 0.2.0) Long Line Candle array trader_cdllongline ( 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 Closing p

ImagickDraw::pathLineToAbsolute

(PECL imagick 2.0.0) Draws a line path bool ImagickDraw::pathLineToAbsolute ( float $x, float $y ) Draws a line path from the current point to the given coordinate using absolute coordinates. The coordinate then becomes the new current point. Parameters: x starting x coordinate y ending x coordinate Returns: No

Memcached::getServerList

(PECL memcached >= 0.1.0) Get the list of the servers in the pool public array Memcached::getServerList ( void ) Memcached::getServerList() returns the list of all servers that are in its server pool. Returns: The list of all servers in the server pool. Examples: Memcached::getServerList() example <?php $m = new Mem

openal_buffer_destroy

(PECL openal >= 0.1.0) Destroys an OpenAL buffer bool openal_buffer_destroy ( resource $buffer ) Parameters: buffer An Open AL(Buffer) resource (previously created by openal_buffer_create()). Returns: Returns TRUE on success or FALSE on failure. See also: op

maxdb_stmt_sqlstate

(PECL maxdb >= 1.0) Returns SQLSTATE error from previous statement operation string maxdb_stmt_sqlstate ( resource $stmt ) Returns a string containing the SQLSTATE error code for the most recently invoked prepared statement function that can succeed or fail. The error code consists of five characters. '00000' means no error. The values are specified by ANSI SQL and ODBC. Note: Note that not all MaxDB errors are yet ma

ldap_next_reference

(PHP 4 >= 4.0.5, PHP 5, PHP 7) Get next reference resource ldap_next_reference ( resource $link, resource $entry ) This function is currently not documented; only its argument list is available.

ob_flush

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Flush (send) the output buffer void ob_flush ( void ) This function will send the contents of the output buffer (if any). If you want to further process the buffer's contents you have to call ob_get_contents() before ob_flush() as the buffer contents are discarded after ob_flush() is called. This function does not destroy the output buffer like ob_end_flush() does. R

Phar::mount

(PHP >= 5.3.0, PECL phar >= 2.0.0) Mount an external path or file to a virtual location within the phar archive final public static void Phar::mount ( string $pharpath, string $externalpath ) Much like the unix file system concept of mounting external devices to paths within the directory tree, Phar::mount() allows referring to external files and directories as if they were inside of an archive. This allows powerful a