fann_set_bit_fail_limit

(PECL fann >= 1.0.0) Set the bit fail limit used during training bool fann_set_bit_fail_limit ( resource $ann, float $bit_fail_limit ) Set the bit fail limit used during training. Parameters: ann Neural network resource. bit_fail_limit The bit fail limit. Returns: Returns TRUE on success, or FALSE otherwise.

ImagickDraw::setGravity

(PECL imagick 2.0.0) Sets the text placement gravity bool ImagickDraw::setGravity ( int $gravity ) Sets the text placement gravity to use when annotating with text. Parameters: gravity GRAVITY_ constant Returns: No value is returned. This function is currently not documented; only its argument list is availabl

CachingIterator::count

(PHP 5 >= 5.2.2, PHP 7) The number of elements in the iterator public int CachingIterator::count ( void ) May return the number of elements in the iterator. Returns: The count of the elements iterated over. This function is currently not documented; only its argument list is available.

Yaf_Request_Abstract::getServer

(Yaf >=1.0.0) Retrieve SERVER variable public void Yaf_Request_Abstract::getServer ( string $name [, string $default ] ) Retrieve SERVER variable Parameters: name the variable name default if this parameter is provide, this will be returned if the variable can not be found Returns:

imap_bodystruct

(PHP 4, PHP 5, PHP 7) Read the structure of a specified body section of a specific message object imap_bodystruct ( resource $imap_stream, int $msg_number, string $section ) Read the structure of a specified body section of a specific message. Parameters: imap_stream An IMAP stream returned by imap_open(). msg_number The message number

enchant_broker_list_dicts

(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 1.0.1) Returns a list of available dictionaries mixed enchant_broker_list_dicts ( resource $broker ) Returns a list of available dictionaries with their details. Parameters: broker Broker resource Returns: Returns TRUE on success or FALSE on failure. E

inotify_add_watch

(PECL inotify >= 0.1.2) Add a watch to an initialized inotify instance int inotify_add_watch ( resource $inotify_instance, string $pathname, int $mask ) inotify_add_watch() adds a new watch or modify an existing watch for the file or directory specified in pathname. Using inotify_add_watch() on a watched object replaces the existing watch. Using the IN_MASK_ADD constant adds (OR) events to the existing watch.

FilesystemIterator::getFlags

(PHP 5 >= 5.3.0, PHP 7) Get the handling flags public int FilesystemIterator::getFlags ( void ) Gets the handling flags, as set in FilesystemIterator::__construct() or FilesystemIterator::setFlags(). Returns: The integer value of the set flags. See also: FilesystemIterator::__construct() -

oci_fetch

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Fetches the next row from a query into internal buffers bool oci_fetch ( resource $statement ) Fetches the next row from a query into internal buffers accessible either with oci_result(), or by using variables previously defined with oci_define_by_name(). See oci_fetch_array() for general information about fetching data. Parameters: statement

$GLOBALS

(PHP 4, PHP 5, PHP 7) References all variables available in global scope An associative array containing references to all variables which are currently defined in the global scope of the script. The variable names are the keys of the array. Notes: This is a 'superglobal', or automatic global, variable. This simply means that it is available in all scopes throughout a script. The