程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php計算函數執行時間的方法,php計算函數執行

php計算函數執行時間的方法,php計算函數執行

編輯:關於PHP編程

php計算函數執行時間的方法,php計算函數執行


本文實例講述了php計算函數執行時間的方法。分享給大家供大家參考。具體如下:

我們可以通過在程序的前後分別記錄開始和結束時間,兩個時間差就是程序的執行時間。
復制代碼 代碼如下:<?php
$long_str = "this is a test to see how much time md5 function takes to execute over this string";
// start timing from here
$start = microtime(true);
// function to test
$md5 = md5($long_str);
$elapsed = microtime(true) - $start;
echo "That took $elapsed seconds.\n";
?>

運行結果如下:

That took 7.1525573730469E-6 seconds.

希望本文所述對大家的php程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved