fork(1) download
  1. <?php
  2.  
  3. $time_start = microtime(true);
  4.  
  5. $data = array();
  6. for ($key = 0; $key <= 1073709056; $key += 32769){
  7. $data[$key] = 0;
  8. }
  9.  
  10. $execution_time = (microtime(true) - $time_start);
  11. echo '<b>Total Execution Time:</b> '.$execution_time.' secs';
Success #stdin #stdout 0.03s 20520KB
stdin
Standard input is empty
stdout
<b>Total Execution Time:</b> 0.014531850814819 secs