php获取13位时间戳

function getMillisecond() {
list($t1, $t2) = explode(' ', microtime());
return $t2 . ceil( ($t1 * 1000) );
}
$time = getMillisecond();
echo $time;

 

 

posted on 2016-12-29 10:31  LSMORPJER  阅读(864)  评论(0)    收藏  举报

导航