Cairo::versionStringcairo_version_stringRetrieves cairo version as string DescriptionObject oriented style (method):
public static string Cairo::versionString
( void
)
Procedural style:
string cairo_version_string
( void
)
Retrieves the current cairo library version as a string. ParametersThis function has no parameters. Return ValuesCurrent Cairo library version string Examples
Example #1 Object oriented style
<?php The above example will output something similar to: string(5) "1.8.8"
Example #2 Procedural style
<?php The above example will output something similar to: string(5) "1.8.8" See Also
|