ResourceBundle::getErrorCode
resourcebundle_get_error_code
(PHP 5 >= 5.3.2, PHP 7, PECL intl >= 2.0.0)
ResourceBundle::getErrorCode -- resourcebundle_get_error_code — バンドルの直近のエラーコードを取得する
説明
オブジェクト指向型
public ResourceBundle::getErrorCode ( ) : int
手続き型
resourcebundle_get_error_code
( ResourceBundle $r
) : int
バンドルオブジェクトが最後に実行した関数のエラーコードを取得します。
返り値
バンドルオブジェクトの最後の関数コールからのエラーコードを返します。
例
例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");}?>
参考
- resourcebundle_get_error_message() - バンドルの直近のエラーメッセージを取得する
- intl_get_error_code() - 直近のエラーコードを取得する
- intl_is_failure() - 指定したエラーコードが失敗を表すかどうかを調べる