PHP Doku:: Get bundle s last error code. - resourcebundle.geterrorcode.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzUnterstützung menschlicher Sprache und ZeichenkodierungInternationalization FunctionsThe ResourceBundle classResourceBundle::getErrorCode -- resourcebundle_get_error_code

Ein Service von Reinhard Neidl - Webprogrammierung.

The ResourceBundle class

<<ResourceBundle::create -- resourcebundle_create -- ResourceBundle::__construct

ResourceBundle::getErrorMessage -- resourcebundle_get_error_message>>

ResourceBundle::getErrorCode

resourcebundle_get_error_code

(No version information available, might only be in SVN)

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

Beschreibung

Object oriented style

int ResourceBundle::getErrorCode ( void )

Procedural style

int resourcebundle_get_error_code ( ResourceBundle $r )

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

Parameter-Liste

r

ResourceBundle object.

Rückgabewerte

Returns error code from last bundle object call.

Beispiele

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

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

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)