Searched refs:get_object_vars (Results 1 – 25 of 35) sorted by relevance
12
2 Bug #27798 (private / protected variables not exposed by get_object_vars() inside class)15 var_dump(get_object_vars($this));27 var_dump(get_object_vars($this));31 var_dump(get_object_vars(new Base));32 var_dump(get_object_vars(new Child));
2 Bug #71336 (Wrong is_ref on properties as exposed via get_object_vars())12 $vars = get_object_vars($this);20 $vars = get_object_vars($this);
2 Bug #26010 (private / protected variables get exposed by get_object_vars())11 $obj_vars = get_object_vars($data);
2 Bug #73998 (array_key_exists fails on arrays created by get_object_vars)11 $properties = get_object_vars($a);
2 Bug #40757 (get_object_vars() get nothing in child class)9 return get_object_vars($obj);
13 var_dump(get_object_vars($this));
21 var_dump(get_object_vars($oldFoo));
11 $a = get_object_vars($this);
2 get_object_vars(): visibility from static methods (target object passed as arg)5 /* Prototype : proto array get_object_vars(object obj)16 var_dump(get_object_vars($b));28 var_dump(get_object_vars($b));37 var_dump(get_object_vars($b));44 var_dump(get_object_vars($b));51 var_dump(get_object_vars($b));
2 get_object_vars() - ensure statics are not shown5 /* Prototype : proto array get_object_vars(object obj)16 var_dump(get_object_vars($a));
2 get_object_vars() - ensure references are preserved5 /* Prototype : proto array get_object_vars(object obj)12 var_dump(get_object_vars($obj));18 $arr = get_object_vars($obj);
2 get_object_vars() fast/slow-path discrepancies15 var_dump(get_object_vars($GLOBALS['obj']));19 var_dump(get_object_vars($obj));
2 get_object_vars() no-declared/declared discrepancies17 var_dump(get_object_vars($obj));24 var_dump(get_object_vars($obj));
2 get_object_vars(): visibility from non static methods (target object passed as arg)5 /* Prototype : proto array get_object_vars(object obj)16 var_dump(get_object_vars($b));28 var_dump(get_object_vars($b));
2 get_object_vars() on ArrayObject works on the properties of the ArrayObject itself15 return get_object_vars($this);20 var_dump(get_object_vars($ao));
11 var_dump(get_object_vars($diff)['f']);12 var_dump($diff->f === get_object_vars($diff)['f']);
21 get_object_vars ($test),29 get_object_vars ($test),
13 var_dump ( extract(get_object_vars($A),EXTR_REFS));
13 print_r(get_object_vars($obj));
10 assert('self::checkCacheKey(get_object_vars($this))');
9 return [get_object_vars($this)];
32 return array_values(is_array($this->data) ? $this->data : get_object_vars($this->data));
18 return serialize(get_object_vars($this));
10 return serialize(get_object_vars($this));
Completed in 20 milliseconds