Monday, May 25, 2020

Measuring PHP Execution Time

$mt = microtime(TRUE);
foreach($y as $k => $v) {$z->$k = $v;}
$a = microtime(TRUE) - $mt;

print "Execution Time: " . ($a) . "\n";

No comments:

Post a Comment