(PHP >= 5.3.2, PECL intl >= 2.0.0)
Get bundle's last error message.
public string ResourceBundle::getErrorMessage ( void )
Object oriented style
Procedural style
Get error message from the last function performed by the bundle object.
Parameters:
r
ResourceBundle object.
Returns:
Returns error message from last bundle object's call.
Examples:
resourcebundle_get_error_message() example
1 2 3 4 5 6 7 | <?php $r = resourcebundle_create( 'es' , "/usr/share/data/myapp" ); echo $r [ 'somestring' ]; if (intl_is_failure(resourcebundle_get_error_code( $r ))) { report_error( "Bundle error: " .resourcebundle_get_error_message( $r )); } ?> |
OO example
1 2 3 4 5 6 7 | <?php $r = new ResourceBundle( 'es' , "/usr/share/data/myapp" ); echo $r [ 'somestring' ]; if (intl_is_failure(ResourceBundle::getErrorCode( $r ))) { report_error( "Bundle error: " .ResourceBundle::getErrorMessage( $r )); } ?> |
See also:
Please login to continue.