fork download
  1. <?php
  2.  
  3. // Wrong
  4. $start = microtime();
  5. sleep(3);
  6. $stop = microtime();
  7. echo ($stop - $start) . PHP_EOL;
  8.  
  9. // Correct
  10. $start = microtime(true);
  11. sleep(3);
  12. $stop = microtime(true);
  13. echo ($stop - $start) . PHP_EOL;
  14.  
  15. ?>
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
8.000000000008E-5
3.0000791549683