測試程式碼效率

WBOY
發布: 2016-07-25 08:50:34
原創
1080 人瀏覽過
begin($start);
report($start);
  1. function begin(&$start) {
  2. $tmp = gettimeofday();
  3. $start = $tmp[usec];
  4. }
  5. function report($start) {
  6. $tmp = gettimeofday();
  7. $now = $tmp[usec];
  8. echo "time consuming: ";
  9. echo $now - $start;
  10. echo "
    ";
  11. }
  12. function getRandNum($length = 8) {
  13. $salt = substr(uniqid(rand()), -$length);
  14. return $salt;
  15. }
  16. $start = 0;
  17. begin($start);
  18. $str="";
  19. while (strlen($str)< 10000)
  20. {
  21. $str.=getRandNum(1);
  22. }
  23. report($start);
复制代码


相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板