fork download
  1. <?php
  2.  
  3. $d = [0.3 => 'hello', 0.30000000000000004 => 'world'];
  4. echo $d[0.1 + 0.2] . "\n";
  5. echo $d[0.3];
Success #stdin #stdout 0.04s 24424KB
stdin
Standard input is empty
stdout
world
world