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.

DOMProcessingInstruction::__construct

(PHP 5, PHP 7) Creates a new DOMProcessingInstruction object public DOMProcessingInstruction::__construct ( string $name [, string $value ] ) Creates a new DOMProcessingInstruction object. This object is read only. It may be appended to a document, but additional nodes may not be appended to this node until the node is associated with a document. To create a writeable node, use DOMDocument::createProcessingInstruction.

ps_set_text_pos

(PECL ps >= 1.1.0) Sets position for text output bool ps_set_text_pos ( resource $psdoc, float $x, float $y ) Set the position for the next text output. You may alternatively set the x and y value separately by calling ps_set_value() and choosing textx respectively texty as the value name. If you want to output text at a certain position it is more convenient to use ps_show_xy() instead of setting the text position and

ifx_error

(PHP 4, PHP <=5.2.0) Returns error code of last Informix call string ifx_error ([ resource $link_identifier ] ) Returns in a string one character describing the general results of a statement and both SQLSTATE and SQLCODE associated with the most recent SQL statement executed. Parameters: link_identifier The link identifier. Returns: The Infor

mb_detect_encoding

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Detect character encoding string mb_detect_encoding ( string $str [, mixed $encoding_list = mb_detect_order() [, bool $strict = false ]] ) Detects character encoding in string str. Parameters: str The string being detected. encoding_list encoding_list is list of character encoding. Encoding order may

SDO_Model_ReflectionDataObject::export

(^) Get a string describing the SDO_DataObject. mixed SDO_Model_ReflectionDataObject::export ( SDO_Model_ReflectionDataObject $rdo [, bool $return ] ) Get a string describing the SDO_DataObject. The default behaviour is to print the output, but if TRUE is specified for return, it is returned as a string. Parameters: rdo An SDO_Model_ReflectionDataObject.