ibase_wait_event

(PHP 5, PHP 7) Wait for an event to be posted by the database string ibase_wait_event ( string $event_name1 [, string $event_name2 [, string $... ]] ) string ibase_wait_event ( resource $connection , string $event_name1 [, string $event_name2 [, string $... ]] ) This function suspends execution of the script until one of the specified events is posted by the database. The name of the event that was posted is returned. This

trader_cdlrisefall3methods

(PECL trader >= 0.2.0) Rising/Falling Three Methods array trader_cdlrisefall3methods ( array $open, array $high, array $low, array $close ) Parameters: open Opening price, array of real values. high High price, array of real values. low Low price, array of real values. close

round

(PHP 4, PHP 5, PHP 7) Rounds a float float round ( float $val [, int $precision = 0 [, int $mode = PHP_ROUND_HALF_UP ]] ) Returns the rounded value of val to specified precision (number of digits after the decimal point). precision can also be negative or zero (default). Note: PHP doesn't handle strings like "12,300.2" correctly by default. See converting from strings. Parameters:

SoapFault::SoapFault

(PHP 5 >= 5.0.1, PHP 7) SoapFault constructor SoapFault::SoapFault ( string $faultcode, string $faultstring [, string $faultactor [, string $detail [, string $faultname [, string $headerfault ]]]] ) This class is used to send SOAP fault responses from the PHP handler. faultcode, faultstring, faultactor and detail are standard elements of a SOAP Fault. Parameters: faultcode

Gmagick::removeimageprofile

(PECL gmagick >= Unknown) Removes the named image profile and returns it public string Gmagick::removeimageprofile ( string $name ) Removes the named image profile and returns it. Parameters: name Name of profile to return: ICC, IPTC, or generic profile. Returns: The Gmagick object on success Exception: Throws

mcrypt_module_self_test

(PHP 4 >= 4.0.2, PHP 5, PHP 7) This function runs a self test on the specified module bool mcrypt_module_self_test ( string $algorithm [, string $lib_dir ] ) This function runs the self test on the algorithm specified. Parameters: algorithm One of the MCRYPT_ciphername constants, or the name of the algorithm as string. lib_dir The opti

ImagickPixel::isPixelSimilarQuantum

(No version information available, might only be in Git) Description public bool ImagickPixel::isPixelSimilarQuantum ( string $color [, string $fuzz ] ) Returns true if the distance between two colors is less than the specified distance. The fuzz value should be in the range 0-QuantumRange. The maximum value represents the longest possible distance in the colorspace. e.g. from RGB(0, 0, 0) to RGB(255, 255, 255) for the RGB c

trader_add

(PECL trader >= 0.2.0) Vector Arithmetic Add array trader_add ( array $real0, array $real1 ) Calculates the vector addition of real0 to real1 and returns the resulting vector. Parameters: real0 Array of real values. real1 Array of real values. Returns: Returns an array with calculated data or false on failure

DOMProcessingInstruction::__construct

(PHP 5, PHP 7) Creates a new DOMProcessingInstruction object public DOMProcessingInstruction::__construct ( string $name [, string $value ] ) Creates a new DOMProcessingInstruction object. This object is read only. It may be appended to a document, but additional nodes may not be appended to this node until the node is associated with a document. To create a writeable node, use DOMDocument::createProcessingInstruction.

mcrypt_module_is_block_algorithm

(PHP 4 >= 4.0.2, PHP 5, PHP 7) This function checks whether the specified algorithm is a block algorithm bool mcrypt_module_is_block_algorithm ( string $algorithm [, string $lib_dir ] ) This function returns TRUE if the specified algorithm is a block algorithm, or FALSE if it is a stream one. Parameters: algorithm The algorithm to check. lib_dir