CairoContext::deviceToUserDistance

(PECL cairo >= 0.1.0) Transform a distance public array CairoContext::deviceToUserDistance ( float $x, float $y ) Object oriented style (method): Procedural style: array cairo_device_to_user_distance ( CairoContext $context , float $x , float $y ) Transform a distance vector from device space to user space. This function is similar to CairoContext::deviceToUser() or cairo_device_to_user() except that the translation comp

id3_get_frame_long_name

(PECL id3 >= 0.2) Get the long name of an ID3v2 frame string id3_get_frame_long_name ( string $frameId ) id3_get_frame_long_name() returns the long name for an ID3v2 frame. Parameters: frameId An ID3v2 frame Returns: Returns the frame long name or FALSE on errors. Examples: id3_get

newt_grid_wrapped_window_at

(PECL newt >= 0.1) void newt_grid_wrapped_window_at ( resource $grid, string $title, int $left, int $top ) Parameters: grid title left top Returns: No value is returned. This function is currently not documented; only its argum

Yaf_Request_Http::get

(Yaf >=1.0.0) Retrieve variable from client public mixed Yaf_Request_Http::get ( string $name [, string $default ] ) Retrieve variable from client, this method will search the name in request pramas, if the name is not found, then will search in POST, GET, Cookie, Server Parameters: name the variable name default if this parameter is

mqseries_strerror

(PECL mqseries >= 0.10.0) Returns the error message corresponding to a result code (MQRC). string mqseries_strerror ( int $reason ) mqseries_strerror() returns the message that correspond to the reason result code. Parameters: reason Reason code qualifying the compCode. Returns: string representation of the reason code message.

grapheme_stristr

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Returns part of haystack string from the first occurrence of case-insensitive needle to the end of haystack. string grapheme_stristr ( string $haystack, string $needle [, bool $before_needle = false ] ) Procedural style Returns part of haystack string starting from and including the first occurrence of case-insensitive needle to the end of haystack. Paramete

getmyuid

(PHP 4, PHP 5, PHP 7) Gets PHP script owner's UID int getmyuid ( void ) Gets the user ID of the current script. Returns: Returns the user ID of the current script, or FALSE on error. See also: getmygid() - getmypid() - get_current_user() -

Integers

Examples: Integer literals Integers can be specified in decimal (base 10), hexadecimal (base 16), octal (base 8) or binary (base 2) notation, optionally preceded by a sign (- or +). Binary integer literals are available since PHP 5.4.0. To use octal notation, precede the number with a 0 (zero). To use hexadecimal notation precede the number with 0x. To use binary notation precede the number with 0b. <?php $a = 1234; // decimal number $a = -123; // a negative 

ssh2_auth_none

(PECL ssh2 >= 0.9.0) Authenticate as "none" mixed ssh2_auth_none ( resource $session, string $username ) Attempt "none" authentication which usually will (and should) fail. As part of the failure, this function will return an array of accepted authentication methods. Parameters: session An SSH connection link identifier, obtained from a call to ssh2_connect().

CURLFile::getFilename

(PHP 5 >= 5.5.0, PHP 7) Get file name public string CURLFile::getFilename ( void ) Returns: Returns file name.