count

(PHP 4, PHP 5, PHP 7) Count all elements in an array, or something in an object int count ( mixed $array_or_countable [, int $mode = COUNT_NORMAL ] ) Counts all elements in an array, or something in an object. For objects, if you have SPL installed, you can hook into count() by implementing interface Countable. The interface has exactly one method, Countable::count(), which returns the return value for the count() functio

Stomp::setReadTimeout

(PECL stomp >= 0.3.0) Sets read timeout public void Stomp::setReadTimeout ( int $seconds [, int $microseconds ] ) Object oriented style (method): Procedural style: void stomp_set_read_timeout ( resource $link , int $seconds [, int $microseconds ] ) Sets read timeout. Parameters: link Procedural style only: The stomp link identifier returned by stomp_connect().

Imagick::setRegistry

(No version information available, might only be in Git) Description public static void Imagick::setRegistry ( string $key, string $value ) Sets the ImageMagick registry entry named key to value. This is most useful for setting "temporary-path" which controls where ImageMagick creates temporary images e.g. while processing PDFs. Parameters: key Sets the ImageMagick regis

trader_cdlsticksandwich

(PECL trader >= 0.2.0) Stick Sandwich array trader_cdlsticksandwich ( array $open, array $high, array $low, array $close ) Parameters: open Opening price, array of real values. high High price, array of real values. low Low price, array of real values. close Closin

mysqli_result::fetch_assoc

(PHP 5, PHP 7) Fetch a result row as an associative array array mysqli_result::fetch_assoc ( void ) Object oriented style Procedural style array mysqli_fetch_assoc ( mysqli_result $result ) Returns an associative array that corresponds to the fetched row or NULL if there are no more rows. Note: Field names returned by this function are case-sensitive. Note: This function sets NULL fields to the PHP NULL value.

svn_fs_make_dir

(PECL svn >= 0.2.0) Creates a new empty directory, returns true if all is ok, false otherwise bool svn_fs_make_dir ( resource $root, string $path ) Creates a new empty directory, returns true if all is ok, false otherwise This function is currently not documented; only its argument list is available.

SVMModel::getNrClass

(PECL svm >= 0.1.5) Returns the number of classes the model was trained with public int SVMModel::getNrClass ( void ) Returns the number of classes the model was trained with, will return 2 for one class and regression models. Returns: Return an integer number of classes

ImagickDraw::getFontFamily

(PECL imagick 2.0.0) Returns the font family string ImagickDraw::getFontFamily ( void ) Returns the font family to use when annotating with text. Returns: Returns the font family currently selected or false if font family is not set. This function is currently not documented; only its argument list is available.

xmlrpc_parse_method_descriptions

(PHP 4 >= 4.1.0, PHP 5, PHP 7) Decodes XML into a list of method descriptions array xmlrpc_parse_method_descriptions ( string $xml ) This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release of PHP. This function should be used at your own risk. This function i

spl_autoload_functions

(PHP 5 >= 5.1.2, PHP 7) Return all registered __autoload() functions array spl_autoload_functions ( void ) Get all registered __autoload() functions. Returns: An array of all registered __autoload functions. If the autoload queue is not activated then the return value is FALSE. If no function is registered the return value will be an empty array.