array_chunk

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Split an array into chunks array array_chunk ( array $array, int $size [, bool $preserve_keys = false ] ) Chunks an array into arrays with size elements. The last chunk may contain less than size elements. Parameters: array The array to work on size The size of each chunk preserv

fbsql_select_db

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Select a FrontBase database bool fbsql_select_db ([ string $database_name [, resource $link_identifier ]] ) Sets the current active database on the given link identifier. The client contacts FBExec to obtain the port number to use for the connection to the database. If the database name is a number the system will use that as a port number and it will not ask FBExec for the port number. Th

xattr_set

(PECL xattr >= 0.9.0) Set an extended attribute bool xattr_set ( string $filename, string $name, string $value [, int $flags = 0 ] ) This function sets the value of an extended attribute of a file. Extended attributes have two different namespaces: user and root. The user namespace is available to all users, while the root namespace is available only to users with root privileges. xattr operates on the user namespace

output_add_rewrite_var

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Add URL rewriter values bool output_add_rewrite_var ( string $name, string $value ) This function adds another name/value pair to the URL rewrite mechanism. The name and value will be added to URLs (as GET parameter) and forms (as hidden input fields) the same way as the session ID when transparent URL rewriting is enabled with session.use_trans_sid. Please note that absolute URLs (http://ex

Imagick::setColorspace

(No version information available, might only be in Git) Set colorspace bool Imagick::setColorspace ( int $COLORSPACE ) Sets the global colorspace value for the object. This method is available if Imagick has been compiled against ImageMagick version 6.5.7 or newer. Parameters: COLORSPACE One of the COLORSPACE constants Returns: Returns TRUE on s

fann_get_rprop_increase_factor

(PECL fann >= 1.0.0) Returns the increase factor used during RPROP training float fann_get_rprop_increase_factor ( resource $ann ) The increase factor is a value larger than 1, which is used to increase the step-size during RPROP training. The default increase factor is 1.2. Parameters: ann Neural network resource. Returns: The increase factor

Exception::getMessage

(PHP 5 >= 5.1.0, PHP 7) Gets the Exception message final public string Exception::getMessage ( void ) Returns the Exception message. Returns: Returns the Exception message as a string. Examples: Exception::getMessage() example <?php try {     throw new Exception("Some error message"); } catch(Exception $e) {     ech

Imagick::adaptiveSharpenImage

(PECL imagick 2.0.0) Adaptively sharpen the image bool Imagick::adaptiveSharpenImage ( float $radius, float $sigma [, int $channel = Imagick::CHANNEL_DEFAULT ] ) Adaptively sharpen the image by sharpening more intensely near image edges and less intensely far from edges. This method is available if Imagick has been compiled against ImageMagick version 6.2.9 or newer. Parameters: radi

escapeshellcmd

(PHP 4, PHP 5, PHP 7) Escape shell metacharacters string escapeshellcmd ( string $command ) escapeshellcmd() escapes any characters in a string that might be used to trick a shell command into executing arbitrary commands. This function should be used to make sure that any data coming from user input is escaped before this data is passed to the exec() or system() functions, or to the backtick operator. Following characters

APCUIterator::getTotalCount

(PECL apcu >= 5.0.0) Get total count public int APCUIterator::getTotalCount ( void ) Get the total count. Returns: The total count. This function is currently not documented; only its argument list is available. See also: APCUIterator::getTotalHits() -