debugging

Get Accurate Script Execution Time in PHP

This small code can be quite helpful if you need to find out what is taking so long to load in your script(s). It will determine the time taken for your PHP script(s) to execute, accurate to 0.000000000000001 seconds. The Code 1234567891011121314151617// put this at the top of your page/script $exectime = microtime(); $exectime = [...]