当前位置:Gxlcms > PHP教程 > 如何在php中生成毫秒时间戳

如何在php中生成毫秒时间戳

时间:2021-07-01 10:21:17 帮助过:8人阅读

php时间函数time()生成当前时间的秒数,但是在一些情况下我们需要获取当前服务器时间和GMT(格林威治时间)1970年1月0时0分0秒的毫秒数,与Java中的currentTimeMilis()函数一样。

例子:

  public function getCurrentMilis() {
    $mill_time = microtime();    
    $timeInfo = explode(' ', $mill_time);    
    $milis_time = sprintf('%d%03d',$timeInfo[1],$timeInfo[0] * 1000);
    return $time;
  }

以上就是如何在php中生成毫秒时间戳 的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行