我试图得到这个输出:
2013072708410102
这是年/月/日/小时/分钟/秒/毫秒。
我试过这个:
$getDate = date("Ymd");
$getTime = time();
echo $getDate . " " . $getTime;
我得到这种输出:
201307271374885743
年/月/日是正确的。但我不认为它给了我想要的时间格式。
我怎样才能有这种格式 2013072708410102 年/月/日/小时/分钟/秒/毫秒?