dba_firstkey

(PHP 4, PHP 5, PHP 7) Fetch first key string dba_firstkey ( resource $handle ) dba_firstkey() returns the first key of the database and resets the internal key pointer. This permits a linear search through the whole database. Parameters: handle The database handler, returned by dba_open() or dba_popen(). Returns: Returns the key on success or FAL

odbc_fetch_into

(PHP 4, PHP 5, PHP 7) Fetch one result row into array int odbc_fetch_into ( resource $result_id, array &$result_array [, int $rownumber ] ) Fetch one result row into array. Parameters: result_id The result resource. result_array The result array that can be of any type since it will be converted to type array. The array will contain

pspell_config_mode

(PHP 4 >= 4.0.2, PHP 5, PHP 7) Change the mode number of suggestions returned bool pspell_config_mode ( int $dictionary_link, int $mode ) pspell_config_mode() should be used on a config before calling pspell_new_config(). This function determines how many suggestions will be returned by pspell_suggest(). Parameters: dictionary_link pspell_config_mode() should be used o

PDO::lastInsertId

(PHP 5 >= 5.1.0, PHP 7, PECL pdo >= 0.1.0) Returns the ID of the last inserted row or sequence value public string PDO::lastInsertId ([ string $name = NULL ] ) Returns the ID of the last inserted row, or the last value from a sequence object, depending on the underlying driver. For example, PDO_PGSQL requires you to specify the name of a sequence object for the name parameter. Note: This method may not return a

session_pgsql_status

(PECL session_pgsql SVN) Get current save handler status array session_pgsql_status ( void ) This function is currently not documented; only its argument list is available.

tidy::repairString

(PHP 5, PHP 7, PECL tidy >= 0.7.0) Repair a string using an optionally provided configuration file string tidy::repairString ( string $data [, mixed $config [, string $encoding ]] ) Object oriented style Procedural style string tidy_repair_string ( string $data [, mixed $config [, string $encoding ]] ) Repairs the given string. Parameters: data The data to be repaired

ReflectionFunctionAbstract::getEndLine

(PHP 5, PHP 7) Gets end line number public int ReflectionFunctionAbstract::getEndLine ( void ) Get the ending line number. Returns: The ending line number of the user defined function, or FALSE if unknown. This function is currently not documented; only its argument list is available. See

dba_nextkey

(PHP 4, PHP 5, PHP 7) Fetch next key string dba_nextkey ( resource $handle ) dba_nextkey() returns the next key of the database and advances the internal key pointer. Parameters: handle The database handler, returned by dba_open() or dba_popen(). Returns: Returns the key on success or FALSE on failure.

time

(PHP 4, PHP 5, PHP 7) Return current Unix timestamp int time ( void ) Returns the current time measured in the number of seconds since the Unix Epoch (January 1 1970 00:00:00 GMT). Examples: time() example <?php $nextWeek = time() + (7 * 24 * 60 * 60);                    // 7 days; 24 hours; 60 mins; 60 secs echo 'Now:       '. date('Y-

libxml_disable_entity_loader

(PHP 5 >= 5.2.11, PHP 7) Disable the ability to load external entities bool libxml_disable_entity_loader ([ bool $disable = true ] ) Disable/enable the ability to load external entities. Parameters: disable Disable (TRUE) or enable (FALSE) libxml extensions (such as DOM, XMLWriter and XMLReader) to load external entities. Returns: Returns the