Gmagick::mapimage

(PECL gmagick >= Unknown) Replaces the colors of an image with the closest color from a reference image. public Gmagick Gmagick::mapimage ( gmagick $gmagick, bool $dither ) Replaces the colors of an image with the closest color from a reference image. Parameters: gmagick The reference image dither Set this integer value to something

Phar::offsetUnset

(PHP >= 5.3.0, PECL phar >= 1.0.0) remove a file from a phar public bool Phar::offsetUnset ( string $offset ) Note: This method requires the php.ini setting phar.readonly to be set to 0 in order to work for Phar objects. Otherwise, a PharException will be thrown. This is an implementation of the ArrayAccess interface allowing direct manipulation of the contents of a Phar archive using array access brackets. offsetUn

variant_eqv

(PHP 5, PHP 7) Performs a bitwise equivalence on two variants mixed variant_eqv ( mixed $left, mixed $right ) Performs a bitwise equivalence on two variants. Parameters: left The left operand. right The right operand. Returns: If each bit in left is equal to the corresponding bit in right then TRUE is returned,

ErrorException::__construct

(PHP 5 >= 5.1.0, PHP 7) Constructs the exception public ErrorException::__construct ([ string $message = "" [, int $code = 0 [, int $severity = 1 [, string $filename = __FILE__ [, int $lineno = __LINE__ [, Exception $previous = NULL ]]]]]] ) Constructs the Exception. Parameters: message The Exception message to throw. code The Exception code.

elseif/else if

(PHP 4, PHP 5, PHP 7) Examples: elseif, as its name suggests, is a combination of if and else. Like else, it extends an if statement to execute a different statement in case the original if expression evaluates to FALSE. However, unlike else, it will execute that alternative expression only if the elseif conditional expression evaluates to TRUE. For example, the following code would displ

ReflectionProperty::isProtected

(PHP 5, PHP 7) Checks if property is protected public bool ReflectionProperty::isProtected ( void ) Checks whether the property is protected. Returns: TRUE if the property is protected, FALSE otherwise. See also: ReflectionProperty::isPublic() - ReflectionProperty::isPrivate() -

MongoCollection::parallelCollectionScan

(PECL mongo >=1.5.0) Returns an array of cursors to iterator over a full collection in parallel public array[MongoCommandCursor] MongoCollection::parallelCollectionScan ( int $num_cursors ) This method returns an array of a maximum of num_cursors cursors. An iteration over one of the returned cursors results in a partial set of documents for a collection. Iteration over all the returned cursors results in getting every d

SDO_DAS_XML_Document::setEncoding

(^) Sets the given string as encoding void SDO_DAS_XML_Document::setEncoding ( string $encoding ) Sets the given string as encoding. Parameters: encoding Encoding string. Returns: None.

cairo_surface_set_device_offset

(PECL cairo >= 0.1.0) Description void cairo_surface_set_device_offset ( CairoSurface $surface, float $x, float $y ) The function description goes here. Parameters: surface Description... x Description... y Description... Returns: What is returned on success and failure

MongoLog::setModule

(PECL mongo >= 1.2.3) Sets the module(s) to be logged public static void MongoLog::setModule ( int $module ) This function can be used to set which driver modules should be logged. The MongoLog module constants may be used with bitwise operators to specify multiple modules. <?php // first, specify a logging level MongoLog::setLevel(MongoLog::ALL); // log replica set activity MongoLog::setModule(MongoLog::RS); //