/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
- <?hh
- function main($o, inout $x) {
- $x = $o->prop;
- return isset($x[23]) ? true : false;
- }
- <<__EntryPoint>> function main_entry(): void {
- $o = new stdclass;
- $o->prop = darray[23 => 'hi'];
- $y = null;
- echo main($o, inout $y) ? "true\n" : "false\n";
- }