I am trying to get this output:
2013072708410102
which is year/month/day/hour/minutes/seconds/milliseconds.
I tried this:
$getDate = date("Ymd");
$getTime = time();
echo $getDate . " " . $getTime;
I am getting this kind of output:
201307271374885743
The year/month/day is correct. But I dont think its giving me the time format that I wanted.
How can I have this format 2013072708410102 year/month/day/hour/minutes/seconds/milliseconds?