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


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


IntlCalendar::getTime()函數是PHP中的內置函數,用於返回當前由對象表示的時間。時間以自紀元以​​來的毫秒數表示。

用法:

  • 麵向對象的風格
    float IntlCalendar::getTime( void )
  • 程序風格
    float intlcal_get_time( IntlCalendar $cal )

參數:該函數接受單個參數$cal,該參數保存IntlCalendar對象的資源。


返回值:此函數返回一個浮點數,表示自該紀元(1970年1月1日00:00:00 UTC)以來經過的毫秒數。

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

程序:

<?php 
  
// Create an instance of calendar 
$calendar = IntlCalendar::createInstance(); 
  
// Get the current time 
var_dump($calendar->getTime()); 
  
// Create a new IntlGregorianCalendar 
$calendar = new IntlGregorianCalendar(2019, 9, 22, 12, 30, 56); 
  
// Get the current time 
var_dump($calendar->getTime()); 
  
// Create a DateTime object 
$calendar = IntlCalendar::fromDateTime('2019-03-21 09:19:29'); 
  
// Get the current time 
var_dump($calendar->getTime()); 
  
// Set the timezone 
$calendar->setTimeZone('GMT+05:30'); 
  
// Get the current time 
var_dump($calendar->getTime()); 
  
?>
輸出:
float(1569306894500)
float(1571747456000)
float(1553159969000)
float(1553159969000)

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



相關用法


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