downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

ResourceBundle::getErrorMessage> <ResourceBundle::create
[edit] Last updated: Fri, 24 Feb 2012

view this page in

ResourceBundle::getErrorCode

resourcebundle_get_error_code

(PHP > 5.4.0)

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

Descrição

Estilo orientado a objetos

int ResourceBundle::getErrorCode ( void )

Estilo de procedimentos

int resourcebundle_get_error_code ( ResourceBundle $r )

Get error code from the last function performed by the bundle object.

Parâmetros

r

ResourceBundle object.

Valor Retornado

Returns error code from last bundle object call.

Exemplos

Exemplo #1 resourcebundle_get_error_code() 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");
}
?>

Exemplo #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");
}
?>

Veja Também



add a note add a note User Contributed Notes ResourceBundle::getErrorCode
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites