DOMElement::setAttribute

(PHP 5, PHP 7) Adds new attribute public DOMAttr DOMElement::setAttribute ( string $name, string $value ) Sets an attribute with name name to the given value. If the attribute does not exist, it will be created. Parameters: name The name of the attribute. value The value of the attribute. Returns: The new DOMAt

Imagick::evaluateImage

(PECL imagick 2.0.0) Applies an expression to an image bool Imagick::evaluateImage ( int $op, float $constant [, int $channel = Imagick::CHANNEL_ALL ] ) Applys an arithmetic, relational, or logical expression to an image. Use these operators to lighten or darken an image, to increase or decrease contrast in an image, or to produce the "negative" of an image. Parameters: op

bbcode_parse

(PECL bbcode >= 0.9.0) Parse a string following a given rule set string bbcode_parse ( resource $bbcode_container, string $to_parse ) This function parse the string to_parse following the rules in the bbcode_container created by bbcode_create() Parameters: bbcode_container BBCode_Container resource returned by bbcode_create(). to_parse

Transliterator::getErrorCode

(PHP >= 5.4.0, PECL intl >= 2.0.0) Get last error code public int Transliterator::getErrorCode ( void ) Object oriented style Procedural style int transliterator_get_error_code ( void ) Gets the last error code for this transliterator. Returns: The error code on success, or FALSE if none exists, or on failure. This function is currently not documented; o

SplFixedArray::fromArray

(PHP 5 >= 5.3.0, PHP 7) Import a PHP array in a SplFixedArray instance public static SplFixedArray SplFixedArray::fromArray ( array $array [, bool $save_indexes = true ] ) Import the PHP array array in a new SplFixedArray instance Parameters: array The array to import. save_indexes Try to save the numeric indexes used in the origina

GearmanTask::taskDenominator

(PECL gearman >= 0.5.0) Get completion percentage denominator public int GearmanTask::taskDenominator ( void ) Returns the denominator of the percentage of the task that is complete expressed as a fraction. Returns: A number between 0 and 100, or FALSE if cannot be determined. See also: GearmanTask::taskNumer

pg_port

(PHP 4, PHP 5, PHP 7) Return the port number associated with the connection int pg_port ([ resource $connection ] ) pg_port() returns the port number that the given PostgreSQL connection resource is connected to. Parameters: connection PostgreSQL database connection resource. When connection is not present, the default connection is used. The default connection is the l

ReflectionZendExtension::getCopyright

(PHP >= 5.4.0) Gets copyright public string ReflectionZendExtension::getCopyright ( void ) Returns: This function is currently not documented; only its argument list is available.

msql_free_result

(PHP 4, PHP 5, PHP 7) Free result memory bool msql_free_result ( resource $result ) msql_free_result() frees the memory associated with query_identifier. When PHP completes a request, this memory is freed automatically, so you only need to call this function when you want to make sure you don't use too much memory while the script is running. Parameters: result The result

HaruImage::getBitsPerComponent

(PECL haru >= 0.0.1) Get the number of bits used to describe each color component of the image int HaruImage::getBitsPerComponent ( void ) Gets the number of bits used to describe each color component of the image. Returns: Returns the number of bits used to describe each color component of the image. Exception: Throws a HaruException on error.