(PECL cairo >= 0.1.0)
Cairo::availableFonts -- cairo_available_fonts — Retrieves the availables font types
Estilo orientado à objeto:
Estilo procedural:
Returns an array with the available font backends
Esta função não possui parâmetros.
A list-type array with all available font backends.
Exemplo #1 Estilo orientado à objeto
<?php
/* Object Oriented Style */
var_dump(Cairo::availableFonts());
?>
O exemplo acima irá imprimir algo similar à:
array(2) { [0]=> string(5) "WIN32" [1]=> string(4) "USER" }
Exemplo #2 Estilo procedural
<?php
/* Procedural style */
var_dump(cairo_available_fonts());
?>
O exemplo acima irá imprimir algo similar à:
array(2) { [0]=> string(5) "WIN32" [1]=> string(4) "USER" }