fork download
  1. <?php
  2.  
  3. $a = [5 ,6, 7];
  4.  
  5. print_r( $a );
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 5
    [1] => 6
    [2] => 7
)