//Create a variable for start time $time_start = microtime(true); // Place your PHP/HTML/JavaScript/CSS/Etc. Here //Create a variable for end time $time_end = microtime(true); //Subtract the two times to get seconds $time = $time_end - $time_start; echo 'Script took '.$time.' seconds to execute';
相关文章:
- 计算页面执行时间 2021-07-11
- PHP获取页面执行时间的方法(推荐) 2022-12-23
- PHP获取PHP执行的时间 2022-12-23
- 黄聪:PHP获取某一天前后任意时间 2021-12-03
- 获得页面执行时间 2021-08-28
- MVC 实现计算页面执行时间 2022-12-23
- 页面执行时间统计 2021-12-24
- 黄聪:PHP获取MAC地址(转) 2021-06-26