ImagickPixel::getColorValueQuantum

(No version information available, might only be in Git) Description public mixed ImagickPixel::getColorValueQuantum ( void ) Gets the quantum value of a color in the ImagickPixel. Return value is a float if ImageMagick was compiled with HDRI, otherwise an integer. Returns: The quantum value of the color element. Float if ImageMagick was compiled with HDRI, otherwise an int.

svn_import

(PECL svn >= 0.2.0) Imports an unversioned path into a repository bool svn_import ( string $path, string $url, bool $nonrecursive ) Commits unversioned path into repository at url. If path is a directory and nonrecursive is FALSE, the directory will be imported recursively. Parameters: path Path of file or directory to import. Note: Relative paths will be resolved as

Stomp::unsubscribe

(PECL stomp >= 0.1.0) Removes an existing subscription public bool Stomp::unsubscribe ( string $destination [, array $headers ] ) Object oriented style (method): Procedural style: bool stomp_unsubscribe ( resource $link , string $destination [, array $headers ] ) Removes an existing subscription. Parameters: link Procedural style only: The stomp link identifier returne

SWFShape::movePenTo

(PHP 5 <= 5.3.0, PECL ming SVN) Moves the shape's pen void SWFShape::movePenTo ( float $x, float $y ) swfshape::setrightfill() move the shape's pen to (x,y) in the shape's coordinate space. Returns: No value is returned. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a futu

XMLWriter::openMemory

(PHP 5 >= 5.1.2, PHP 7, PECL xmlwriter >= 0.1.0) Create new xmlwriter using memory for string output bool XMLWriter::openMemory ( void ) Object oriented style Procedural style resource xmlwriter_open_memory ( void ) Creates a new XMLWriter using memory for string output. Returns: Object oriented style: Returns TRUE on success or FALSE on failure. Procedural style: Returns a new xmlwriter

imagesetinterpolation

(PHP 5 >= 5.5.0, PHP 7) Set the interpolation method bool imagesetinterpolation ( resource $image [, int $method = IMG_BILINEAR_FIXED ] ) Sets the interpolation method, setting an interpolation method affects the rendering of various functions in GD, such as the imagerotate() function. Parameters: image An image resource, returned by one of the image creation functions

checkdnsrr

(PHP 4, PHP 5, PHP 7) Check DNS records corresponding to a given Internet host name or IP address bool checkdnsrr ( string $host [, string $type = "MX" ] ) Searches DNS for records of type type corresponding to host. Parameters: host host may either be the IP address in dotted-quad notation or the host name. type type may be any one of

QuickHashStringIntHash::get

(No version information available, might only be in Git) This method retrieves a value from the hash by its key public mixed QuickHashStringIntHash::get ( string $key ) This method retrieves a value from the hash by its key. Parameters: key The key of the entry to add. Returns: The value if the key exists, or NULL if the key wasn't part of the ha

GearmanTask::function

(PECL gearman <= 0.5.0) Get associated function name (deprecated) public string GearmanTask::function ( void ) Returns the name of the function this task is associated with, i.e., the function the Gearman worker calls. Note: This method has been replaced by GearmanTask::functionName() in the 0.6.0 release of the Gearman extension. Returns: A function name.

SimpleXMLElement::getName

(PHP 5 >= 5.1.3, PHP 7) Gets the name of the XML element public string SimpleXMLElement::getName ( void ) Gets the name of the XML element. Returns: The getName method returns as a string the name of the XML tag referenced by the SimpleXMLElement object. Examples: Get XML element names Note: Listed examples may includ