//Create a variable for start time   
    $time_start = microtime(true);   
       
    // Place your PHP/HTML/JavaScript/CSS/Etc. Here   
       
    //Create a variable for end time   
    $time_end = microtime(true);   
    //Subtract the two times to get seconds   
    $time = $time_end - $time_start;   
       
    echo 'Script took '.$time.' seconds to execute';  

相关文章:

  • 2021-07-11
  • 2022-12-23
  • 2022-12-23
  • 2021-12-03
  • 2021-08-28
  • 2022-12-23
  • 2021-12-24
  • 2021-06-26
猜你喜欢
  • 2021-12-23
  • 2022-12-23
  • 2022-02-01
  • 2021-09-01
  • 2021-08-23
相关资源
相似解决方案