strpbrk

(PHP 5, PHP 7) Search a string for any of a set of characters string strpbrk ( string $haystack, string $char_list ) strpbrk() searches the haystack string for a char_list. Parameters: haystack The string where char_list is looked for. char_list This parameter is case sensitive. Returns: Returns a string starti

ReflectionClass::isAnonymous

(PHP 7) Checks if class is anonymous public bool ReflectionClass::isAnonymous ( void ) Checks if a class is an anonymous class. Returns: Returns TRUE on success or FALSE on failure. Examples: ReflectionClass::isAnonymous() example <?php class TestClass {} $anonClass = new class {}; $normalClass = new ReflectionClass('

eio_custom

(PECL eio >= 0.0.1dev) Execute custom request like any other eio_* call. resource eio_custom ( callable $execute, int $pri, callable $callback [, mixed $data = NULL ] ) eio_custom() executes custom function specified by execute processing it just like any other eio_* call. Parameters: execute Specifies the request function that should match the following prototype:

krsort

(PHP 4, PHP 5, PHP 7) Sort an array by key in reverse order bool krsort ( array &$array [, int $sort_flags = SORT_REGULAR ] ) Sorts an array by key in reverse order, maintaining key to data correlations. This is useful mainly for associative arrays. Parameters: array The input array. sort_flags You may modify the behavior of the so

SWFSoundInstance::loopCount

(PHP 5 <= 5.3.0, PECL ming SVN) void SWFSoundInstance::loopCount ( int $point ) Parameters: point Returns: No value is returned. This function is currently not documented; only its argument list is available. See also: SWFSoundInstance

strrev

(PHP 4, PHP 5, PHP 7) Reverse a string string strrev ( string $string ) Returns string, reversed. Parameters: string The string to be reversed. Returns: Returns the reversed string. Examples: Reversing a string with strrev() <?php echo strrev("Hello world!"); // outpu

uopz_delete

(PECL uopz >= 1.0.0) Delete a function void uopz_delete ( string $class, string $function ) void uopz_delete ( string $function ) Deletes a function or method Parameters: class void uopz_delete ( string $function ) Deletes a function or method function void uopz_delete ( string $function ) Deletes a function or method

MongoCommandCursor::next

(PECL mongo >=1.5.0) Advances the cursor to the next result public void MongoCommandCursor::next ( void ) Returns: NULL. Exception: Throws MongoConnectionException if it cannot reach the database and MongoCursorTimeoutException if the timeout is exceeded. See also: Iterator::next() -

SolrQuery::getGroupFields

(PECL solr >= 2.2.0) Returns group fields (group.field parameter values) public array SolrQuery::getGroupFields ( void ) Returns group fields (group.field parameter values) Returns: See also: SolrQuery::addGroupField() -

ibase_restore

(PHP 5, PHP 7) Initiates a restore task in the service manager and returns immediately mixed ibase_restore ( resource $service_handle, string $source_file, string $dest_db [, int $options = 0 [, bool $verbose = false ]] ) This function is currently not documented; only its argument list is available.