我試圖讓這個輸出:如何在PHP中獲取系統時間?
2013072708410102
這是年/月/日/時/分/秒/毫秒。
我嘗試這樣做:
$getDate = date("Ymd");
$getTime = time();
echo $getDate . " " . $getTime;
我得到這樣的輸出:
201307271374885743
年/月/日是正確的。但我不認爲它給了我想要的時間格式。
如何獲得這種格式2013072708410102 年/月/日/小時/分鐘/秒/毫秒?
你可以在這裏得到你的答案:http://stackoverflow.com/questions/169428/php-datetime-microseconds-always-returns-0 – 2013-07-27 00:46:28
這一切都在這裏:http://php.net/manual /en/function.microtime.php – Anders