SNMP::walk

(PHP 5 >= 5.4.0, PHP 7) Fetch SNMP object subtree public array SNMP::walk ( string $object_id [, bool $suffix_as_key = FALSE [, int $max_repetitions [, int $non_repeaters ]]] ) SNMP::walk() is used to read SNMP subtree rooted at specified object_id. Parameters: object_id Root of subtree to be fetched suffix_as_key By default full OI

mysqli::$affected_rows

(PHP 5, PHP 7) Gets the number of affected rows in a previous MySQL operation int mysqli_affected_rows ( mysqli $link ) Object oriented style int $mysqli->affected_rows; Procedural style Returns the number of rows affected by the last INSERT, UPDATE, REPLACE or DELETE query. For SELECT statements mysqli_affected_rows() works like mysqli_num_rows(). Parameters: link P

expect_expectl

(PECL expect >= 0.1.0) Waits until the output from a process matches one of the patterns, a specified time period has passed, or an EOF is seen int expect_expectl ( resource $expect, array $cases [, array &$match ] ) Waits until the output from a process matches one of the patterns, a specified time period has passed, or an EOF is seen. If match is provided, then it is filled with the result of search. The matched

IntlBreakIterator::isBoundary

(No version information available, might only be in Git) Tell whether an offset is a boundaryʼs offset public ReturnType IntlBreakIterator::isBoundary ( string $"offset" ) Parameters: "offset" Returns: This function is currently not documented; only its argument list is available.

Imagick::labelImage

(PECL imagick 2.0.0) Adds a label to an image bool Imagick::labelImage ( string $label ) Adds a label to an image. Parameters: label The label to add Returns: Returns TRUE on success.

ncurses_hide_panel

(PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Remove panel from the stack, making it invisible int ncurses_hide_panel ( resource $panel ) Parameters: panel This function is currently not documented; only its argument list is available.

sqlite_fetch_array

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Fetches the next row from a result set as an array array sqlite_fetch_array ( resource $result [, int $result_type = SQLITE_BOTH [, bool $decode_binary = true ]] ) Object oriented style (method): array SQLiteResult::fetch ([ int $result_type = SQLITE_BOTH [, bool $decode_binary = true ]] ) array SQLiteUnbuffered::fetch ([ int $result_type = SQLITE_BOTH [, bool $decode_binary = t

Magic Methods

Examples: Sleep and wakeup serialize() checks if your class has a function with the magic name __sleep(). If so, that function is executed prior to any serialization. It can clean up the object and is supposed to return an array with the names of all variables of that object that should be serialized. If the method doesn't return anything then NULL is serialized and E_NOTICE is issued. Note: It is not possible for __sleep() to return names of private properties in

ftell

(PHP 4, PHP 5, PHP 7) Returns the current position of the file read/write pointer int ftell ( resource $handle ) Returns the position of the file pointer referenced by handle. Parameters: handle The file pointer must be valid, and must point to a file successfully opened by fopen() or popen(). ftell() gives undefined results for append-only streams (opened with "a" flag).

SWFText::addUTF8String

(PHP 5 <= 5.3.0, PECL ming SVN) Writes the given text into this SWFText object at the current pen position, using the current font, height, spacing, and color void SWFText::addUTF8String ( string $text ) Returns: No value is returned. This function is currently not documented; only its argument list is available.