ImagickPixel::getColorQuantum

(No version information available, might only be in Git) Description public mixed ImagickPixel::getColorQuantum ( void ) Returns the color of the pixel in an array as Quantum values. If ImageMagick was compiled as HDRI these will be floats, otherwise they will be integers. Returns: The quantum value of the color element. Float if ImageMagick was compiled with HDRI, otherwise an int.

ReflectionClass::isCloneable

(PHP >= 5.4.0) Returns whether this class is cloneable public bool ReflectionClass::isCloneable ( void ) Returns whether this class is cloneable. Returns: Returns TRUE if the class is cloneable, FALSE otherwise. Examples: Basic usage of ReflectionClass::isCloneable() <?php class NotCloneable {     public $var1;     

Phar::compressAllFilesGZ

(PHP >= 5.3.0, PECL phar >= 1.0.0) Compresses all files in the current Phar archive using Gzip compression public bool Phar::compressAllFilesGZ ( void ) Note: This method has been removed from the phar extension as of version 2.0.0. Alternative implementations are available using Phar::compress(), Phar::decompress(), Phar::compressFiles() and Phar::decompressFiles(). Note: This method requires the php.ini setting p

SolrDocument::__isset

(PECL solr >= 0.9.2) Checks if a field exists public bool SolrDocument::__isset ( string $fieldName ) Checks if a field exists Parameters: fieldName Name of the field. Returns: Returns TRUE on success or FALSE on failure.

imagefilter

(PHP 5, PHP 7) Applies a filter to an image bool imagefilter ( resource $image, int $filtertype [, int $arg1 [, int $arg2 [, int $arg3 [, int $arg4 ]]]] ) imagefilter() applies the given filter filtertype on the image. Parameters: image An image resource, returned by one of the image creation functions, such as imagecreatetruecolor(). filtertype

newt_suspend

(PECL newt >= 0.1) Tells newt to return the terminal to its initial state void newt_suspend ( void ) Tells newt to return the terminal to its initial state. Once this is done, the application can suspend itself (by sending itself a SIGTSTP, fork a child program, or do whatever else it likes). Returns: No value is returned. See a

CairoContext::popGroupToSource

(PECL cairo >= 0.1.0) The popGroupToSource purpose public void CairoContext::popGroupToSource ( void ) Object oriented style (method): Procedural style: void cairo_pop_group_to_source ( CairoContext $context ) Description here. Parameters: context Description... Returns: Description... This function is cu

ReflectionClass::hasMethod

(PHP 5 >= 5.1.0, PHP 7) Checks if method is defined public bool ReflectionClass::hasMethod ( string $name ) Checks whether a specific method is defined in a class. Parameters: name Name of the method being checked for. Returns: TRUE if it has the method, otherwise FALSE Examples: R

CairoContext::getScaledFont

(PECL cairo >= 0.1.0) The getScaledFont purpose public void CairoContext::getScaledFont ( void ) Object oriented style (method): Procedural style: void cairo_get_scaled_font ( CairoContext $context ) Description here. Parameters: context Description... Returns: Description... This function is currently no

ReflectionClass::getShortName

(PHP 5 >= 5.3.0, PHP 7) Gets short name public string ReflectionClass::getShortName ( void ) Gets the short name of the class, the part without the namespace. Returns: The class short name. Examples: ReflectionClass::getShortName() example <?php namespace A\B; class Foo { } $function = new \ReflectionClass('stdCla