Yaf_Route_Regex::__construct

(Yaf >=1.0.0) Yaf_Route_Regex constructor public Yaf_Route_Regex::__construct ( string $match, array $route [, array $map [, array $verify [, string $reverse ]]] ) Parameters: match A complete Regex pattern, will be used to match a request uri, if doesn't matched, Yaf_Route_Regex will return FALSE. route When the match pattern matches

mysqli_slave_query

(PHP 5 < 5.3.0) Force execution of a query on a slave in a master/slave setup bool mysqli_slave_query ( mysqli $link, string $query ) This function is currently not documented; only its argument list is available. This function has been DEPRECATED and REMOVED as of PHP 5.3.0.

Imagick::modulateImage

(PECL imagick 2.0.0) Control the brightness, saturation, and hue bool Imagick::modulateImage ( float $brightness, float $saturation, float $hue ) Lets you control the brightness, saturation, and hue of an image. Hue is the percentage of absolute rotation from the current position. For example 50 results in a counter-clockwise rotation of 90 degrees, 150 results in a clockwise rotation of 90 degrees, with 0 and 200 both resul

socket_getopt

(PHP 4 >= 4.1.0, PHP 5, PHP 7) Alias of socket_get_option() This function is an alias of: socket_get_option().

UConverter::getErrorCode

(PHP 5.5.0, PHP 7, PECL >= 3.0.0a1) Get last error code on the object public integer UConverter::getErrorCode ( void ) Returns: This function is currently not documented; only its argument list is available.

Yaf_Dispatcher::returnResponse

(Yaf >=1.0.0) The returnResponse purpose public Yaf_Dispatcher Yaf_Dispatcher::returnResponse ( bool $flag ) Parameters: flag Returns:

Yaf_Request_Http::getQuery

(Yaf >=1.0.0) Fetch a query parameter public mixed Yaf_Request_Http::getQuery ( string $name [, string $default ] ) Retrieve GET variable Parameters: name the variable name default if this parameter is provide, this will be returned if the variable can not be found Returns:

Basics

Basic class definitions begin with the keyword class, followed by a class name, followed by a pair of curly braces which enclose the definitions of the properties and methods belonging to the class. The class name can be any valid label, provided it is not a PHP reserved word. A valid class name starts with a letter or underscore, followed by any number of letters, numbers, or underscores. As a regular expression, it would be expressed thus: ^[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*$.

Closure::bindTo

(PHP 5 >= 5.4.0, PHP 7) Duplicates the closure with a new bound object and class scope public Closure Closure::bindTo ( object $newthis [, mixed $newscope = "static" ] ) Create and return a new anonymous function with the same body and bound variables as this one, but possibly with a different bound object and a new class scope. The “bound object” determines the value $this will have in the function body and the “cla

Directory::rewind

(PHP 4, PHP 5, PHP 7) Rewind directory handle public void Directory::rewind ([ resource $dir_handle ] ) Same as rewinddir(), only dir_handle defaults to $this.