fork download
  1. <?php
  2.  
  3. $codes = array();
  4. $headers = array("HTTP/1.1 100 Continue"
  5. "HTTP/1.1 302 Found",
  6. "HTTP/1.1 200 OK",
  7. "HTTP/1.1 400 Not Found");
  8.  
  9. foreach ($headers AS $header) {
  10. list($http, $code, $status) = explode(" ", $header, 2);
  11. $codes[$code] = $status;
  12. }
  13.  
  14. print_r($codes);
  15.  
  16. ?>
Runtime error #stdin #stdout 0.02s 13664KB
stdin
Standard input is empty
stdout
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/7A6Kzz/prog.php on line 5