Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

resourcebundle_get_error_code(3) [php man page]

RESOURCEBUNDLE_GET_ERROR_CODE(3)					 1					  RESOURCEBUNDLE_GET_ERROR_CODE(3)

ResourceBundle::getErrorCode - Get bundle's last error code.

	Object oriented style

SYNOPSIS
public int ResourceBundle::getErrorCode (void ) DESCRIPTION
Procedural style int resourcebundle_get_error_code (ResourceBundle $r) Get error code from the last function performed by the bundle object. PARAMETERS
o $r -ResourceBundle object. RETURN VALUES
Returns error code from last bundle object call. EXAMPLES
Example #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 ALSO
resourcebundle_get_error_message(3), intl_get_error_code(3), intl_is_failure(3). PHP Documentation Group RESOURCEBUNDLE_GET_ERROR_CODE(3)

Check Out this Related Man Page

RESOURCEBUNDLE_GET_ERROR_MESSAGE(3)					 1				       RESOURCEBUNDLE_GET_ERROR_MESSAGE(3)

ResourceBundle::getErrorMessage - Get bundle's last error message.

	Object oriented style

SYNOPSIS
public string ResourceBundle::getErrorMessage (void ) DESCRIPTION
Procedural style string resourcebundle_get_error_message (ResourceBundle $r) Get error message from the last function performed by the bundle object. PARAMETERS
o $r -ResourceBundle object. RETURN VALUES
Returns error message from last bundle object's call. EXAMPLES
Example #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 ALSO
resourcebundle_get_error_code(3), intl_get_error_code(3), intl_is_failure(3). PHP Documentation Group RESOURCEBUNDLE_GET_ERROR_MESSAGE(3)
Man Page