Page Speed - Test Script response speed

前端 未结 2 426
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-06 13:37

I made a website recent and it\'s loading very slow. My Firebug Page Speed Score is 82/100. I think this is good. My website has 2 images and they have 100KB and some other

相关标签:
2条回答
  • 2021-01-06 14:29

    I use Fiddler for this. It is a handy tool that can accurately time the entire request and response, to and from the server.

    Just open Fiddler, go to your site, select all of the requests related, and click the statistics tab.

    0 讨论(0)
  • 2021-01-06 14:30

    time your script?

    <?php
    $start = microtime(true);
    
      //your script here
    
    $end = microtime(true);
    $time = $end - $start;
    echo('script took ' . $time . ' seconds to execute.');
    ?>
    
    0 讨论(0)
提交回复
热议问题