(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL intl >= 1.0.0)
intl_get_error_code — 直近のエラーコードを取得する
この関数にはパラメータはありません。
直近の API 関数のコールが返すエラーコードを返します。
例1 intl_get_error_code() の例
<?php
$coll = collator_create( '<bad_param>' );
if( !$coll ) {
handle_error( intl_get_error_code() );
}
?>