如何在laravel/phpunit中测试查询执行了多长时间?
它是否有可能不依赖别的东西?
最古老的方式是最好的方式:
$start = microtime(true); // Execute the query $time = microtime(true) - $start;