ImagickDraw::translate

(PECL imagick 2.0.0) Applies a translation to the current coordinate system bool ImagickDraw::translate ( float $x, float $y ) Applies a translation to the current coordinate system which moves the coordinate system origin to the specified coordinate. Parameters: x horizontal translation y vertical translation Return

ArrayIterator::ksort

(PHP 5 >= 5.2.0, PHP 7) Sort array by keys public void ArrayIterator::ksort ( void ) Sorts an array by the keys. Returns: No value is returned. This function is currently not documented; only its argument list is available. See also: ArrayIterator::asort() -

IntlChar::getPropertyValueEnum

(PHP 7) Get the property value for a given value name public static int IntlChar::getPropertyValueEnum ( int $property, string $name ) Returns the property value integer for a given value name, as specified in the Unicode database file PropertyValueAliases.txt. Short, long, and any other variants are recognized. Note: Some of the names in PropertyValueAliases.txt will only be recognized with IntlChar::PROPERTY_GENERAL_CA

ncurses_prefresh

(PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Copies a region from a pad into the virtual screen int ncurses_prefresh ( resource $pad, int $pminrow, int $pmincol, int $sminrow, int $smincol, int $smaxrow, int $smaxcol ) Parameters: pad pminrow pmincol sminrow

strtolower

(PHP 4, PHP 5, PHP 7) Make a string lowercase string strtolower ( string $string ) Returns string with all alphabetic characters converted to lowercase. Note that 'alphabetic' is determined by the current locale. This means that e.g. in the default "C" locale, characters such as umlaut-A (Ä) will not be converted. Parameters: string The input string.

trader_mavp

(PECL trader >= 0.2.0) Moving average with variable period array trader_mavp ( array $real, array $periods [, integer $minPeriod [, integer $maxPeriod [, integer $mAType ]]] ) Parameters: real Array of real values. periods Array of real values. minPeriod Value less than minimum will be changed to Min

fann_train_on_file

(PECL fann >= 1.0.0) Trains on an entire dataset, which is read from file, for a period of time bool fann_train_on_file ( resource $ann, string $filename, int $max_epochs, int $epochs_between_reports, float $desired_error ) Trains on an entire dataset, which is read from file, for a period of time. This training uses the training algorithm chosen by fann_set_training_algorithm() and the parameters set for these training

timezone_identifiers_list

(PHP 5 >= 5.2.0, PHP 7) Alias of DateTimeZone::listIdentifiers() This function is an alias of: DateTimeZone::listIdentifiers()

php_check_syntax

(PHP 5 <= 5.0.4) Check the PHP syntax of (and execute) the specified file bool php_check_syntax ( string $filename [, string &$error_message ] ) Performs a syntax (lint) check on the specified filename testing for scripting errors. This is similar to using php -l from the commandline except that this function will execute (but not output) the checked filename. For example, if a function is defined in filename, t

hypot

(PHP 4 >= 4.1.0, PHP 5, PHP 7) Calculate the length of the hypotenuse of a right-angle triangle float hypot ( float $x, float $y ) hypot() returns the length of the hypotenuse of a right-angle triangle with sides of length x and y, or the distance of the point (x, y) from the origin. This is equivalent to sqrt(x*x + y*y). Parameters: x Length of first side