PHP 日本大会 2024

intl_error_name

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

intl_error_name获取给定错误代码的符号名称

描述

intl_error_name(int $errorCode): string

返回 ICU 错误代码名称。

参数

errorCode

ICU 错误代码。

返回值

返回的字符串将与错误代码常量的名称相同。

示例

示例 #1 intl_error_name() 示例

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

printf( "%d 的符号名称是 %s\n.", $err_code, intl_error_name( $err_code ) );
?>

以上示例将输出类似以下内容

Symbolic name for -128 is U_USING_FALLBACK_WARNING.

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top