GearmanClient::setContext

(PECL gearman >= 0.6.0) Set application context public bool GearmanClient::setContext ( string $context ) Sets an arbitrary string to provide application context that can later be retrieved by GearmanClient::context(). Parameters: context Arbitrary context data Returns: Always returns TRUE.

ob_get_flush

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Flush the output buffer, return it as a string and turn off output buffering string ob_get_flush ( void ) ob_get_flush() flushes the output buffer, return it as a string and turns off output buffering. The output buffer must be started by ob_start() with PHP_OUTPUT_HANDLER_FLUSHABLE flag. Otherwise ob_get_flush() will not work. Note: This function is similar to ob_end_flush(), except tha

is_numeric

(PHP 4, PHP 5, PHP 7) Finds whether a variable is a number or a numeric string bool is_numeric ( mixed $var ) Finds whether the given variable is numeric. Numeric strings consist of optional sign, any number of digits, optional decimal part and optional exponential part. Thus +0123.45e6 is a valid numeric value. Hexadecimal (e.g. 0xf4c3b00c), Binary (e.g. 0b10100111001), Octal (e.g. 0777) notation is not allowed.

gmp_setbit

(PHP 4 >= 4.0.4, PHP 5, PHP 7) Set bit void gmp_setbit ( GMP &$a, int $index [, bool $bit_on = true ] ) Sets bit index in a. Parameters: a The value to modify. Either a GMP number resource in PHP 5.5 and earlier, a GMP object in PHP 5.6 and later, or a numeric string provided that it is possible to convert the latter to a number. index

ncurses_mvinch

(PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Move position and get attributed character at new position int ncurses_mvinch ( int $y, int $x ) Parameters: y x This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without

gmp_random_seed

(PHP 7) Sets the RNG seed mixed gmp_random_seed ( mixed $seed ) Parameters: seed The seed to be set for the gmp_random(), gmp_random_bits(), and gmp_random_range() functions. Either a GMP number resource in PHP 5.5 and earlier, a GMP object in PHP 5.6 and later, or a numeric string provided that it is possible to convert the latter to a number. Returns:

gmp_abs

(PHP 4 >= 4.0.4, PHP 5, PHP 7) Absolute value GMP gmp_abs ( GMP $a ) Get the absolute value of a number. Parameters: a Either a GMP number resource in PHP 5.5 and earlier, a GMP object in PHP 5.6 and later, or a numeric string provided that it is possible to convert the latter to a number. Returns: Returns the absolute value of a, as a GMP numbe

SolrQuery::getGroupSortFields

(PECL solr >= 2.2.0) Returns the group.sort value public array SolrQuery::getGroupSortFields ( void ) Returns the group.sort value Returns: See also: SolrQuery::addGroupSortField() -

socket_clear_error

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Clears the error on the socket or the last error code void socket_clear_error ([ resource $socket ] ) This function clears the error code on the given socket or the global last socket error if no socket is specified. This function allows explicitly resetting the error code value either of a socket or of the extension global last error code. This may be useful to detect within a part of th

V8Js::getPendingException

(PECL v8js >= 0.1.0) Return pending uncaught Javascript exception public V8JsException V8Js::getPendingException ( void ) Returns any pending uncaught Javascript exception as V8JsException left from earlier V8Js::executeString() call(s). Returns: Either V8JsException or NULL.