sybase_field_seek

(PHP 4, PHP 5, PHP 7) Sets field offset bool sybase_field_seek ( resource $result, int $field_offset ) Seeks to the specified field offset. If the next call to sybase_fetch_field() won't include a field offset, this field would be returned. Parameters: result Seeks to the specified field offset. If the next call to sybase_fetch_field() won't include a field offset, this f

maxdb_store_result

(PECL maxdb >= 1.0) Transfers a result set from the last query resource maxdb_store_result ( resource $link ) Procedural style Object oriented style object maxdb::store_result ( void ) This function has no functionally effect. Returns: Returns a result resource or FALSE if an error occurred. See also: maxdb_

random_int

(PHP 7) Generates cryptographically secure pseudo-random integers int random_int ( int $min, int $max ) Generates cryptographic random integers that are suitable for use where unbiased results are critical, such as when shuffling a deck of cards for a poker game. The sources of randomness used for this function are as follows: On Windows, » CryptGenRandom() will always be used. On Linux, the » getrandom(2) syscall w

ReflectionFunctionAbstract::getParameters

(PHP 5, PHP 7) Gets parameters public array ReflectionFunctionAbstract::getParameters ( void ) Get the parameters as an array of ReflectionParameter. Returns: The parameters, as a ReflectionParameter object. This function is currently not documented; only its argument list is available. Se

ReflectionParameter::isOptional

(PHP 5 >= 5.0.3, PHP 7) Checks if optional public bool ReflectionParameter::isOptional ( void ) Checks if the parameter is optional. Returns: TRUE if the parameter is optional, otherwise FALSE See also: ReflectionParameter::getName() -

ncurses_erase

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Erase terminal screen bool ncurses_erase ( void ) Fills the terminal screen with blanks. Created blanks have the current background rendition, set by ncurses_bkgd(). Returns: Returns TRUE on success or FALSE on failure. This function is EXPERIMENTAL. The behaviour of this function, its name, and

ncurses_def_shell_mode

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Saves terminals (shell) mode bool ncurses_def_shell_mode ( void ) Saves the current terminal modes for shell (not in curses) for use by ncurses_reset_shell_mode(). Returns: Returns FALSE on success, TRUE otherwise. This function is EXPERIMENTAL. The behaviour of this function, its name, and surroun

png2wbmp

(PHP 4 >= 4.0.5, PHP 5, PHP 7) Convert PNG image file to WBMP image file bool png2wbmp ( string $pngname, string $wbmpname, int $dest_height, int $dest_width, int $threshold ) Converts a PNG file into a WBMP file. Parameters: pngname Path to PNG file. wbmpname Path to destination WBMP file. dest_height

jewishtojd

(PHP 4, PHP 5, PHP 7) Converts a date in the Jewish Calendar to Julian Day Count int jewishtojd ( int $month, int $day, int $year ) Although this function can handle dates all the way back to the year 1 (3761 B.C.), such use may not be meaningful. The Jewish calendar has been in use for several thousand years, but in the early days there was no formula to determine the start of a month. A new month was started when the new m

ReflectionClass::getInterfaceNames

(PHP 5 >= 5.2.0, PHP 7) Gets the interface names public array ReflectionClass::getInterfaceNames ( void ) Get the interface names. Returns: A numerical array with interface names as the values. Examples: ReflectionClass::getInterfaceNames() example <?php interface Foo { } interface Bar { } class Baz implements Foo