CairoFontFace
PHP Manual

CairoFontFace::status

cairo_font_face_status

(PECL cairo >= 0.1.0)

CairoFontFace::status -- cairo_font_face_statusCheck for CairoFontFace errors

説明

オブジェクト指向型 (method):

public int CairoFontFace::status ( void )

手続き型:

int cairo_font_face_status ( CairoFontFace $fontface )

Checks whether an error has previously occurred for this font face

パラメータ

fontface

A valid CairoFontFace object

返り値

CAIRO_STATUS_SUCCESS or another error such as CAIRO_STATUS_NO_MEMORY.

例1 オブジェクト指向型

<?php

// Creates the font face
$fontface = new CairoToyFontFace('sans-serif');

// Get the font face status
var_dump($fontface->status()); // should be the value of CAIRO_STATUS_SUCCESS

?>

上の例の出力は、 たとえば以下のようになります。

int(0)

例2 手続き型

<?php

// Creates the font face
$fontface = new CairoToyFontFace('sans-serif');

// Get the font face status
var_dump(cairo_font_face_status($fontface)); // should be the value of CAIRO_STATUS_SUCCESS

?>

上の例の出力は、 たとえば以下のようになります。

int(0)

参考


CairoFontFace
PHP Manual