Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

resourcebundle_get_error_message(3) [php 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)

Check Out this Related Man Page

RESOURCEBUNDLE_GET(3)							 1						     RESOURCEBUNDLE_GET(3)

ResourceBundle::get - Get data from the bundle

	Object oriented style

SYNOPSIS
public mixed ResourceBundle::get (string|int $index) DESCRIPTION
Procedural style mixed resourcebundle_get (ResourceBundle $r, string|int $index) Get the data from the bundle by index or string key. PARAMETERS
o $r -ResourceBundle object. o $index - Data index, must be string or integer. RETURN VALUES
Returns the data located at the index or NULL on error. Strings, integers and binary data strings are returned as corresponding PHP types, integer array is returned as PHP array. Complex types are returned as ResourceBundle object. EXAMPLES
Example #1 resourcebundle_get(3) example <?php $r = resourcebundle_create( 'es', "/usr/share/data/myapp"); echo resourcebundle_get($r, 'somestring'); ?> Example #2 OO example <?php $r = new ResourceBundle( 'es', "/usr/share/data/myapp"); echo $r->get('somestring'); ?> The above example will output: ?Hola, mundo! SEE ALSO
resourcebundle_count(3). PHP Documentation Group RESOURCEBUNDLE_GET(3)
Man Page