update : 2015.11.03
php.shukuma.com검색:
|
Cairo::statusToStringcairo_status_to_string(PECL cairo >= 0.1.0) Cairo::statusToString -- cairo_status_to_string — Retrieves the current status as string 설명객체 기반 형식 (method):
public static string Cairo::statusToString
( int
$status
)절차식 형식:
string cairo_status_to_string
( int
$status
)Retrieves the current status as a readable string 반환값A string containing the current status of a CairoContext object 예제
Example #1 객체 기반 형식
<?php 위 예제의 출력 예시: string(7) "success"
Example #2 절차식 형식
<?php 위 예제의 출력 예시: string(7) "success" |