熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

php記錄頁面代碼執行時間

2022-06-13   來源: PHP編程 

  在php中要記錄頁面中代碼執行時間我們只使用microtime函數生成時間然後在最後把開始與結束時間相減即可解決了

 

  核心代碼

 代碼如下  

  $t = microtime(true);
// 執行代碼
$t = microtime(true);
echo 耗時round($t$t);

  上面為核心代碼下面我們詳細的來介紹一下

 代碼如下  

  
<?php
$start_time=microtime(true); //獲取程序開始執行的時間
 echo "hello world!<br />"; //你執行的代碼
 $end_time=microtime(true);//獲取程序執行結束的時間
 $total=$end_time$start_time; //計算差值
 echo "此php文件中代碼執行了{$total}秒";
?>


From:http://tw.wingwit.com/Article/program/PHP/201311/21140.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.