Source Code:
(back to article)
<?php $start = hrtime(true); // Code to be benchmarked $end = hrtime(true); $time = ($end - $start) / 1e6; echo "Execution time: $time milliseconds"; ?>
Result:
Report an issue