fann_test_data

(PECL fann >= 1.0.0) Test a set of training data and calculates the MSE for the training data float fann_test_data ( resource $ann, resource $data ) Test a set of training data and calculates the MSE for the training data. This function updates the MSE and the bit fail values. Parameters: ann Neural network resource. data Neural netwo

Imagick::fxImage

(PECL imagick 2.0.0) Evaluate expression for each pixel in the image Imagick Imagick::fxImage ( string $expression [, int $channel = Imagick::CHANNEL_ALL ] ) Evaluate expression for each pixel in the image. Consult » The Fx Special Effects Image Operator for more information. Parameters: expression The expression. channel Provide any c

imap_search

(PHP 4, PHP 5, PHP 7) This function returns an array of messages matching the given search criteria array imap_search ( resource $imap_stream, string $criteria [, int $options = SE_FREE [, string $charset = NULL ]] ) This function performs a search on the mailbox currently opened in the given IMAP stream. For example, to match all unanswered messages sent by Mom, you'd use: "UNANSWERED FROM mom". Searches appear to be ca

VarnishStat::getSnapshot

(PECL varnish >= 0.3) Get the current varnish instance statistics snapshot public array VarnishStat::getSnapshot ( void ) Returns: Array with the varnish statistic snapshot. The array keys are identical to that in the varnishstat tool.

ArrayObject::exchangeArray

(PHP 5 >= 5.1.0, PHP 7) Exchange the array for another one. public array ArrayObject::exchangeArray ( mixed $input ) Exchange the current array with another array or object. Parameters: input The new array or object to exchange with the current array. Returns: Returns the old array. Examples:

mysqli::release_savepoint

(PHP 5 >= 5.5.0, PHP 7) Removes the named savepoint from the set of savepoints of the current transaction public bool mysqli::release_savepoint ( string $name ) Object oriented style (method): Procedural style: bool mysqli_release_savepoint ( mysqli $link , string $name ) Parameters: link Procedural style only: A link identifier returned by mysqli_connect() or mysqli_ini

imagecolorresolve

(PHP 4, PHP 5, PHP 7) Get the index of the specified color or its closest possible alternative int imagecolorresolve ( resource $image, int $red, int $green, int $blue ) This function is guaranteed to return a color index for a requested color, either the exact color or the closest possible alternative. If you created the image from a file, only colors used in the image are resolved. Colors present only in the palette are n

SolrPingResponse::__construct

(PECL solr >= 0.9.2) Constructor public SolrPingResponse::__construct ( void ) Constructor Returns: None

MongoGridFS::storeBytes

(PECL mongo >=0.9.2) Stores a string of bytes in the database public mixed MongoGridFS::storeBytes ( string $bytes [, array $metadata = array() [, array $options = array() ]] ) Parameters: bytes String of bytes to store. metadata Other metadata fields to include in the file document. Note: These fields may also overwrite those tha

GearmanClient::context

(PECL gearman >= 0.6.0) Get the application context public string GearmanClient::context ( void ) Get the application context previously set with GearmanClient::setContext(). Returns: The same context data structure set with GearmanClient::setContext() See also: GearmanClient::setContext() -