php 日期處理 DateTime

 

獲取全部的時區php

print_r(timezone_abbreviations_list ());

 

獲取毫秒級時間戳linux

// php7.1+ always has microseconds enabled, so we do not need this hack
if (PHP_VERSION_ID < 70100) {
  // 第一個參數:php 支持的日期和時間格式
$ts = DateTime::createFromFormat('U.u', sprintf('%.6F', microtime(true))); } else { $ts = new DateTime(null); } $ts->setTimezone(new DateTimeZone("PRC")); var_dump($ts->format("Y-m-d H:i:s.u")); // 2018-09-15 20:15:58.332000 win下只能夠到三位,linux能夠到六位

 

php支持的日期和時間格式php7

 

function utime()
{
    return (float) (vsprintf('%d.%06d', gettimeofday()));
}
相關文章
相關標籤/搜索