ImagickDraw::getStrokeMiterLimit

(PECL imagick 2.0.0) Returns the stroke miter limit int ImagickDraw::getStrokeMiterLimit ( void ) Returns the miter limit. When two line segments meet at a sharp angle and miter joins have been specified for 'lineJoin', it is possible for the miter to extend far beyond the thickness of the line stroking the path. The 'miterLimit' imposes a limit on the ratio of the miter length to the 'lineWidth'. Retur

IntlChar::getPropertyValueEnum

(PHP 7) Get the property value for a given value name public static int IntlChar::getPropertyValueEnum ( int $property, string $name ) Returns the property value integer for a given value name, as specified in the Unicode database file PropertyValueAliases.txt. Short, long, and any other variants are recognized. Note: Some of the names in PropertyValueAliases.txt will only be recognized with IntlChar::PROPERTY_GENERAL_CA

IntlChar::charType

(PHP 7) Get the general category value for a code point public static int IntlChar::charType ( mixed $codepoint ) Returns the general category value for the code point. Parameters: codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}") Returns: Returns the general categor

openal_device_close

(PECL openal >= 0.1.0) Close an OpenAL device bool openal_device_close ( resource $device ) Parameters: device An Open AL(Device) resource (previously created by openal_device_open()) to be closed. Returns: Returns TRUE on success or FALSE on failure. See also:

ImagickDraw::getClipUnits

(PECL imagick 2.0.0) Returns the interpretation of clip path units int ImagickDraw::getClipUnits ( void ) Returns the interpretation of clip path units. Returns: Returns an int on success. This function is currently not documented; only its argument list is available.

PDO::commit

(PHP 5 >= 5.1.0, PHP 7, PECL pdo >= 0.1.0) Commits a transaction public bool PDO::commit ( void ) Commits a transaction, returning the database connection to autocommit mode until the next call to PDO::beginTransaction() starts a new transaction. Returns: Returns TRUE on success or FALSE on failure. Examples: Committing a basic

strripos

(PHP 5, PHP 7) Find the position of the last occurrence of a case-insensitive substring in a string int strripos ( string $haystack, string $needle [, int $offset = 0 ] ) Find the numeric position of the last occurrence of needle in the haystack string. Unlike the strrpos(), strripos() is case-insensitive. Parameters: haystack The string to search in.

SVM::setOptions

(PECL svm >= 0.1.0) Set training parameters public bool SVM::setOptions ( array $params ) Set one or more training parameters. Parameters: params An array of training parameters, keyed on the SVM constants. Returns: Return true on success, throws SVMException on error.

imagesavealpha

(PHP 4 >= 4.3.2, PHP 5, PHP 7) Set the flag to save full alpha channel information (as opposed to single-color transparency) when saving PNG images bool imagesavealpha ( resource $image, bool $saveflag ) imagesavealpha() sets the flag to attempt to save full alpha channel information (as opposed to single-color transparency) when saving PNG images. You have to unset alphablending (imagealphablending($im, false)), to use

ReflectionClass::export

(PHP 5, PHP 7) Exports a class public static string ReflectionClass::export ( mixed $argument [, bool $return = false ] ) Exports a reflected class. Parameters: argument The reflection to export. return Setting to TRUE will return the export, as opposed to emitting it. Setting to FALSE (the default) will do the opposite.