restore_include_path

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Restores the value of the include_path configuration option void restore_include_path ( void ) Restores the include_path configuration option back to its original master value as set in php.ini Returns: No value is returned. Examples: restore_include_path() example <?php echo get_inc

output_reset_rewrite_vars

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Reset URL rewriter values bool output_reset_rewrite_vars ( void ) This function resets the URL rewriter and removes all rewrite variables previously set by the output_add_rewrite_var() function or the session mechanism (if session.use_trans_sid was set on session_start()). Returns: Returns TRUE on success or FALSE on failure.

oci_fetch

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Fetches the next row from a query into internal buffers bool oci_fetch ( resource $statement ) Fetches the next row from a query into internal buffers accessible either with oci_result(), or by using variables previously defined with oci_define_by_name(). See oci_fetch_array() for general information about fetching data. Parameters: statement

array_rand

(PHP 4, PHP 5, PHP 7) Pick one or more random entries out of an array mixed array_rand ( array $array [, int $num = 1 ] ) Picks one or more random entries out of an array, and returns the key (or keys) of the random entries. Parameters: array The input array. num Specifies how many entries should be picked. Returns:

EventUtil::getSocketName

(PECL event >= 1.5.0) Retreives the current address to which the socket is bound. public static bool EventUtil::getSocketName ( mixed $socket , string &$address [, mixed &$port ] ) Retreives the current address to which the socket is bound. Parameters: socket Socket resource, stream or a file descriptor of a socket. address

SplObjectStorage::valid

(PHP 5 >= 5.1.0, PHP 7) Returns if the current iterator entry is valid public bool SplObjectStorage::valid ( void ) Returns if the current iterator entry is valid. Returns: Returns TRUE if the iterator entry is valid, FALSE otherwise. Examples: SplObjectStorage::valid() example <?php $s = new SplObjectStorage(); $o

CairoSurfacePattern::getFilter

(PECL cairo >= 0.1.0) The getFilter purpose public int CairoSurfacePattern::getFilter ( void ) The method description goes here. Returns: Description... This function is currently not documented; only its argument list is available. Examples: CairoSurfacePattern::getFilter() example

long2ip

(PHP 4, PHP 5, PHP 7) Converts an long integer address into a string in (IPv4) Internet standard dotted format string long2ip ( string $proper_address ) The function long2ip() generates an Internet address in dotted format (i.e.: aaa.bbb.ccc.ddd) from the long integer representation. Parameters: proper_address A proper address representation in long integer.

ReflectionClass::__toString

(PHP 5, PHP 7) Returns the string representation of the ReflectionClass object. public string ReflectionClass::__toString ( void ) Returns the string representation of the ReflectionClass object. Returns: A string representation of this ReflectionClass instance. Examples: ReflectionClass::__toString() example <?php $re

OCI-Collection::append

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Appends element to the collection bool OCI-Collection::append ( mixed $value ) Appends element to the end of the collection. Parameters: value The value to be added to the collection. Can be a string or a number. Returns: Returns TRUE on success or FALSE on failure.