Calculate page loading time
Sometimes you need to debug your php files you have created.Then there you can measure your pages’s time complexity that how long it takes to load.You can calculate your page loading time using PHP script. For this there is used microtime() in PHP which is used for returns the current Unix timestamp with microseconds. So let’s see the …