(PECL cairo >= 0.1.0)
CairoSvgSurface::getVersions -- cairo_svg_surface_get_versions — Used to retrieve a list of supported SVG versions
Object oriented style (method):
Procedural style:
Returns a numerically indexed array of currently available CairoSvgVersion constants. In order to retreive the string values for each item, use CairoSvgSurface::versionToString().
この関数にはパラメータはありません。
Returns a numerically indexed array of integer values.
例1 CairoSvgSurface::getVersions() example
<?php
/* Grab our list of versions */
$versions = CairoSvgSurface::getVersions();
var_dump($versions);
/* echo the string name of each version */
foreach($versions as $id) {
echo CairoSvgSurface::versionToString($id), PHP_EOL;
}
?>
上の例の出力は、 たとえば以下のようになります。
array(2) { [0]=> int(0) [1]=> int(1) } SVG 1.1 SVG 1.2
例2 Procedural style
<?php
/* Grab our list of versions */
$versions = cairo_svg_surface_get_versions();
var_dump($versions);
/* echo the string name of each version */
foreach($versions as $id) {
echo cairo_svg_surface_version_to_string($id), PHP_EOL;
}
?>
上の例の出力は、 たとえば以下のようになります。
array(2) { [0]=> int(0) [1]=> int(1) } SVG 1.1 SVG 1.2