output_add_rewrite_var

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Add URL rewriter values bool output_add_rewrite_var ( string $name, string $value ) This function adds another name/value pair to the URL rewrite mechanism. The name and value will be added to URLs (as GET parameter) and forms (as hidden input fields) the same way as the session ID when transparent URL rewriting is enabled with session.use_trans_sid. Please note that absolute URLs (http://ex

Imagick::queryFontMetrics

(PECL imagick 2.0.0) Returns an array representing the font metrics array Imagick::queryFontMetrics ( ImagickDraw $properties, string $text [, bool $multiline ] ) Returns a multi-dimensional array representing the font metrics. Parameters: properties ImagickDraw object containing font properties text The text mult

imageaffinematrixconcat

(PHP 5 >= 5.5.0, PHP 7) Concat two matrices (as in doing many ops in one go) array imageaffinematrixconcat ( array $m1, array $m2 ) Parameters: m1 Array with keys 0 to 5. m2 Array with keys 0 to 5. Returns: Array with keys 0 to 5 and float values or FALSE on failure. This f

imap_getsubscribed

(PHP 4, PHP 5, PHP 7) List all the subscribed mailboxes array imap_getsubscribed ( resource $imap_stream, string $ref, string $pattern ) Gets information about the subscribed mailboxes. Identical to imap_getmailboxes(), except that it only returns mailboxes that the user is subscribed to. Parameters: imap_stream An IMAP stream returned by imap_open().

svn_client_version

(PECL svn >= 0.1.0) Returns the version of the SVN client libraries string svn_client_version ( void ) Returns the version of the SVN client libraries Returns: String version number, usually in form of x.y.z. Examples: Basic example <?php echo svn_client_version(); ?> The above example will output something si

px_set_parameter

(PECL paradox >= 1.1.0) Sets a parameter bool px_set_parameter ( resource $pxdoc, string $name, string $value ) Sets various parameters. Parameters: pxdoc Resource identifier of the paradox database as returned by px_new(). name Depending on the parameter you want to set, name can be one of the following. value

imagecreatefrompng

(PHP 4, PHP 5, PHP 7) Create a new image from file or URL resource imagecreatefrompng ( string $filename ) imagecreatefrompng() returns an image identifier representing the image obtained from the given filename. TipA URL can be used as a filename with this function if the fopen wrappers have been enabled. See fopen() for more details on how to specify the filename. See the Supported Protocols and Wrappers for links to inf

QuickHashIntSet::saveToFile

(PECL quickhash >= Unknown) This method stores an in-memory set to disk public void QuickHashIntSet::saveToFile ( string $filename ) This method stores an existing set to a file on disk, in the same format that loadFromFile() can read. Parameters: filename The filename of the file to store the hash in. Returns: No value is returned.

Imagick::getImageAttribute

(No version information available, might only be in Git) Description public string Imagick::getImageAttribute ( string $key ) Returns a named attribute. Parameters: key The key of the attribute to get. Returns:

exit

(PHP 4, PHP 5, PHP 7) Output a message and terminate the current script void exit ([ string $status ] ) void exit ( int $status ) Terminates execution of the script. Shutdown functions and object destructors will always be executed even if exit is called. exit is a language construct and it can be called without parentheses if no status is passed. Parameters: status I