国際化 関数
PHP Manual

intl_get_error_code

(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)

intl_get_error_code直近のエラーコードを取得する

説明

int intl_get_error_code ( void )

静的メソッドを実行した場合など、 エラーコードを取得するオブジェクトが存在しない場合のエラー処理に便利です。

返り値

直近の API 関数のコールが返すエラーコードを返します。

例1 intl_get_error_code() の例

<?php
$coll 
collator_create'<bad_param>' );
if( !
$coll ) {
    
handle_errorintl_get_error_code() );
}
?>

参考


国際化 関数
PHP Manual