(PECL cairo >= 0.1.0)
Cairo::availableSurfaces -- cairo_available_surfaces — Retrieves all available surfaces
Styl obiektowy (method):
Styl proceduralny:
Returns an array with the available surface backends
Ta funkcja nie posiada parametrów.
A list-type array with all available surface backends.
Przykład #1 Styl obiektowy
<?php
/* Object Oriented style */
var_dump(Cairo::availableSurfaces());
?>
Powyższy przykład wyświetli coś podobnego do:
array(6) { [0]=> string(5) "IMAGE" [1]=> string(3) "PNG" [2]=> string(3) "PDF" [3]=> string(2) "PS" [4]=> string(3) "SVG" [5]=> string(5) "WIN32" }
Przykład #2 Styl proceduralny
<?php
/* Procedural style */
var_dump(cairo_available_surfaces());
?>
Powyższy przykład wyświetli coś podobnego do:
array(6) { [0]=> string(5) "IMAGE" [1]=> string(3) "PNG" [2]=> string(3) "PDF" [3]=> string(2) "PS" [4]=> string(3) "SVG" [5]=> string(5) "WIN32" }