Gmagick::getimageformat

(PECL gmagick >= Unknown) Returns the format of a particular image in a sequence public string Gmagick::getimageformat ( void ) Returns the format of a particular image in a sequence. Returns: Returns a string containing the image format on success. Exception: Throws an GmagickException on error.

imap_qprint

(PHP 4, PHP 5, PHP 7) Convert a quoted-printable string to an 8 bit string string imap_qprint ( string $string ) Convert a quoted-printable string to an 8 bit string according to » RFC2045, section 6.7. Parameters: string A quoted-printable string Returns: Returns an 8 bits string.

VarnishAdmin::setParam

(PECL varnish >= 0.4) Set configuration param on the current varnish instance public int VarnishAdmin::setParam ( string $name, string|integer $value ) Parameters: name Varnish configuration param name. value Varnish configuration param value. Returns: Returns the varnish command status.

PDF_begin_page_ext

(PECL pdflib >= 2.0.0) Start new page bool PDF_begin_page_ext ( resource $pdfdoc, float $width, float $height, string $optlist ) Adds a new page to the document, and specifies various options. The parameters width and height are the dimensions of the new page in points. Returns TRUE on success or FALSE on failure. Common Page Sizes in Points name size A0 2380 x 3368 A1 1684 x 2380 A2 1190 x 1684 A3 842 x 1190 A4 595 x 84

AppendIterator::__construct

(PHP 5 >= 5.1.0, PHP 7) Constructs an AppendIterator public AppendIterator::__construct ( void ) Constructs an AppendIterator. Returns: No value is returned. Examples: Iterating AppendIterator with foreach <?php $pizzas   = new ArrayIterator(array('Margarita', 'Siciliana', 'Hawaii')); $toppings = new ArrayIterator(array('Cheese', 'A

fann_set_cascade_min_cand_epochs

(PECL fann >= 1.0.0) Sets the min candidate epochs bool fann_set_cascade_min_cand_epochs ( resource $ann, int $cascade_min_cand_epochs ) Sets the min candidate epochs. Parameters: ann Neural network resource. cascade_min_cand_epochs The minimum candidate epochs. Returns: Returns TRUE on success, or FALSE otherw

ReflectionClass::getDefaultProperties

(PHP 5, PHP 7) Gets default properties public array ReflectionClass::getDefaultProperties ( void ) Gets default properties from a class (including inherited properties). Note: This method only works for static properties when used on internal classes. The default value of a static class property can not be tracked when using this method on user defined classes. Returns: An array of default pr

ReflectionProperty::setAccessible

(PHP 5 >= 5.3.0, PHP 7) Set property accessibility public void ReflectionProperty::setAccessible ( bool $accessible ) Sets a property to be accessible. For example, it may allow protected and private properties to be accessed. Parameters: accessible TRUE to allow accessibility, or FALSE. Returns: No value is returned.

Imagick::queryFonts

(PECL imagick 2.0.0) Returns the configured fonts array Imagick::queryFonts ([ string $pattern = "*" ] ) Returns the configured fonts. Parameters: pattern The query pattern Returns: Returns an array containing the configured fonts. Exception: Throws ImagickException on error. Ex

Reflection::export

(PHP 5, PHP 7) Exports public static string Reflection::export ( Reflector $reflector [, bool $return = false ] ) Exports a reflection. Parameters: reflector The reflection to export. return Setting to TRUE will return the export, as opposed to emitting it. Setting to FALSE (the default) will do the opposite. Return