I that possible?
for eg. if I want to test if str_replace()
is faster that preg_replace()
?
The easy way:
$time = microtime(true); // time in Microseconds
// Your code here
echo (microtime(true) - $time) . ' elapsed';
The hard(er) way: Use a code profiler to see exactly how much time your methods will take.
You can run the same line 10,000 times (or more) in your script, and use microtime(true)
to tell the time it took.
Reference: microtime()
I found this answer by 'bisko' in this thread.
$start = microtime(true);
for (...) { .... }
$end = microtime(true);
echo ($end - $start).' seconds';
The for-loop can be replaced by whatever you want to time.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With