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


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()函數:



程序:

<?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->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

相關用法


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