我的问题基于准确的方法来测量 php 脚本的执行时间
问题是如果我有一个很长的代码,其中有很多 die() 或返回或退出;职能
而且我不想计算脚本执行速度(可能不同,取决于参数..)
有什么办法吗?
我的建议是:
<?php
$time_start = microtime(true);
include("script_real_name.php");
$time_end=microtime(true);
$dif=$time_end-$time_start;
/* 但问题是,这个脚本是否适用于 DIE() 或 EXIT;在“script_real_name.php”上调用的函数?
如何使它可行。
和其他问题,包含的脚本可以与 $_POST、$_GET 一起使用吗?
*/