当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。