fann_scale_input_train_data

(PECL fann >= 1.0.0) Scales the inputs in the training data to the specified range bool fann_scale_input_train_data ( resource $train_data, float $new_min, float $new_max ) Scales the inputs in the training data to the specified range. Parameters: train_data Neural network training data resource. new_min New minimum after scaling input

HRTime\StopWatch::getElapsedTime

(PECL hrtime >= 0.4.3) Get elapsed time for all intervals. public float HRTime\StopWatch::getElapsedTime ([ integer $unit ] ) Get elapsed time for all the previously closed intervals. Parameters: unit Time unit represented by a HRTime\Unit constant. Default is HRTime\Unit::SECOND. Returns: Returns float indicating elapsed time.

MongoGridFSFile::getSize

(PECL mongo >=0.9.0) Returns this file's size public int MongoGridFSFile::getSize ( void ) Returns: Returns this file's size

mysqli_result::fetch_fields

(PHP 5, PHP 7) Returns an array of objects representing the fields in a result set array mysqli_result::fetch_fields ( void ) Object oriented style Procedural style array mysqli_fetch_fields ( mysqli_result $result ) This function serves an identical purpose to the mysqli_fetch_field() function with the single difference that, instead of returning one object at a time for each field, the columns are returned as an array of

Imagick::getImageBlob

(PECL imagick 2.0.0) Returns the image sequence as a blob string Imagick::getImageBlob ( void ) Implements direct to memory image formats. It returns the image sequence as a string. The format of the image determines the format of the returned blob (GIF, JPEG, PNG, etc.). To return a different image format, use Imagick::setImageFormat(). Returns: Returns a string containing the image.

maxdb_stmt_close_long_data

(PECL maxdb 1.0) Ends a sequence of maxdb_stmt_send_long_data() bool maxdb_stmt_close_long_data ( resource $stmt, int $param_nr ) Procedural style Object oriented style bool maxdb_stmt::close_long_data ( void ) This function has to be called after a sequence of maxdb_stmt_send_long_data(), that was started after maxdb_execute(). param_nr indicates which parameter to associate the end of data with. Parameters are numbered

mysqli_result::fetch_array

(PHP 5, PHP 7) Fetch a result row as an associative, a numeric array, or both mixed mysqli_result::fetch_array ([ int $resulttype = MYSQLI_BOTH ] ) Object oriented style Procedural style mixed mysqli_fetch_array ( mysqli_result $result [, int $resulttype = MYSQLI_BOTH ] ) Returns an array that corresponds to the fetched row or NULL if there are no more rows for the resultset represented by the result parameter. mysqli_fe

event_base_set

(PECL libevent >= 0.0.1) Associate event base with an event bool event_base_set ( resource $event, resource $event_base ) Associates the event_base with the event. Parameters: event Valid event resource. event_base Valid event base resource. Returns: event_base_set() returns TRUE on success or FALSE on error

PDF_create_pvf

(PECL pdflib >= 2.0.0) Create PDFlib virtual file bool PDF_create_pvf ( resource $pdfdoc, string $filename, string $data, string $optlist ) Creates a named virtual read-only file from data provided in memory.

sscanf

(PHP 4 >= 4.0.1, PHP 5, PHP 7) Parses input from a string according to a format mixed sscanf ( string $str, string $format [, mixed &$... ] ) The function sscanf() is the input analog of printf(). sscanf() reads from the string str and interprets it according to the specified format, which is described in the documentation for sprintf(). Any whitespace in the format string matches any whitespace in the input string.