前言
emmmmmm,別說話,我們偷偷偷狗子
格式 | yyyyMMddHHmmssSSS
代碼
獲取毫秒
//獲取當前時間毫秒 function msectime() { list($msec, $sec) = explode(' ', microtime()); $msectime = (float)sprintf('%.0f', (floatval($msec) + floatval($sec)) * 1000); return $msectime; }
獲取精確時間
$time = msectime(); $ts = date('YmdHis').substr($time, -3);
ps: 如果出現獲取時間與當前時間不一致,請設置下時區
date_default_timezone_set('PRC');