当前位置:主页 > 软件编程 > PHP代码 >

PHP 返回13位时间戳的实现代码

时间:2020-10-26 23:15:01 | 栏目:PHP代码 | 点击:

13位时间戳生成函数如下所示:

private function getMillisecond() { 
  list($t1, $t2) = explode(' ', microtime()); 
  return (float)sprintf('%.0f',(floatval($t1)+floatval($t2))*1000); 
} 

您可能感兴趣的文章:

相关文章