Query: resourcebundle_get_error_message
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
RESOURCEBUNDLE_GET_ERROR_MESSAGE(3) 1 RESOURCEBUNDLE_GET_ERROR_MESSAGE(3) ResourceBundle::getErrorMessage - Get bundle's last error message. Object oriented styleSYNOPSISpublic string ResourceBundle::getErrorMessage (void )DESCRIPTIONProcedural style string resourcebundle_get_error_message (ResourceBundle $r) Get error message from the last function performed by the bundle object.PARAMETERSo $r -ResourceBundle object.RETURN VALUESReturns error message from last bundle object's call.EXAMPLESExample #1 resourcebundle_get_error_message(3) example <?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)); } ?> Example #2 OO example <?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 ALSOresourcebundle_get_error_code(3), intl_get_error_code(3), intl_is_failure(3). PHP Documentation Group RESOURCEBUNDLE_GET_ERROR_MESSAGE(3)
Related Man Pages |
---|
resourcebundle(3) - php |
intlcal_get_error_message(3) - php |
numfmt_get_error_code(3) - php |
resourcebundle_create(3) - php |
resourcebundle_get_error_code(3) - php |
Similar Topics in the Unix Linux Community |
---|
column based search |