snmp_get_quick_print

(PHP 4, PHP 5, PHP 7) Fetches the current value of the UCD library's quick_print setting bool snmp_get_quick_print ( void ) Returns the current value stored in the UCD Library for quick_print. quick_print is off by default. Returns: Returns TRUE if quick_print is on, FALSE otherwise. Examples: snmp_get_quick_print() example

CairoPdfSurface::__construct

(PECL cairo >= 0.1.0) The __construct purpose public CairoPdfSurface::__construct ( string $file, float $width, float $height ) The method description goes here. Parameters: file Description... width Description... height Description... Returns: Description...

hw_api_reason::description

(PHP 4, PHP 5 < 5.2.0, PECL hwapi SVN) Returns description of reason string hw_api_reason::description ( void ) Returns the description of a reason Returns: Returns the description, as a string.

yp_first

(PHP 4, PHP 5 <= 5.0.5) Returns the first key-value pair from the named map array yp_first ( string $domain, string $map ) Gets the first key-value pair from the named map in the named domain. Parameters: domain The NIS domain name. map The NIS map. Returns: Returns the first key-value pair as an array on su

ocifetchinto

(PHP 4, PHP 5, PHP 7, PECL OCI8 >= 1.0.0) Obsolete variant of oci_fetch_array(), oci_fetch_object(), oci_fetch_assoc() and oci_fetch_row() Obsolete variant of oci_fetch_array(), oci_fetch_object(), oci_fetch_assoc() and oci_fetch_row() This alias has been DEPRECATED as of PHP 5.4.0. Relying on this alias is highly discouraged.

is_uploaded_file

(PHP 4 >= 4.0.3, PHP 5, PHP 7) Tells whether the file was uploaded via HTTP POST bool is_uploaded_file ( string $filename ) Returns TRUE if the file named by filename was uploaded via HTTP POST. This is useful to help ensure that a malicious user hasn't tried to trick the script into working on files upon which it should not be working--for instance, /etc/passwd. This sort of check is especially important if there is an

bbcode_set_arg_parser

(PECL bbcode >= 0.10.2) Attach another parser in order to use another rule set for argument parsing bool bbcode_set_arg_parser ( resource $bbcode_container, resource $bbcode_arg_parser ) Attaches another parser to the bbcode_container. This parser is used only when arguments must be parsed. If this function is not used, the default argument parser is the parser itself. Parameters:

openal_source_play

(PECL openal >= 0.1.0) Start playing the source bool openal_source_play ( resource $source ) Parameters: source An Open AL(Source) resource (previously created by openal_source_create()). Returns: Returns TRUE on success or FALSE on failure. See also: openal

imagestring

(PHP 4, PHP 5, PHP 7) Draw a string horizontally bool imagestring ( resource $image, int $font, int $x, int $y, string $string, int $color ) Draws a string at the given coordinates. Parameters: image An image resource, returned by one of the image creation functions, such as imagecreatetruecolor(). font Can be 1, 2, 3, 4, 5 for built-in fo

array_change_key_case

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Changes the case of all keys in an array array array_change_key_case ( array $array [, int $case = CASE_LOWER ] ) Returns an array with all keys from array lowercased or uppercased. Numbered indices are left as is. Parameters: array The array to work on case Either CASE_UPPER or CASE_LOWER (default)