ResourceBundle
PHP Manual

ResourceBundle::getErrorCode

resourcebundle_get_error_code

(PHP >= 5.3.2, PECL intl >= 2.0.0)

ResourceBundle::getErrorCode -- resourcebundle_get_error_codeRécupère le dernier code erreur du faisceau

Description

Style orienté objet

int ResourceBundle::getErrorCode ( void )

Style procédural

int resourcebundle_get_error_code ( ResourceBundle $r )

Récupère le dernier code erreur depuis la dernière fonction exécutée sur l'objet représentant le faisceau.

Liste de paramètres

r

Un objet ResourceBundle.

Valeurs de retour

Retourne le code erreur depuis le dernier appel à l'objet représentant le faisceau.

Exemples

Exemple #1 Exemple avec resourcebundle_get_error_code()

<?php
$r 
resourcebundle_create'es'"/usr/share/data/myapp");
echo 
$r['somestring'];
if(
intl_is_failure(resourcebundle_get_error_code($r))) {
    
report_error("Erreur sur le faisceau");
}
?>

Exemple #2 Exemple orienté objet

<?php
$r 
= new ResourceBundle'es'"/usr/share/data/myapp");
echo 
$r['somestring'];
if(
intl_is_failure(ResourceBundle::getErrorCode($r))) {
    
report_error("Erreur sur le faisceau");
}
?>

Voir aussi


ResourceBundle
PHP Manual