fork download
  1. <?php
  2. function print_array($array) {
  3. print_r($array);
  4. }
  5.  
  6. $my_array = array('a' => 1, 'b' => 2, 'c' => 3);
  7. print_array($my_array);
Success #stdin #stdout 0.03s 25644KB
stdin
Standard input is empty
stdout
Array
(
    [a] => 1
    [b] => 2
    [c] => 3
)