header("content-type:text/html;charset=utf-8");
//microtime - 現在の Unix タイムスタンプとマイクロ秒を返します
$oldtime = microtime(true);
echo "このスクリプトの実行時間は次のとおりです:";
$v=0;
for ($i = 0; $i
$v++;
}
$newtime =microtime(true);
//時差を取得する
$runtime = $newtime-$oldtime;
//タイムスタンプを文字列に変換します - var_export は変数の文字列表現を出力または返します
$runtime=var_export($runtime);
//文字列substr_countをインターセプトして、文字列の出現数を計算します
$postion = substr_count($runtime, 'E');
$runtime = substr($runtime,0,$postion-1);
//文字列値を floatfloatval に変換 — 変数の浮動小数点値を取得します
$runtime = floatval($runtime)/1000;
echo $runtime."秒";
?>