fann_get_cascade_weight_multiplier

(PECL fann >= 1.0.0) Returns the weight multiplier float fann_get_cascade_weight_multiplier ( resource $ann ) The weight multiplier is a parameter which is used to multiply the weights from the candidate neuron before adding the neuron to the neural network. This parameter is usually between 0 and 1, and is used to make the training a bit less aggressive. The default weight multiplier is 0.4. Parameters

IntlCalendar::getErrorMessage

(PHP 5.5.0, PHP 7, PECL >= 3.0.0a1) Get last error message on the object public string IntlCalendar::getErrorMessage ( void ) Object oriented style (method): Procedural style: string intlcal_get_error_message ( IntlCalendar $calendar ) Returns the error message (if any) associated with the error reported by IntlCalendar::getErrorCode() or intlcal_get_error_code(). If there is no associated error message, only the string

newt_open_window

(PECL newt >= 0.1) Open a window of the specified size and position int newt_open_window ( int $left, int $top, int $width, int $height [, string $title ] ) Open a window of the specified size and position. Parameters: left Location of the upper left-hand corner of the window (column number) top Location of the upper left-hand corner

mb_internal_encoding

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Set/Get internal character encoding mixed mb_internal_encoding ([ string $encoding = mb_internal_encoding() ] ) Set/Get the internal character encoding Parameters: encoding encoding is the character encoding name used for the HTTP input character encoding conversion, HTTP output character encoding conversion, and the default character en

cairo_scaled_font_status

(PECL cairo >= 0.1.0) Description int cairo_scaled_font_status ( CairoScaledFont $scaledfont ) The function description goes here. Parameters: scaledfont Description... Returns: What is returned on success and failure This function is currently not documented; only its argument list is available.

CairoContext::inStroke

(PECL cairo >= 0.1.0) The inStroke purpose public bool CairoContext::inStroke ( string $x, string $y ) Object oriented style (method): Procedural style: bool cairo_in_stroke ( CairoContext $context , string $x , string $y ) Description here. Parameters: context Description... x Description... y De

Array Operators

Examples: The + operator returns the right-hand array appended to the left-hand array; for keys that exist in both arrays, the elements from the left-hand array will be used, and the matching elements from the right-hand array will be ignored. <?php $a = array("a" => "apple", "b" => "banana"); $b = array("a" => "pear", "b" => "strawberry", "c" => "cherry"); $c = $a + $b; // Union of $a and $b echo "Union of \$a and \$b: \n"; var_dump($c); $c = $

virtual

(PHP 4, PHP 5, PHP 7) Perform an Apache sub-request bool virtual ( string $filename ) virtual() is an Apache-specific function which is similar to <!--#include virtual...--> in mod_include. It performs an Apache sub-request. It is useful for including CGI scripts or .shtml files, or anything else that you would parse through Apache. Note that for a CGI script, the script must generate valid CGI headers. At the minimum

Scope Resolution Operator (::)

Examples: :: from outside the class definition The Scope Resolution Operator (also called Paamayim Nekudotayim) or in simpler terms, the double colon, is a token that allows access to static, constant, and overridden properties or methods of a class. When referencing these items from outside the class definition, use the name of the class. As of PHP 5.3.0, it's possible to reference the class using a variable. The variable's value can not be a keyword (e.g. self, p

arsort

(PHP 4, PHP 5, PHP 7) Sort an array in reverse order and maintain index association bool arsort ( array &$array [, int $sort_flags = SORT_REGULAR ] ) This function sorts an array such that array indices maintain their correlation with the array elements they are associated with. This is used mainly when sorting associative arrays where the actual element order is significant. Parameters: