PHP检查执行时间

发布于:2022-07-07 最后编辑:2022-07-07 所属分类:后端 阅读次数:979

写了一段代码,需要测试一下执行时间,怎么办?使用microtime();方法即可。

示例代码

<?php
use JajoJSONDB;
$json_db = new JSONDB( __DIR__ );
$start_time  =  microtime(true);
for ($i=0; $i < 10000; $i++) { 
  $json_db->insert( 'users.json', 
    [ 
      'name' => 'Thomas', 
      'state' => 'Nigeria', 
      'age' => 22 
    ]
  );
}
$end_time  =  microtime(true);
echo (($end_time - $start_time)*1000) . "毫秒 rn";
exit;
标签: