Lines Matching refs:obj
6 function test($obj) {
7 return array_column(array($obj), "prop");
10 $obj = new Stdclass();
12 $obj->prop = str_pad("a", 10, 'a');
14 test($obj);
15 test($obj);
16 test($obj);
18 var_dump($obj->prop);
27 $obj = new C;
29 $obj->name = str_pad("b", 10, 'b');
31 test($obj);
32 test($obj);
33 test($obj);
35 var_dump($obj->prop);