核心函数是microtime,大概整理了下,因为微秒时间戳太长,如果用实数,会科学计数,所以返回字符串,函数如下:

function getMicroSecondsTimestamp (){
$time = microtime();
return subs[......]

阅读全文