PHP 的 microtime() 返回如下内容:
0.56876200 1385731177 //that's msec sec
我需要这种格式的值:
1385731177056876200 //this is sec msec without space and dot
目前我正在做这样的事情:
$microtime = microtime();
$microtime_array = explode(" ", $microtime);
$value = $microtime_array[1] . str_replace(".", "", $microtime_array[0]);
是否有一行代码来实现这一目标?