fork download
  1. <?php
  2.  
  3. // your code goes here
  4. $a = ['a'=>123, $x=2];
  5. var_dump($a, $x);
Success #stdin #stdout 0.02s 24412KB
stdin
Standard input is empty
stdout
array(2) {
  ["a"]=>
  int(123)
  [0]=>
  int(2)
}
int(2)