简体   繁体   中英

Calculate the time needed to run a certain function

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:

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM