Answers for "php check load time"

PHP
1

time to load php page

//Put this code at beginning of your page:
<?php $start_time = microtime(true); ?>
   
//Put this code at the end of your page:
This page was generated in <?php echo(number_format(microtime(true) - $start_time, 2)); ?> seconds.
Posted by: Guest on June-12-2020

Browse Popular Code Answers by Language