fork download
  1. <?php
  2. $input_line = trim(fgets(STDIN));
  3. for ($i = 0; $i < $input_line; $i++) {
  4. $s = trim(fgets(STDIN));
  5. $s = str_replace(array("\r\n","\r","\n"), '', $s);
  6. $s = explode(" ", $s);
  7. echo "hello = ".$s[0]." , world = ".$s[1]."\n";
  8. }
  9. ?>
Success #stdin #stdout #stderr 0.03s 25980KB
stdin
2 3
stdout
hello =  , world = 
hello =  , world = 
stderr
PHP Notice:  Undefined offset: 1 in /home/ahQZhD/prog.php on line 7
PHP Notice:  Undefined offset: 1 in /home/ahQZhD/prog.php on line 7