time( ) microtime()
タイムスタンプ(1970/01/01 00:00:01からの経過秒数)を取得します。 microtime()関数は、マイクロ秒まで取得します。
<?php echo "time:" . time() . "\n"; echo "microtime:" . microtime() . "\n"; ?> ●実行結果 time:1169913501 microtime:0.68472400 1169913501