intl_error_name

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

intl_error_name指定したエラーコードに対応する名前を取得する

説明

intl_error_name ( int $error_code ) : string

ICU のエラーコード名を返します。

パラメータ

error_code

ICU のエラーコード。

返り値

エラーコード定数と同じ名前の文字列を返します。

例1 intl_error_name() の例

<?php
$coll     
collator_create'en_RU' );
$err_code collator_get_error_code$coll );

printf"Symbolic name for %d is %s\n."$err_codeintl_error_name$err_code ) );
?>

上の例の出力は、 たとえば以下のようになります。

Symbolic name for -128 is U_USING_FALLBACK_WARNING.

参考