Answers for "php process start end time"

PHP
1

php time how long a function takes

<?php
$startTime = microtime(true);

/*stuff is going on*/

echo "Elapsed time is: ". (microtime(true) - $startTime) ." seconds";
Posted by: Guest on December-19-2019

Code answers related to "php process start end time"

Browse Popular Code Answers by Language