ArrayObject::asort

(PHP 5 >= 5.2.0, PHP 7) Sort the entries by value public void ArrayObject::asort ( void ) Sorts the entries such that the keys maintain their correlation with the entries they are associated with. This is used mainly when sorting associative arrays where the actual element order is significant. Returns: No value is returned. Examples:

trader_cmo

(PECL trader >= 0.2.0) Chande Momentum Oscillator array trader_cmo ( array $real [, integer $timePeriod ] ) Parameters: real Array of real values. timePeriod Number of period. Valid range from 2 to 100000. Returns: Returns an array with calculated data or false on failure.

fbsql_fetch_object

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Fetch a result row as an object object fbsql_fetch_object ( resource $result ) fbsql_fetch_object() is similar to fbsql_fetch_array(), with one difference - an object is returned, instead of an array. Indirectly, that means that you can only access the data by the field names, and not by their offsets (numbers are illegal property names). Speed-wise, the function is identical to fbsql_fetc

session_encode

(PHP 4, PHP 5, PHP 7) Encodes the current session data as a session encoded string string session_encode ( void ) session_encode() returns a serialized string of the contents of the current session data stored in the $_SESSION superglobal. Please note, the serialization method is not the same as serialize(). The serialization method is internal to PHP and can be set using session.serialize_handler. Re

Imagick::getImageDistortion

(PECL imagick 2.0.0) Compares an image to a reconstructed image float Imagick::getImageDistortion ( MagickWand $reference, int $metric ) Compares an image to a reconstructed image and returns the specified distortion metric. Parameters: reference Imagick object to compare to. metric One of the metric type constants.

Gmagick::readimageblob

(PECL gmagick >= Unknown) Reads image from a binary string public void Gmagick::readimageblob ( string $imageContents [, string $filename ] ) Reads image from a binary string. Parameters: imageContents Content of image filename The image filename. Returns: The Gmagick object on success

class_alias

(PHP 5 >= 5.3.0, PHP 7) Creates an alias for a class bool class_alias ( string $original, string $alias [, bool $autoload = TRUE ] ) Creates an alias named alias based on the user defined class original. The aliased class is exactly the same as the original class. Parameters: original The original class. alias The alias name for the

ImagickDraw::pathMoveToAbsolute

(PECL imagick 2.0.0) Starts a new sub-path bool ImagickDraw::pathMoveToAbsolute ( float $x, float $y ) Starts a new sub-path at the given coordinate using absolute coordinates. The current point then becomes the specified coordinate. Parameters: x x coordinate of the starting point y y coordinate of the starting point

is_bool

(PHP 4, PHP 5, PHP 7) Finds out whether a variable is a boolean bool is_bool ( mixed $var ) Finds whether the given variable is a boolean. Parameters: var The variable being evaluated. Returns: Returns TRUE if var is a boolean, FALSE otherwise. Examples: is_bool() examples

Yar_Server::__construct

(PECL yar >= 1.0.0) Register a server final public Yar_Server::__construct ( Object $obj ) Set up a Yar HTTP RPC Server, All the public methods of $obj will be register as a RPC service. Parameters: obj An Object, all public methods of its will be registered as RPC services. Returns: An instance of Yar_Server.