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


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


IntlCalendar::fieldDifference()函數是PHP中的內置函數,用於返回給定時間和對象時間之間的差。

用法:

  • 麵向對象的樣式:
    int IntlCalendar::fieldDifference( float $when, int $field )
  • 程序風格:
    int intlcal_field_difference( IntlCalendar $cal, float $when, int $field )

參數:


  • $cal:此參數保存IntlCalendar資源名稱。
  • $when:此參數保存比較該字段表示的數量的時間。
  • $field:此參數保存代表要比較數量的字段。

返回值:如果成功,則此函數以與指定字段關聯的單位返回帶符號的時間差;如果失敗,則以FALSE返回。

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

程序:

<?php 
  
// Set the timezone 
ini_set('date.timezone', 'Asia/Calcutta'); 
  
// Get the time from calendar 
$calendar1 = IntlCalendar::fromDateTime('2018-12-21 09:30:25'); 
$calendar2 = IntlCalendar::fromDateTime('2019-08-29 11:20:20'); 
  
// Get time represented by the object 
$calTime = $calendar2->getTime(); 
  
// Display the first time 
echo "First Time: " . IntlDateFormatter::formatObject($calendar1) . "\n"; 
  
// Display the last time 
echo "Last Time: " . IntlDateFormatter::formatObject($calendar2) . "\n"; 
  
// Time difference 
echo "Time difference: "
    . $calendar1->fieldDifference($calTime,  
            IntlCalendar::FIELD_YEAR) . "-Years "
      
    . $calendar1->fieldDifference($calTime, 
            IntlCalendar::FIELD_MONTH) . "-Months "
      
    . $calendar1->fieldDifference($calTime,  
            IntlCalendar::FIELD_DAY_OF_MONTH) . "-Days "
      
    . $calendar1->fieldDifference($calTime,  
            IntlCalendar::FIELD_HOUR_OF_DAY) . "-Hours "
      
    . $calendar1->fieldDifference($calTime,  
            IntlCalendar::FIELD_MINUTE) . "-Minutes"; 
  
?>
輸出:
First Time: Dec 21, 2018, 9:30:25 AM
Last Time: Aug 29, 2019, 11:20:20 AM
Time difference: 0-Years 8-Months 8-Days 1-Hours 49-Minutes

參考: https://www.php.net/manual/en/intlcalendar.fielddifference.php



相關用法


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