imagegd

(PHP 4 >= 4.0.7, PHP 5, PHP 7) Output GD image to browser or file bool imagegd ( resource $image [, string $filename ] ) Outputs a GD image to the given filename. 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 not set or NULL

SplDoublyLinkedList::offsetGet

(PHP 5 >= 5.3.0, PHP 7) Returns the value at the specified $index public mixed SplDoublyLinkedList::offsetGet ( mixed $index ) Parameters: index The index with the value. Returns: The value at the specified index. Exception: Throws OutOfRangeException when index is out of bounds or when index cannot be parsed as

fann_set_callback

(PECL fann >= 1.0.0) Sets the callback function for use during training bool fann_set_callback ( resource $ann, collable $callback ) Sets the callback function for use during training. It means that it is called from fann_train_on_data() or fann_train_on_file(). Parameters: ann Neural network resource. callback The supplied callback f

XMLReader::getAttributeNo

(PHP 5 >= 5.1.0, PHP 7) Get the value of an attribute by index public string XMLReader::getAttributeNo ( int $index ) Returns the value of an attribute based on its position or an empty string if attribute does not exist or not positioned on an element node. Parameters: index The position of the attribute. Returns: The value of the attribute,

imageaffinematrixconcat

(PHP 5 >= 5.5.0, PHP 7) Concat two matrices (as in doing many ops in one go) array imageaffinematrixconcat ( array $m1, array $m2 ) Parameters: m1 Array with keys 0 to 5. m2 Array with keys 0 to 5. Returns: Array with keys 0 to 5 and float values or FALSE on failure. This f

CairoContext::scale

(PECL cairo >= 0.1.0) The scale purpose public void CairoContext::scale ( string $x, string $y ) Object oriented style (method): Procedural style: void cairo_scale ( CairoContext $context , string $x , string $y ) Description here. Parameters: context Description... x Description... y Description

odbc_close

(PHP 4, PHP 5, PHP 7) Close an ODBC connection void odbc_close ( resource $connection_id ) Closes down the connection to the database server. Parameters: connection_id The ODBC connection identifier, see odbc_connect() for details. Returns: No value is returned. Notes: This function will fail

mb_regex_set_options

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Set/Get the default options for mbregex functions string mb_regex_set_options ([ string $options = mb_regex_set_options() ] ) Sets the default options described by options for multibyte regex functions. Parameters: options The options to set. This is a string where each character is an option. To set a mode, the mode character must be th

stomp_connect_error

(PECL stomp >= 0.3.0) Returns a string description of the last connect error string stomp_connect_error ( void ) Returns a string description of the last connect error. Returns: A string that describes the error, or NULL if no error occurred. Examples: stomp_connect_error() example <?php $link = stomp_connect('http:

SphinxClient::setFilterFloatRange

(PECL sphinx >= 0.1.0) Add new float range filter public bool SphinxClient::setFilterFloatRange ( string $attribute, float $min, float $max [, bool $exclude = false ] ) Adds new float range filter to the existing list of filters. Only those documents which have attribute value stored in the index between min and max (including values that are exactly equal to min or max) will be matched (or rejected, if exclude is TRUE).