fork(67) download
  1. <?php
  2.  
  3. $arr = array('a', 'b', 'c' => array(9,8,7));
  4.  
  5. echo '<?php $arr = ' . var_export($arr, true) . ';';
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
<?php $arr = array (
  0 => 'a',
  1 => 'b',
  'c' => 
  array (
    0 => 9,
    1 => 8,
    2 => 7,
  ),
);