fork download
  1. <?php
  2.  
  3. $arr = [8,2,3,4];
  4. print_r($arr);
Success #stdin #stdout 0.02s 23468KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 2
    [1] => 3
    [2] => 4
)