首頁  >  文章  >  後端開發  >  計算php函數的執行時間

計算php函數的執行時間

WBOY
WBOY原創
2016-07-25 08:45:491077瀏覽
  1. $long_str = "this is a test to see how much time md5 function takes to execute over this string";
  2. // start timing from here
  3. $start = microtime(true);
  4. // function to test
  5. $md5 = md5($long_str);
  6. $elapsed = microtime(true) - $start;
  7. echo "That took $elapsed seconds.n";
  8. ?>
复制代码

執行時間, php


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn