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]);
これを達成するための1行のコードはありますか?