fork download
  1. <?php
  2. $array = [ 'one', 'two' ];
  3. print_r($array);
  4. // your code goes here
Success #stdin #stdout 0.01s 52488KB
stdin
Standard input is empty
stdout
Array
(
    [0] => one
    [1] => two
)