/hphp/test/quick/boxed-array-isset.php

http://github.com/facebook/hiphop-php · PHP · 13 lines · 11 code · 2 blank · 0 comment · 0 complexity · bfab51d995752c097db0d140398921bf MD5 · raw file

  1. <?hh
  2. function main($o, inout $x) {
  3. $x = $o->prop;
  4. return isset($x[23]) ? true : false;
  5. }
  6. <<__EntryPoint>> function main_entry(): void {
  7. $o = new stdclass;
  8. $o->prop = darray[23 => 'hi'];
  9. $y = null;
  10. echo main($o, inout $y) ? "true\n" : "false\n";
  11. }