radius_put_attr

(PECL radius >= 1.1.0) Attaches a binary attribute bool radius_put_attr ( resource $radius_handle, int $type, string $value [, int $options = 0 [, int $tag ]] ) Attaches a binary attribute to the current RADIUS request. Note: A request must be created via radius_create_request() before this function can be called. Parameters: radius_handle The RADIUS resource.

mhash_count

(PHP 4, PHP 5, PHP 7) Gets the highest available hash ID int mhash_count ( void ) Gets the highest available hash ID. Returns: Returns the highest available hash ID. Hashes are numbered from 0 to this hash ID. Examples: Traversing all hashes <?php $nr = mhash_count(); for ($i = 0; $i <= $nr; $i++) {     echo sprin

ps_begin_template

(PECL ps >= 1.2.0) Start a new template int ps_begin_template ( resource $psdoc, float $width, float $height ) Starts a new template. A template is called a form in the postscript language. It is created similar to a pattern but used like an image. Templates are often used for drawings which are placed several times through out the document, e.g. like a company logo. All drawing functions may be used within a template. Th

IntlChar::isWhitespace

(PHP 7) Check if code point is a whitespace character according to ICU public static bool IntlChar::isWhitespace ( mixed $codepoint ) Determines if the specified code point is a whitespace character according to ICU. A character is considered to be a Java whitespace character if and only if it satisfies one of the following criteria: It is a Unicode Separator character (categories "Z" = "Zs" or "Zl" or "Zp"), but is not a

MongoCursor::addOption

(PECL mongo >=1.0.4) Adds a top-level key/value pair to a query public MongoCursor MongoCursor::addOption ( string $key, mixed $value ) This is an advanced function and should not be used unless you know what you're doing. A query can optionally be nested in a "query" field if other options, such as a sort or hint, are given. For instance, adding a sort causes the query to become a subfield of a bigger query object, lik

ReflectionFunctionAbstract::getExtension

(PHP 5, PHP 7) Gets extension info public ReflectionExtension ReflectionFunctionAbstract::getExtension ( void ) Get the extension information of a function. Returns: The extension information, as a ReflectionExtension object. This function is currently not documented; only its argument list is available.

Imagick::stripImage

(PECL imagick 2.0.0) Strips an image of all profiles and comments bool Imagick::stripImage ( void ) Strips an image of all profiles and comments. Returns: Returns TRUE on success. Exception: Throws ImagickException on error.

Imagick::contrastImage

(PECL imagick 2.0.0) Change the contrast of the image bool Imagick::contrastImage ( bool $sharpen ) Enhances the intensity differences between the lighter and darker elements of the image. Set sharpen to a value other than 0 to increase the image contrast otherwise the contrast is reduced. Parameters: sharpen The sharpen value Returns: Returns TR

Imagick::sigmoidalContrastImage

(PECL imagick 2.0.0) Adjusts the contrast of an image bool Imagick::sigmoidalContrastImage ( bool $sharpen, float $alpha, float $beta [, int $channel = Imagick::CHANNEL_ALL ] ) Adjusts the contrast of an image with a non-linear sigmoidal contrast algorithm. Increase the contrast of the image using a sigmoidal transfer function without saturating highlights or shadows. Contrast indicates how much to increase the contrast (0

Imagick::current

(PECL imagick 2.0.0) Returns a reference to the current Imagick object Imagick Imagick::current ( void ) Returns reference to the current imagick object with image pointer at the correct sequence. Returns: Returns self on success. Exception: Throws ImagickException on error.