CairoContext::clipRectangleList

(PECL cairo >= 0.1.0) Retrieves the current clip as a list of rectangles public array CairoContext::clipRectangleList ( void ) Object oriented style (method): Procedural style: array cairo_clip_rectangle_list ( CairoContext $context ) Returns a list-type array with the current clip region as a list of rectangles in user coordinates Parameters: context A valid CairoCon

Imagick::uniqueImageColors

(PECL imagick 2.0.0) Discards all but one of any pixel color bool Imagick::uniqueImageColors ( void ) Discards all but one of any pixel color. This method is available if Imagick has been compiled against ImageMagick version 6.2.9 or newer. Returns: Returns TRUE on success. Examples: Imagick::uniqueImageColors() <?php

imagecreatefromwebp

(PHP 5 >= 5.5.0, PHP 7) Create a new image from file or URL resource imagecreatefromwebp ( string $filename ) imagecreatefromwebp() returns an image identifier representing the image obtained from the given filename. TipA URL can be used as a filename with this function if the fopen wrappers have been enabled. See fopen() for more details on how to specify the filename. See the Supported Protocols and Wrappers for links

ibase_free_event_handler

(PHP 5, PHP 7) Cancels a registered event handler bool ibase_free_event_handler ( resource $event ) This function causes the registered event handler specified by event to be cancelled. The callback function will no longer be called for the events it was registered to handle. Parameters: event An event resource, created by ibase_set_event_handler(). Re

EvWatcher::keepalive

(PECL ev >= 0.2.0) Configures whether to keep the loop from returning public bool EvWatcher::keepalive ([ bool $value ] ) Configures whether to keep the loop from returning. With keepalive value set to FALSE the watcher won't keep Ev::run() / EvLoop::run() from returning even though the watcher is active. Watchers have keepalive value TRUE by default. Clearing keepalive status is useful when returning from Ev::run()

mcrypt_module_self_test

(PHP 4 >= 4.0.2, PHP 5, PHP 7) This function runs a self test on the specified module bool mcrypt_module_self_test ( string $algorithm [, string $lib_dir ] ) This function runs the self test on the algorithm specified. Parameters: algorithm One of the MCRYPT_ciphername constants, or the name of the algorithm as string. lib_dir The opti

MongoDate::__construct

(PECL mongo >= 0.8.1) Creates a new date. public MongoDate::__construct ([ int $sec = time() [, int $usec = 0 ]] ) Creates a new date. If no parameters are given, the current time is used. Parameters: sec Number of seconds since the epoch (i.e. 1 Jan 1970 00:00:00.000 UTC). usec Microseconds. Please be aware though that MongoDB's r

Memcache::decrement

(PECL memcache >= 0.2.0) Decrement item's value int Memcache::decrement ( string $key [, int $value = 1 ] ) Memcache::decrement() decrements value of the item by value. Similarly to Memcache::increment(), current value of the item is being converted to numerical and after that value is subtracted. Note: New item's value will not be less than zero. Note: Do not use Memcache::decrement() with item, which was store

register_shutdown_function

(PHP 4, PHP 5, PHP 7) Register a function for execution on shutdown void register_shutdown_function ( callable $callback [, mixed $parameter [, mixed $... ]] ) Registers a callback to be executed after script execution finishes or exit() is called. Multiple calls to register_shutdown_function() can be made, and each will be called in the same order as they were registered. If you call exit() within one registered shutdown

IntlTimeZone::countEquivalentIDs

(PHP 5.5.0, PHP 7, PECL >= 3.0.0a1) Get the number of IDs in the equivalency group that includes the given ID public static integer IntlTimeZone::countEquivalentIDs ( string $zoneId ) Parameters: zoneId Returns: This function is currently not documented; only its argument list is available.