oci_num_rows

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Returns number of rows affected during statement execution int oci_num_rows ( resource $statement ) Gets the number of rows affected during statement execution. Parameters: statement A valid OCI statement identifier. Returns: Returns the number of rows affected as an integer, or FALSE on errors.

EvPeriodic::set

(PECL ev >= 0.2.0) Configures the watcher public void EvPeriodic::set ( double $offset , double $interval ) (Re-)Configures EvPeriodic watcher Parameters: offset The same meaning as for EvPeriodic::__construct() . See Periodic watcher operation modes interval The same meaning as for EvPeriodic::__construct() . See Periodic watcher

mcrypt_create_iv

(PHP 4, PHP 5, PHP 7) Creates an initialization vector (IV) from a random source string mcrypt_create_iv ( int $size [, int $source = MCRYPT_DEV_URANDOM ] ) Creates an initialization vector (IV) from a random source. The IV is only meant to give an alternative seed to the encryption routines. This IV does not need to be secret at all, though it can be desirable. You even can send it along with your ciphertext without losi

ArrayObject::uksort

(PHP 5 >= 5.2.0, PHP 7) Sort the entries by keys using a user-defined comparison function public void ArrayObject::uksort ( callable $cmp_function ) This function sorts the keys of the entries using a user-supplied comparison function. The key to entry correlations will be maintained. Parameters: cmp_function The callback comparison function. Function cmp_function s

CairoPattern::__construct

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

is_resource

(PHP 4, PHP 5, PHP 7) Finds whether a variable is a resource bool is_resource ( mixed $var ) Finds whether the given variable is a resource. Parameters: var The variable being evaluated. Returns: Returns TRUE if var is a resource, FALSE otherwise. Notes: is_resource() is not a strict type-c

fann_get_rprop_delta_max

(PECL fann >= 1.0.0) Returns the maximum step-size float fann_get_rprop_delta_max ( resource $ann ) The maximum step-size is a positive number determining how large the maximum step-size may be. The default delta max is 50.0. Parameters: ann Neural network resource. Returns: The maximum step-size, or FALSE on error.

OCI-Lob::truncate

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Truncates large object bool OCI-Lob::truncate ([ int $length = 0 ] ) Truncates the LOB. Parameters: length If provided, this method will truncate the LOB to length bytes. Otherwise, it will completely purge the LOB. Returns: Returns TRUE on success or FALSE on failure.

Phar::uncompressAllFiles

(PECL phar < 2.0.0) Uncompresses all files in the current Phar archive public bool Phar::uncompressAllFiles ( void ) Note: This method has been removed from the phar extension as of version 2.0.0. Alternative implementations are available using Phar::compress(), Phar::decompress(), Phar::compressFiles() and Phar::decompressFiles(). Note: This method requires the php.ini setting phar.readonly to be set to 0 in order to

SplFileObject::getCsvControl

(PHP 5 >= 5.2.0, PHP 7) Get the delimiter and enclosure character for CSV public array SplFileObject::getCsvControl ( void ) Gets the delimiter and enclosure character used for parsing CSV fields. Returns: Returns an indexed array containing the delimiter and enclosure character. Examples: SplFileObject::getCsvControl() example