(PECL cairo >= 0.1.0)
Cairo::availableFonts -- cairo_available_fonts — Retrieves the availables font types
Stile orientato agli oggetti:
Stile procedurale:
Returns an array with the available font backends
Questa funzione non contiene parametri.
A list-type array with all available font backends.
Example #1 Stile orientato agli oggetti
<?php
/* Object Oriented Style */
var_dump(Cairo::availableFonts());
?>
Il precedente esempio visualizzerĂ qualcosa simile a:
array(2) { [0]=> string(5) "WIN32" [1]=> string(4) "USER" }
Example #2 Stile procedurale
<?php
/* Procedural style */
var_dump(cairo_available_fonts());
?>
Il precedente esempio visualizzerĂ qualcosa simile a:
array(2) { [0]=> string(5) "WIN32" [1]=> string(4) "USER" }