ReflectionFunctionAbstract::hasReturnType

(PHP 7) Checks if the function has a specified return type public bool ReflectionFunctionAbstract::hasReturnType ( void ) Checks whether the reflected function has a return type specified. Returns: Returns TRUE if the function is a specified return type, otherwise FALSE. Examples: ReflectionFunctionAbstract::hasReturnType() example

variant_and

(PHP 5, PHP 7) Performs a bitwise AND operation between two variants mixed variant_and ( mixed $left, mixed $right ) Performs a bitwise AND operation. Note that this is slightly different from a regular AND operation. Parameters: left The left operand. right The right operand. Returns: Variant AND Rules If left

ImagickPixel::setColorCount

(No version information available, might only be in Git) Description public void ImagickPixel::setcolorcount ( string $colorCount ) Sets the color count associated with this color. Parameters: colorCount Sets the color count associated with this color. Returns:

IntlBreakIterator::createCharacterInstance

(No version information available, might only be in Git) Create break iterator for boundaries of combining character sequences public static ReturnType IntlBreakIterator::createCharacterInstance ([ string $"locale" ] ) Parameters: "locale" Returns: This function is currently not documented; only its argument list

Ev::depth

(PECL ev >= 0.2.0) Returns recursion depth final public static int Ev::depth ( void ) The number of times Ev::run() was entered minus the number of times Ev::run() was exited normally, in other words, the recursion depth. Outside Ev::run() , this number is 0 . In a callback, this number is 1 , unless Ev::run() was invoked recursively (or from another thread), in which case it is higher. Returns:

ImagickDraw::pathCurveToRelative

(PECL imagick 2.0.0) Draws a cubic Bezier curve bool ImagickDraw::pathCurveToRelative ( float $x1, float $y1, float $x2, float $y2, float $x, float $y ) Draws a cubic Bezier curve from the current point to (x,y) using (x1,y1) as the control point at the beginning of the curve and (x2,y2) as the control point at the end of the curve using relative coordinates. At the end of the command, the new current point becomes the final

CairoFontOptions::setAntialias

(PECL cairo >= 0.1.0) The setAntialias purpose public void CairoFontOptions::setAntialias ( string $antialias ) Object oriented style (method): Procedural style: void cairo_set_antialias ( CairoContext $context [, string $antialias ] ) Description here. Parameters: context Description... antialias Description...

Gmagick::setimagedepth

(PECL gmagick >= Unknown) Sets the image depth public Gmagick Gmagick::setimagedepth ( int $depth ) Sets the image depth Parameters: depth The image depth in bits: 8, 16, or 32. Returns: The Gmagick object on success. Exception: Throws an GmagickException on error.

MongoCollection::__get

(PECL mongo >=1.0.2) Gets a collection public MongoCollection MongoCollection::__get ( string $name ) A concise syntax for getting a collection with a dot-separated name. If a collection name contains strange characters, you may have to use MongoDB::selectCollection() instead. <?php $mongo = new MongoClient(); // the following two lines are equivalent $collection = $mongo->selectDB("foo")->selectCollection("

imagecolorallocatealpha

(PHP 4 >= 4.3.2, PHP 5, PHP 7) Allocate a color for an image int imagecolorallocatealpha ( resource $image, int $red, int $green, int $blue, int $alpha ) imagecolorallocatealpha() behaves identically to imagecolorallocate() with the addition of the transparency parameter alpha. Parameters: image An image resource, returned by one of the image creation functions, such as