XMLWriter::openURI

(PHP 5 >= 5.1.2, PHP 7, PECL xmlwriter >= 0.1.0) Create new xmlwriter using source uri for output bool XMLWriter::openURI ( string $uri ) Object oriented style Procedural style resource xmlwriter_open_uri ( string $uri ) Creates a new XMLWriter using uri for the output. Parameters: uri The URI of the resource for the output. Returns: Objec

ImagickDraw::setViewbox

(PECL imagick 2.0.0) Sets the overall canvas size bool ImagickDraw::setViewbox ( int $x1, int $y1, int $x2, int $y2 ) Sets the overall canvas size to be recorded with the drawing vector data. Usually this will be specified using the same size as the canvas image. When the vector data is saved to SVG or MVG formats, the viewbox is use to specify the size of the canvas image that a viewer will render the vector data on.

fputs

(PHP 4, PHP 5, PHP 7) Alias of fwrite() This function is an alias of: fwrite().

DOMEntityReference::__construct

(PHP 5, PHP 7) Creates a new DOMEntityReference object public DOMEntityReference::__construct ( string $name ) Creates a new DOMEntityReference object. Parameters: name The name of the entity reference. Examples: Creating a new DOMEntityReference <?php $dom = new DOMDocument('1.0', 

HaruFont::measureText

(PECL haru >= 0.0.1) Calculate the number of characters which can be included within the specified width int HaruFont::measureText ( string $text, float $width, float $font_size, float $char_space, float $word_space [, bool $word_wrap = false ] ) Calculate the number of characters which can be included within the specified width. Parameters: text The text to fit the w

mailparse_rfc822_parse_addresses

(PECL mailparse >= 0.9.0) Parse RFC 822 compliant addresses array mailparse_rfc822_parse_addresses ( string $addresses ) Parses a » RFC 822 compliant recipient list, such as that found in the To: header. Parameters: addresses A string containing addresses, like in: Wez Furlong <wez@example.com>, doe@example.com Note: This string must not include the header na

md5_file

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Calculates the md5 hash of a given file string md5_file ( string $filename [, bool $raw_output = false ] ) Calculates the MD5 hash of the file specified by the filename parameter using the » RSA Data Security, Inc. MD5 Message-Digest Algorithm, and returns that hash. The hash is a 32-character hexadecimal number. Parameters: filename The

Phar::isValidPharFilename

(PHP >= 5.3.0, PECL phar >= 1.2.0) Returns whether the given filename is a valid phar filename final public static bool Phar::isValidPharFilename ( string $filename [, bool $executable = true ] ) Returns whether the given filename is a valid phar filename that will be recognized as a phar archive by the phar extension. This can be used to test a name without having to instantiate a phar archive and catch the inevitabl

ps_rotate

(PECL ps >= 1.1.0) Sets rotation factor bool ps_rotate ( resource $psdoc, float $rot ) Sets the rotation of the coordinate system. Parameters: psdoc Resource identifier of the postscript file as returned by ps_new(). rot Angle of rotation in degree. Returns: Returns TRUE on success or FALSE on failure.

curl_exec

(PHP 4 >= 4.0.2, PHP 5, PHP 7) Perform a cURL session mixed curl_exec ( resource $ch ) Execute the given cURL session. This function should be called after initializing a cURL session and all the options for the session are set. Parameters: ch A cURL handle returned by curl_init(). Returns: Returns TRUE on success or FALSE on failure. However,