newt_button

(PECL newt >= 0.1) Create a new button resource newt_button ( int $left, int $top, string $text ) Creates a new button. Parameters: left X-coordinate of the button. top Y-coordinate of the button. text The text which should be displayed in the button. Returns: Returns a re

dbase_open

(PHP 4, PHP 5, PHP 7) Opens a database int dbase_open ( string $filename, int $mode ) dbase_open() opens a dBase database with the given access mode. Note: When safe mode is enabled, PHP checks whether the files or directories being operated upon have the same UID (owner) as the script that is being executed. Note: This function is affected by open_basedir. Parameters: filename

Phar::setDefaultStub

(Unknown) Used to set the PHP loader or bootstrap stub of a Phar archive to the default loader public bool Phar::setDefaultStub ([ string $index [, string $webindex ]] ) Note: This method requires the php.ini setting phar.readonly to be set to 0 in order to work for Phar objects. Otherwise, a PharException will be thrown. This method is a convenience method that combines the functionality of Phar::createDefaultStub() and

ncurses_clrtobot

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Clear screen from current position to bottom bool ncurses_clrtobot ( void ) Erases all lines from cursor to end of screen and creates blanks. Blanks created by ncurses_clrtobot() have the current background rendition. Returns: Returns TRUE on success or FALSE on failure. This function is EXPERIMEN

gzrewind

(PHP 4, PHP 5, PHP 7) Rewind the position of a gz-file pointer bool gzrewind ( resource $zp ) Sets the file position indicator of the given gz-file pointer to the beginning of the file stream. Parameters: zp The gz-file pointer. It must be valid, and must point to a file successfully opened by gzopen(). Returns: Returns TRUE on success or FALSE o

mysqli_result::fetch_all

(PHP 5 >= 5.3.0, PHP 7) Fetches all result rows as an associative array, a numeric array, or both mixed mysqli_result::fetch_all ([ int $resulttype = MYSQLI_NUM ] ) Object oriented style Procedural style mixed mysqli_fetch_all ( mysqli_result $result [, int $resulttype = MYSQLI_NUM ] ) mysqli_fetch_all() fetches all result rows and returns the result set as an associative array, a numeric array, or both.

Yaf_Config_Simple::count

(Yaf >=1.0.0) The count purpose public void Yaf_Config_Simple::count ( void ) Returns: This function is currently not documented; only its argument list is available.

class_parents

(PHP 5 >= 5.1.0, PHP 7) Return the parent classes of the given class array class_parents ( mixed $class [, bool $autoload = true ] ) This function returns an array with the name of the parent classes of the given class. Parameters: class An object (class instance) or a string (class name). autoload Whether to allow this function t

array_count_values

(PHP 4, PHP 5, PHP 7) Counts all the values of an array array array_count_values ( array $array ) array_count_values() returns an array using the values of array as keys and their frequency in array as values. Parameters: array The array of values to count Returns: Returns an associative array of values from array as keys and their count as value

create_function

(PHP 4 >= 4.0.1, PHP 5, PHP 7) Create an anonymous (lambda-style) function string create_function ( string $args, string $code ) Creates an anonymous function from the parameters passed, and returns a unique name for it. Caution This function internally performs an eval() and as such has the same security issues as eval(). Additionally it has bad performance and memory usage characteristics. If you are using PHP 5.3.