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

ImagickPixel::setHSL

(PECL imagick 2.0.0) Sets the normalized HSL color bool ImagickPixel::setHSL ( float $hue, float $saturation, float $luminosity ) Sets the color described by the ImagickPixel object using normalized values for hue, saturation and luminosity. Parameters: hue The normalized value for hue, described as a fractional arc (between 0 and 1) of the hue circle, where the zero valu

date_interval_create_from_date_string

(PHP 5 >= 5.3.0, PHP 7) Alias of DateInterval::createFromDateString() This function is an alias of: DateInterval::createFromDateString()

runkit_method_redefine

(PECL runkit >= 0.7.0) Dynamically changes the code of the given method bool runkit_method_redefine ( string $classname, string $methodname, string $args, string $code [, int $flags = RUNKIT_ACC_PUBLIC ] ) Note: This function cannot be used to manipulate the currently running (or chained) method. Parameters: classname The class in which to redefine the meth

gupnp_service_proxy_callback_set

(PECL gupnp >= 0.1.0) Set service proxy callback for signal bool gupnp_service_proxy_callback_set ( resource $proxy, int $signal, mixed $callback [, mixed $arg ] ) Set service proxy callback for signal. Parameters: proxy A service proxy identifier. signal The value of signal. callback The callback

EventBufferEvent::sslGetCipherName

(PECL event >= 1.10.0) Returns the current cipher name of the SSL connection. public string EventBufferEvent::sslGetCipherName ( void ) Retrieves name of cipher used by current SSL connection. Note: This function is available only if Event is compiled with OpenSSL support. Returns: Returns the current cipher name of the SSL connection, or FALSE on error.

Cairo::statusToString

(PECL cairo >= 0.1.0) Retrieves the current status as string public static string Cairo::statusToString ( int $status ) Object oriented style (method): Procedural style: string cairo_status_to_string ( int $status ) Retrieves the current status as a readable string Parameters: status A valid status code given by cairo_status() or CairoContext::status()

mysqli_bind_param

(PHP 5 < 5.4.0) Alias for mysqli_stmt_bind_param() This function is an alias of mysqli_stmt_bind_param(). This function has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0. See also: mysqli_stmt_bind_param() -

Memcached::fetch

(PECL memcached >= 0.1.0) Fetch the next result public array Memcached::fetch ( void ) Memcached::fetch() retrieves the next result from the last request. Returns: Returns the next result or FALSE otherwise. The Memcached::getResultCode() will return Memcached::RES_END if result set is exhausted. Examples: Memcached::fetch() example

GearmanWorker::setId

(No version information available, might only be in Git) Give the worker an identifier so it can be tracked when asking gearmand for the list of available workers. public bool GearmanWorker::setId ( string $id ) Assigns the worker an identifier. Parameters: id A string identifier. Returns: Returns TRUE on success or FALSE on failure.