php生成毫秒时间戳的实例讲解

时间:2022-11-14 20:21:47

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

例子:

?
1
2
3
4
5
6
7
8
9
public function getCurrentMilis() {
 
    $mill_time = microtime();
    $timeInfo = explode(' ', $mill_time);
    $milis_time = sprintf('%d%03d',$timeInfo[1],$timeInfo[0] * 1000);
 
    return $time;
 
  }

以上就是小编为大家带来的php生成毫秒时间戳的实例讲解的全部内容了,希望大家喜欢哦~

原文链接:http://www.cnblogs.com/cfinder010/archive/2017/09/22/7572657.html