| | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot |
Cairo::availableFontscairo_available_fonts(PECL cairo >= 0.1.0) Cairo::availableFonts -- cairo_available_fonts — Retrieves the availables font types 説明オブジェクト指向型:
public static array Cairo::availableFonts
( void
)
手続き型:
array cairo_available_fonts
( void
)
Returns an array with the available font backends パラメータこの関数にはパラメータはありません。 返り値A list-type array with all available font backends. 例
例1 オブジェクト指向型
<?php上の例の出力は、 たとえば以下のようになります。
array(2) {
[0]=>
string(5) "WIN32"
[1]=>
string(4) "USER"
}
例2 手続き型
<?php上の例の出力は、 たとえば以下のようになります。
array(2) {
[0]=>
string(5) "WIN32"
[1]=>
string(4) "USER"
}
|
|
各種マニュアル:
PHPマニュアル |
PEARマニュアル |
Smarty(英語)マニュアル |
PHP-GTKマニュアル |
「Cairo::availableFonts - Retrieves the availables font types」をGoogle検索
|