Query: resourcebundle_get_error_code
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
RESOURCEBUNDLE_GET_ERROR_CODE(3) 1 RESOURCEBUNDLE_GET_ERROR_CODE(3) ResourceBundle::getErrorCode - Get bundle's last error code. Object oriented styleSYNOPSISpublic int ResourceBundle::getErrorCode (void )DESCRIPTIONProcedural style int resourcebundle_get_error_code (ResourceBundle $r) Get error code from the last function performed by the bundle object.PARAMETERSo $r -ResourceBundle object.RETURN VALUESReturns error code from last bundle object call.EXAMPLESExample #1 resourcebundle_get_error_code(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"); } ?> 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"); } ?>SEE ALSOresourcebundle_get_error_message(3), intl_get_error_code(3), intl_is_failure(3). PHP Documentation Group RESOURCEBUNDLE_GET_ERROR_CODE(3)
Related Man Pages |
---|
numfmt_get_error_message(3) - php |
datefmt_get_error_code(3) - php |
intl_is_failure(3) - php |
intlcal_get_error_code(3) - php |
numfmt_format(3) - php |
Similar Topics in the Unix Linux Community |
---|
column based search |