php check how long a function took to exexute

Solutions on MaxInterview for php check how long a function took to exexute by the best coders in the world

showing results for - "php check how long a function took to exexute"
Alejandro
23 May 2020
1$start = microtime(true);
2while (...) {
3
4}
5$time_elapsed_secs = microtime(true) - $start;
6
similar questions