fork download
  1. <?php
  2.  
  3. $arr = array('a' => 10, 'b' =>20, 'c' =>30);
  4.  
  5. echo @$arr['d'] + 100;
Success #stdin #stdout 0s 82880KB
stdin
Standard input is empty
stdout
100