parsekit_func_arginfo

(PECL parsekit >= 0.3.0) Return information regarding function argument(s) array parsekit_func_arginfo ( mixed $function ) Parameters: function A string describing a function, or an array describing a class/method. Returns: Returns an array containing argument information. This function is EXPERIMENTAL. The b

Objects

Examples: To create a new object, use the new statement to instantiate a class: <?php class foo {     function do_foo()     {         echo "Doing foo.";      } } $bar = new foo; $bar->do_foo(); ?> If an object is converted to an object, it is not modified. If a value of any other type is converted to an object, a new instance of the stdClass built-in class is created. If the value was NULL, the new instance will be empty. An ar

exif_tagname

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Get the header name for an index string exif_tagname ( int $index ) Parameters: index The Tag ID for which a Tag Name will be looked up. Returns: Returns the header name, or FALSE if index is not a defined EXIF tag id. Examples: exif_tagname() example

ImagickDraw::setTextEncoding

(PECL imagick 2.0.0) Specifies the text code set bool ImagickDraw::setTextEncoding ( string $encoding ) Specifies the code set to use for text annotations. The only character encoding which may be specified at this time is "UTF-8" for representing Unicode as a sequence of bytes. Specify an empty string to set text encoding to the system's default. Successful text annotation using Unicode may require fonts designed to support

PDF_show_boxed

(PHP 4, PECL pdflib >= 1.0.0) Output text in a box [deprecated] int PDF_show_boxed ( resource $p, string $text, float $left, float $top, float $width, float $height, string $mode, string $feature ) This function is deprecated since PDFlib version 6, use PDF_fit_textline() for single lines, or the PDF_*_textflow() functions for multi-line formatting instead.

cairo_pattern_create_rgba

(PECL cairo >= 0.1.0) Description CairoPattern cairo_pattern_create_rgba ( float $red, float $green, float $blue, float $alpha ) The function description goes here. Parameters: red Description... green Description... blue Description... alpha Description...

VarnishStat::__construct

(PECL varnish >= 0.3) VarnishStat constructor public VarnishStat::__construct ([ array $args ] ) Parameters: args Configuration arguments. The possible keys are: VARNISH_CONFIG_IDENT - local varnish instance ident path Returns:

imagecopyresampled

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Copy and resize part of an image with resampling bool imagecopyresampled ( resource $dst_image, resource $src_image, int $dst_x, int $dst_y, int $src_x, int $src_y, int $dst_w, int $dst_h, int $src_w, int $src_h ) imagecopyresampled() copies a rectangular portion of one image to another image, smoothly interpolating pixel values so that, in particular, reducing the size of an image still ret

dbplus_errno

(PHP 4 <= 4.1.0, PECL dbplus >= 0.9) Get error code for last operation int dbplus_errno ( void ) Returns the error code returned by the last db++ operation. Returns: Returns the error code, as an integer. See also: dbplus_errcode() -

dbplus_xlockrel

(PHP 4 <= 4.1.0, PECL dbplus >= 0.9) Request exclusive lock on relation int dbplus_xlockrel ( resource $relation ) Request an exclusive lock on relation preventing even read access from other clients. Parameters: relation A relation opened by dbplus_open(). Returns: See also: