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