GearmanWorker::echo

(PECL gearman >= 0.6.0) Test job server response public bool GearmanWorker::echo ( string $workload ) Sends data to all job servers to see if they echo it back. This is a test function to see if job servers are responding properly. Parameters: workload Arbitrary serialized data Returns: Standard Gearman return value.

svn_fs_dir_entries

(PECL svn >= 0.1.0) Enumerates the directory entries under path; returns a hash of dir names to file type array svn_fs_dir_entries ( resource $fsroot, string $path ) Enumerates the directory entries under path; returns a hash of dir names to file type This function is currently not documented; only its argument list is available.

gmp_sqrtrem

(PHP 4 >= 4.0.4, PHP 5, PHP 7) Square root with remainder array gmp_sqrtrem ( GMP $a ) Calculate the square root of a number, with remainder. Parameters: a The number being square rooted. 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.

SWFDisplayItem::getY

(PHP 5 <= 5.3.0, PECL ming SVN) float SWFDisplayItem::getY ( void ) This function is currently not documented; only its argument list is available. See also: SWFDisplayItem::getX() -

ocicollmax

(PHP 4 >= 4.0.6, PHP 5, PHP 7, PECL OCI8 >= 1.0.0) Alias of OCI-Collection::max() Alias of OCI-Collection::max() This alias has been DEPRECATED as of PHP 5.4.0. Relying on this alias is highly discouraged.

SolrQuery::getTermsMinCount

(PECL solr >= 0.9.2) Returns the minimum document frequency to return in order to be included public int SolrQuery::getTermsMinCount ( void ) Returns the minimum document frequency to return in order to be included Returns: Returns an integer on success and NULL if not set.

Imagick::getImageLength

(PECL imagick 2.0.0) Returns the image length in bytes int Imagick::getImageLength ( void ) Returns the image length in bytes Returns: Returns an int containing the current image size. Examples: Using Imagick::getImageLength() : Getting image length in bytes <?php $image = new Imagick('test.jpg'); echo $image->get

MongoCollection::update

(PECL mongo >=0.9.0) Update records based on a given criteria public bool|array MongoCollection::update ( array $criteria, array $new_object [, array $options = array() ] ) Parameters: criteria Query criteria for the documents to update. new_object The object used to update the matched documents. This may either contain update operat

array_map

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Applies the callback to the elements of the given arrays array array_map ( callable $callback, array $array1 [, array $... ] ) array_map() returns an array containing all the elements of array1 after applying the callback function to each one. The number of parameters that the callback function accepts should match the number of arrays passed to the array_map() Parameters:

SplDoublyLinkedList::shift

(PHP 5 >= 5.3.0, PHP 7) Shifts a node from the beginning of the doubly linked list public mixed SplDoublyLinkedList::shift ( void ) Returns: The value of the shifted node. Exception: Throws RuntimeException when the data-structure is empty.