fann_set_cascade_candidate_limit

(PECL fann >= 1.0.0) Sets the candidate limit bool fann_set_cascade_candidate_limit ( resource $ann, float $cascade_candidate_limit ) Sets the candidate limit. Parameters: ann Neural network resource. cascade_candidate_limit The candidate limit. Returns: Returns TRUE on success, or FALSE otherwise.

mkdir

(PHP 4, PHP 5, PHP 7) Makes directory bool mkdir ( string $pathname [, int $mode = 0777 [, bool $recursive = false [, resource $context ]]] ) Attempts to create the directory specified by pathname. Parameters: pathname The directory path. mode The mode is 0777 by default, which means the widest possible access. For more information on

EventHttp::addServerAlias

(PECL event >= 1.4.0-beta) Adds a server alias to the HTTP server object public bool EventHttp::addServerAlias ( string $alias ) Adds a server alias to the HTTP server object. Parameters: alias The alias to add. Returns: Returns TRUE on success. Otherwise FALSE. Examples: EventHtt

pathinfo

(PHP 4 >= 4.0.3, PHP 5, PHP 7) Returns information about a file path mixed pathinfo ( string $path [, int $options = PATHINFO_DIRNAME | PATHINFO_BASENAME | PATHINFO_EXTENSION | PATHINFO_FILENAME ] ) pathinfo() returns information about path: either an associative array or a string, depending on options. Parameters: path The path to be parsed. op

strrchr

(PHP 4, PHP 5, PHP 7) Find the last occurrence of a character in a string string strrchr ( string $haystack, mixed $needle ) This function returns the portion of haystack which starts at the last occurrence of needle and goes until the end of haystack. Parameters: haystack The string to search in needle If needle contains more than one

NumberFormatter::getAttribute

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Get an attribute public int NumberFormatter::getAttribute ( int $attr ) Object oriented style Procedural style int numfmt_get_attribute ( NumberFormatter $fmt , int $attr ) Get a numeric attribute associated with the formatter. An example of a numeric attribute is the number of integer digits the formatter will produce. Parameters:

ncurses_standout

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Start using 'standout' attribute int ncurses_standout ( void ) 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 is curren

Gmagick::getimageblueprimary

(PECL gmagick >= Unknown) Returns the chromaticy blue primary point public array Gmagick::getimageblueprimary ( void ) Returns the chromaticity blue primary point for the image. Parameters: x The chromaticity blue primary x-point. y The chromaticity blue primary y-point. Returns: Array consisting of "x" and

ArrayObject::ksort

(PHP 5 >= 5.2.0, PHP 7) Sort the entries by key public void ArrayObject::ksort ( void ) Sorts the entries by key, maintaining key to entry correlations. This is useful mainly for associative arrays. Returns: No value is returned. Examples: ArrayObject::ksort() example <?php $fruits = array("d" => "lemon", "a" =&

imagejpeg

(PHP 4, PHP 5, PHP 7) Output image to browser or file bool imagejpeg ( resource $image [, string $filename [, int $quality ]] ) imagejpeg() creates a JPEG file from the given image. Parameters: image An image resource, returned by one of the image creation functions, such as imagecreatetruecolor(). filename The path to save the file to. If