📜  PHP | IntlCalendar getErrorCode()函数

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

PHP | IntlCalendar getErrorCode()函数

IntlCalendar::getErrorCode()函数是PHP中的一个内置函数,它返回最后一次调用此对象的数字 ICU 错误代码或为 calendar 参数提供的 IntlCalendar。此函数可以指示警告消息(负错误代码)或无错误。

句法:

  • 面向对象风格
    int IntlCalendar::getErrorCode( void )
  • 程序风格
    int intlcal_get_error_code( IntlCalendar $calendar )

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

返回值:此函数返回指示成功、失败或警告消息的 ICU 错误代码。

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

程序:

getErrorCode(),
    $calendar->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->getErrorCode(),
    $calendar->getErrorMessage()
);
  
?>
输出:
PHP Warning:  IntlCalendar::fieldDifference(): intlcal_field_difference: Call to ICU method has
failed in /home/d0608573e6cb44f285316ff59fb833b0.php on line 19
int(0)
string(12) "U_ZERO_ERROR"
int(1)
string(81) "intlcal_field_difference: Call to ICU method has failed: U_ILLEGAL_ARGUMENT_ERROR"

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