fork download
  1. <?Php
  2. $a=array(1,2,3);
  3. Print_r($a) ;
Success #stdin #stdout 0.02s 25480KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 1
    [1] => 2
    [2] => 3
)