fork download
  1. <?php
  2.  
  3. $arr[] = [3,4];
  4.  
  5. var_dump($arr);
Success #stdin #stdout 0.02s 24448KB
stdin
Standard input is empty
stdout
array(1) {
  [0]=>
  array(2) {
    [0]=>
    int(3)
    [1]=>
    int(4)
  }
}