sybase_fetch_array

(PHP 4, PHP 5, PHP 7) Fetch row as array array sybase_fetch_array ( resource $result ) sybase_fetch_array() is an extended version of sybase_fetch_row(). In addition to storing the data in the numeric indices of the result array, it also stores the data in associative indices, using the field names as keys. An important thing to note is that using sybase_fetch_array() is NOT significantly slower than using sybase_fetch_row

MongoRegex::__toString

(PECL mongo >= 0.8.1) A string representation of this regular expression public string MongoRegex::__toString ( void ) Returns a string representation of this regular expression. Returns: This regular expression in the form "/expr/flags". Examples: MongoRegex::__toString() example <?php $r = new MongoRegex( "/[a-fA

strspn

(PHP 4, PHP 5, PHP 7) Finds the length of the initial segment of a string consisting entirely of characters contained within a given mask. int strspn ( string $subject, string $mask [, int $start [, int $length ]] ) Finds the length of the initial segment of subject that contains only characters from mask. If start and length are omitted, then all of subject will be examined. If they are included, then the effect will be

MessageFormatter::setPattern

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Set the pattern used by the formatter public bool MessageFormatter::setPattern ( string $pattern ) Object oriented style Procedural style bool msgfmt_set_pattern ( MessageFormatter $fmt , string $pattern ) Set the pattern used by the formatter Parameters: fmt The message formatter pattern

fann_set_cascade_num_candidate_groups

(PECL fann >= 1.0.0) Sets the number of candidate groups bool fann_set_cascade_num_candidate_groups ( resource $ann, int $cascade_num_candidate_groups ) Sets the number of candidate groups. Parameters: ann Neural network resource. cascade_num_candidate_groups The number of candidate groups. Returns: Returns TRU

newt_init

(PECL newt >= 0.1) Initialize newt int newt_init ( void ) Initializes the newt interface. This function must be called before any other newt function. Returns: Returns 1 on success, 0 on failure. See also: newt_finished() -

EventConfig::setMaxDispatchInterval

(No version information available, might only be in Git) Prevents priority inversion public void EventConfig::setMaxDispatchInterval ( int $max_interval , int $max_callbacks , int $min_priority ) Prevents priority inversion by limiting how many low-priority event callbacks can be invoked before checking for more high-priority events. Note: Available since libevent 2.1.0-alpha . Parameters:

hw_api::content

(PHP 4, PHP 5 < 5.2.0, PECL hwapi SVN) Returns content of an object HW_API_Content hw_api::content ( array $parameter ) This function returns the content of a document as an object of type hw_api_content. Parameters: parameter The parameter array contains the required elements 'objectidentifier' and the optional element 'mode'. The mode can be one of the constants HW_

strcspn

(PHP 4, PHP 5, PHP 7) Find length of initial segment not matching mask int strcspn ( string $subject, string $mask [, int $start [, int $length ]] ) Returns the length of the initial segment of subject which does not contain any of the characters in mask. If start and length are omitted, then all of subject will be examined. If they are included, then the effect will be the same as calling strcspn(substr($subject, $start,

getmyinode

(PHP 4, PHP 5, PHP 7) Gets the inode of the current script int getmyinode ( void ) Gets the inode of the current script. Returns: Returns the current script's inode as an integer, or FALSE on error. See also: getmygid() - getmyuid() - getmypid() -