fork(6) download
  1. <?php
  2. $b = array("a"=>"horse", "b"=>"aunt", "c"=>"dog");
  3. print_r($b);
  4. ?>
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
Array
(
    [a] => horse
    [b] => aunt
    [c] => dog
)