m_getcellbynum

(PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0) Get a specific cell from a comma delimited response by column number string m_getcellbynum ( resource $conn, int $identifier, int $column, int $row ) Parameters: conn An MCVE_CONN resource returned by m_initengine(). identifier An MCVE_CONN resource returned by m_initengine().

QuickHashIntStringHash::loadFromFile

(PECL quickhash >= Unknown) This factory method creates a hash from a file public static QuickHashIntStringHash QuickHashIntStringHash::loadFromFile ( string $filename [, int $size = 0 [, int $options = 0 ]] ) This factory method creates a new hash from a definition file on disk. The file format consists of a signature 'QH\0x12\0', the number of elements as a 32 bit signed integer in system Endianness, an unsigned 32 bi

newt_listitem_get_data

(PECL newt >= 0.1) mixed newt_listitem_get_data ( resource $item ) Parameters: item Returns: This function is currently not documented; only its argument list is available.

IntlTimeZone::createTimeZone

(PHP 5.5.0, PHP 7, PECL >= 3.0.0a1) Create a timezone object for the given ID public static IntlTimeZone IntlTimeZone::createTimeZone ( string $zoneId ) Parameters: zoneId Returns: This function is currently not documented; only its argument list is available.

ncurses_top_panel

(PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Moves a visible panel to the top of the stack int ncurses_top_panel ( resource $panel ) Parameters: panel This function is currently not documented; only its argument list is available.

json_encode

(PHP 5 >= 5.2.0, PECL json >= 1.2.0, PHP 7) Returns the JSON representation of a value string json_encode ( mixed $value [, int $options = 0 [, int $depth = 512 ]] ) Returns a string containing the JSON representation of value. Parameters: value The value being encoded. Can be any type except a resource. All string data must be UTF-8 encoded. Note: PHP imple

Resources

strtr

(PHP 4, PHP 5, PHP 7) Translate characters or replace substrings string strtr ( string $str, string $from, string $to ) string strtr ( string $str , array $replace_pairs ) If given three arguments, this function returns a copy of str where all occurrences of each (single-byte) character in from have been translated to the corresponding character in to, i.e., every occurrence of $from[$n] has been replaced with $to[$n], wher

Closure::call

(PHP 7) Binds and calls the closure public mixed Closure::call ( object $newthis [, mixed $... ] ) Temporarily binds the closure to newthis, and calls it with any given parameters. Parameters: newthis The object to bind the closure to for the duration of the call. ... Zero or more parameters, which will be given as parameters to the clo

SplHeap::next

(PHP 5 >= 5.3.0, PHP 7) Move to the next node public void SplHeap::next ( void ) Move to the next node. This will delete the top node of the heap. Returns: No value is returned.