(バージョン情報なし。おそらく SVN 版にしか存在しないでしょう)
ResourceBundle::getErrorCode -- resourcebundle_get_error_code — バンドルの直近のエラーコードを取得する
オブジェクト指向型
手続き型
バンドルオブジェクトが最後に実行した関数のエラーコードを取得します。
バンドルオブジェクトの最後の関数コールからのエラーコードを返します。
例1 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("Bundle error");
}
?>
例2 オブジェクト指向の例
<?php
$r = new ResourceBundle( 'es', "/usr/share/data/myapp");
echo $r['somestring'];
if(intl_is_failure(ResourceBundle::getErrorCode($r))) {
report_error("Bundle error");
}
?>