Cairo::statusToStringcairo_status_to_stringRetrieves the current status as string DescriptionObject oriented style (method):
public static string Cairo::statusToString
( int
$status
)Procedural style:
string cairo_status_to_string
( int
$status
)Retrieves the current status as a readable string Parameters
Return ValuesA string containing the current status of a CairoContext object Examples
Example #1 Object oriented style
<?php The above example will output something similar to: string(7) "success"
Example #2 Procedural style
<?php The above example will output something similar to: string(7) "success" See Also
|