©
本文档使用
php.cn手册 发布
(PECL cairo >= 0.1.0)
CairoFontFace::getType — Retrieves the font face type
This function returns the type of the backend used to create a font face. See CairoFontType class constants for available types.
此函数没有参数。
A font type that can be any one defined in CairoFontType
Example #1 CairoFontFace::getType() example
<?php
// Creates the font face
$fontface = new CairoToyFontFace ( 'sans-serif' );
// Get the font face type
var_dump ( $fontface -> getType ());
?>
以上例程的输出类似于:
int(0)