(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL intl >= 1.0.0)
intl_error_name — 获取给定错误代码的符号名称
errorCode
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_code, intl_error_name( $err_code ) );
?>
上面的示例将输出类似于以下内容
Symbolic name for -128 is U_USING_FALLBACK_WARNING.