LoginSignup
167
135

More than 5 years have passed since last update.

PHPの処理速度を計測

Posted at
<?php
$time_start = microtime(true);

// 計測したい処理

$time = microtime(true) - $time_start;
echo "{$time} 秒";
167
135
4

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
167
135