(PECL cairo >= 0.1.0)
Cairo::version -- cairo_version — Retrives cairo's library version
Object oriented style (method):
Procedural style:
Retrieves the current version of the cairo library as an integer value
Esta função não contém parâmetros.
Current Cairo library version integer
Exemplo #1 Object oriented style
<?php
var_dump(Cairo::version());
?>
O exemplo acima irá imprimir algo similar a:
int(10808)
Exemplo #2 Procedural style
<?php
var_dump(cairo_version());
?>
O exemplo acima irá imprimir algo similar a:
int(10808)