當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP IntlCalendar getErrorCode()用法及代碼示例


IntlCalendar::getErrorCode()函數是PHP中的內置函數,該函數返回對該對象上一次調用或為calendar參數指定的IntlCalendar的數字ICU錯誤代碼。此函數可以指示警告消息(負錯誤代碼)或沒有錯誤。

用法:

  • 麵向對象的風格
    int IntlCalendar::getErrorCode( void )
  • 程序風格
    int intlcal_get_error_code( IntlCalendar $calendar )

參數:該函數使用單個參數$calendar,該參數將日曆對象保存在過程樣式接口上。

返回值:此函數返回指示成功,失敗或警告消息的ICU錯誤代碼。

以下示例程序旨在說明PHP中的IntlCalendar::getErrorCode()函數:



程序:

<?php 
  
// Set the DateTime zone 
ini_set('date.timezone', 'Asia/Calcutta'); 
  
// Set the intl error level 
ini_set("intl.error_level", E_WARNING); 
  
// Declare a DateTime object and store it into variable 
$calendar = IntlCalendar::fromDateTime('2019-03-21 09:19:29'); 
  
// Display the error code and message 
var_dump( 
    $calendar->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

相關用法


注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | IntlCalendar getErrorCode() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。