PHP 8.1.28 Released!

intl_get_error_message

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

intl_get_error_messageGet description of the last error

说明

intl_get_error_message(): string

Get error message from last internationalization function called.

参数

此函数没有参数。

返回值

Description of an error occurred in the last API function call.

示例

示例 #1 intl_get_error_message() example

<?php
if( Collator::getAvailableLocales() === false ) {
show_error( intl_get_error_message() );
}
?>

参见

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top