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