Cairo::versioncairo_versionRetrives cairo's library version DescriptionObject oriented style (method):
public static int Cairo::version
( void
)
Procedural style:
int cairo_version
( void
)
Retrieves the current version of the cairo library as an integer value ParametersThis function has no parameters. Return ValuesCurrent Cairo library version integer Examples
Example #1 Object oriented style
<?php The above example will output something similar to: int(10808)
Example #2 Procedural style
<?php The above example will output something similar to: int(10808) See Also
|