qxandxt

导航

2019年9月5日 #

php 查看接口运行时间

摘要: <?php $start_time = microtime(true); for ($i=0;$i<100000000;$i++){}; $end_time = microtime(true); echo '循环执行时间为:'.($end_time-$start_time).' s'; 阅读全文

posted @ 2019-09-05 14:58 qxandxt 阅读(856) 评论(0) 推荐(0) 编辑