📜  PHP | IntlCalendar getErrorMessage()函数

📅  最后修改于: 2022-05-13 01:56:20.677000             🧑  作者: Mango

PHP | IntlCalendar getErrorMessage()函数

IntlCalendar::getErrorMessage()函数是PHP中的一个内置函数,用于通过使用 IntlCalendar::getErrorCode() 或 intlcal_get_error_code()函数返回与错误相关的错误消息(如果存在任何错误)。

句法:

  • 面向对象风格
    string IntlCalendar::getErrorMessage( void )
  • 程序风格
    string intlcal_get_error_message( IntlCalendar $calendar )

参数:此函数使用单个参数$calendar保存程序样式界面上的日历对象。

返回值:此函数返回与此对象的函数调用中发生的最后一个错误相关的错误消息或指示不存在错误的字符串。

下面的程序说明了PHP中的 IntlCalendar::getErrorMessage()函数:

程序:

getErrorMessage());
  
// Declare a DateTime object and store it into variable
$calendar->fieldDifference(-34E403, IntlCalendar::FIELD_ZONE_OFFSET);
  
// Display the error code and message
var_dump($calendar->getErrorMessage());
  
?>
输出:
PHP Warning:  IntlCalendar::fieldDifference(): intlcal_field_difference: Call to ICU method has
failed in /home/22bd84b151f5397224d747dadc65338e.php on line 16
string(12) "U_ZERO_ERROR"
string(81) "intlcal_field_difference: Call to ICU method has failed: U_ILLEGAL_ARGUMENT_ERROR"

参考: https://www. PHP.net/manual/en/intlcalendar.geterrormessage。 PHP