Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

php check how much time each instruction takes to complete

$start = microtime(true);
while (...) {

}
$time_elapsed_secs = microtime(true) - $start;
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #php #check #time #instruction #takes #complete
ADD COMMENT
Topic
Name
4+9 =