debug_run.php 437 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. printf("Content-Type: text/html; charset=UTF-8\r\n\r\n");
  3. $reqs = array();
  4. $uri ='http://localhost:8080/mobile/index.php?act=index&op=index';
  5. echo ' 0 <br>';
  6. array_push($reqs, $uri);
  7. array_push($reqs, $uri);
  8. array_push($reqs, $uri);
  9. echo ' 1 <br>';
  10. foreach ($reqs as $val)
  11. {
  12. $lreq = new local_request($uri);
  13. init_localreq($lreq);
  14. $file = $lreq->script_file();
  15. echo include $file;
  16. }