CairoFontFace::status

cairo_font_face_status

(PECL cairo >= 0.1.0)

CairoFontFace::status -- cairo_font_face_statusCheck for CairoFontFace errors

Açıklama

Nesne yönelimli kullanım (method):

public CairoFontFace::status ( void ) : int

Yordamsal kullanım:

cairo_font_face_status ( CairoFontFace $fontface ) : int

Checks whether an error has previously occurred for this font face

Değiştirgeler

fontface

A valid CairoFontFace object

Dönen Değerler

CAIRO_STATUS_SUCCESS or another error such as CAIRO_STATUS_NO_MEMORY.

Örnekler

Örnek 1 Nesne yönelimli kullanım

<?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

?>

Yukarıdaki örnek şuna benzer bir çıktı üretir:

int(0)

Örnek 2 Yordamsal kullanım

<?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

?>

Yukarıdaki örnek şuna benzer bir çıktı üretir:

int(0)

Ayrıca Bakınız

  • Classname::Method()