CAIRO_VERSION_STRING(3) 1 CAIRO_VERSION_STRING(3)
Cairo::versionString - Retrieves cairo version as string
Object oriented style (method):
SYNOPSIS
publicstatic string Cairo::versionString (void )
DESCRIPTION
Procedural style:
string cairo_version_string (void )
Retrieves the current cairo library version as a string.
PARAMETERS
This function has no parameters.
RETURN VALUES
Current Cairo library version string
EXAMPLES
Example #1
Object oriented style
<?php
var_dump(Cairo::versionString());
?>
The above example will output something similar to:
string(5) "1.8.8"
Example #2
Procedural style
<?php
var_dump(cairo_version_string());
?>
The above example will output something similar to:
string(5) "1.8.8"
SEE ALSO
Cairo::version.
PHP Documentation Group CAIRO_VERSION_STRING(3)