fork download
  1. <?php
  2. $array = array (0.1 => 'a', 0.2 => 'b');
  3. print_r($array);
  4. ?>
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
Array
(
    [0] => b
)