当前位置:Gxlcms > PHP教程 > PHP生成毫秒时间戳的方法

PHP生成毫秒时间戳的方法

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

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网其它相关文章!

人气教程排行