function getMillisecond() {
list($t1, $t2) = explode(' ', microtime());
return $t2 . '.' . ceil( ($t1 * 1000) );
}
echo getMillisecond();
前面十位是标准的时间戳, 后面三位是毫秒
microtime()
10位的Unix时间(秒)
8位的微妙
足够你用了.截取自己要的13位就可以了.
microtime()取得当前时间的unix时间戳和微妙数.十三位的.
本函数仅在支持 gettimeofday() 系统调用的操作系统下可用。
import time
print int(time.time());