IntlTimeZone::getEquivalentID

(PHP 5.5.0, PHP 7, PECL >= 3.0.0a1) Get an ID in the equivalency group that includes the given ID public static string IntlTimeZone::getEquivalentID ( string $zoneId, integer $index ) Parameters: zoneId index Returns: This function is currently not documented; only its argument l

ImagickDraw::setClipPath

(PECL imagick 2.0.0) Associates a named clipping path with the image bool ImagickDraw::setClipPath ( string $clip_mask ) Associates a named clipping path with the image. Only the areas drawn on by the clipping path will be modified as long as it remains in effect. Parameters: clip_mask the clipping path name Returns: No value is returned.

RegexIterator::setMode

(PHP 5 >= 5.2.0, PHP 7) Sets the operation mode. public void RegexIterator::setMode ( int $mode ) Sets the operation mode. Parameters: mode The operation mode. The available modes are listed below. The actual meanings of these modes are described in the predefined constants. RegexIterator modes value constant 0 RegexIterator::MATCH 1 RegexIterator::GET_MATCH 2

ImagickDraw::matte

(PECL imagick 2.0.0) Paints on the image's opacity channel bool ImagickDraw::matte ( float $x, float $y, int $paintMethod ) Paints on the image's opacity channel in order to set effected pixels to transparent, to influence the opacity of pixels. Parameters: x x coordinate of the matte y y coordinate of the matte p

Arithmetic Operators

Examples: The division operator ("/") returns a float value unless the two operands are integers (or strings that get converted to integers) and the numbers are evenly divisible, in which case an integer value will be returned. Operands of modulus are converted to integers (by stripping the decimal part) before processing. The result of the modulus operator % has the same sign as the dividend — that is, the result of $a % $b will have the same sign as $a. For exam

Gmagick::getimagedepth

(PECL gmagick >= Unknown) Gets the depth of the image public int Gmagick::getimagedepth ( void ) Gets the depth of the image. Returns: Image depth Exception: Throws an GmagickException on error.

SolrQuery::getHighlightSnippets

(PECL solr >= 0.9.2) Returns the maximum number of highlighted snippets to generate per field public int SolrQuery::getHighlightSnippets ([ string $field_override ] ) Returns the maximum number of highlighted snippets to generate per field. Accepts an optional field override Parameters: field_override The name of the field Returns: Returns an

ImagickDraw::pushClipPath

(PECL imagick 2.0.0) Starts a clip path definition bool ImagickDraw::pushClipPath ( string $clip_mask_id ) Starts a clip path definition which is comprised of any number of drawing commands and terminated by a ImagickDraw::popClipPath() command. Parameters: clip_mask_id Clip mask Id Returns: No value is returned.

Throwable::getMessage

(PHP 7) Gets the message abstract public string Throwable::getMessage ( void ) Returns the message associated with the thrown object. Returns: Returns the message associated with the thrown object. See also: Exception::getMessage() -

RegexIterator::accept

(PHP 5 >= 5.2.0, PHP 7) Get accept status public bool RegexIterator::accept ( void ) Matches (string) RegexIterator::current() (or RegexIterator::key() if the RegexIterator::USE_KEY flag is set) against the regular expression. Returns: TRUE if a match, FALSE otherwise. Examples: RegexIterator::accept() example This exam