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