Searched refs:get_object_vars (Results 1 – 24 of 24) sorted by relevance
/PHP-5.4/ext/standard/tests/class_object/ |
H A D | get_object_vars_error_001.phpt | 2 Test get_object_vars() function : error conditions - wrong number of args 5 /* Prototype : proto array get_object_vars(object obj) 11 echo "*** Testing get_object_vars() : error conditions ***\n"; 14 echo "\n-- Testing get_object_vars() function with Zero arguments --\n"; 15 var_dump( get_object_vars() ); 17 //Test get_object_vars with one more than the expected number of arguments 21 var_dump( get_object_vars($obj, $extra_arg) ); 26 *** Testing get_object_vars() : error conditions *** 28 -- Testing get_object_vars() function with Zero arguments -- 30 Warning: get_object_vars() expects exactly 1 parameter, 0 given in %s on line 12 [all …]
|
H A D | get_object_vars_variation_003.phpt | 2 Test get_object_vars() function : usage variations - unexpected types for argument 1 5 /* Prototype : proto array get_object_vars(object obj) 11 echo "*** Testing get_object_vars() : usage variations ***\n"; 69 var_dump( get_object_vars($value) ); 75 *** Testing get_object_vars() : usage variations *** 103 Warning: get_object_vars() expects parameter 1 to be object, double given in %s on line %d 128 Warning: get_object_vars() expects parameter 1 to be object, array given in %s on line %d 133 Warning: get_object_vars() expects parameter 1 to be object, array given in %s on line %d 138 Warning: get_object_vars() expects parameter 1 to be object, array given in %s on line %d 153 Warning: get_object_vars() expects parameter 1 to be object, null given in %s on line %d [all …]
|
H A D | get_object_vars_basic_001.phpt | 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));
|
H A D | get_object_vars_variation_002.phpt | 2 get_object_vars() - ensure references are preserved 5 /* Prototype : proto array get_object_vars(object obj) 12 var_dump(get_object_vars($obj)); 18 $arr = get_object_vars($obj);
|
H A D | get_object_vars_variation_001.phpt | 2 get_object_vars() - ensure statics are not shown 5 /* Prototype : proto array get_object_vars(object obj) 16 var_dump(get_object_vars($a));
|
H A D | get_object_vars_basic_002.phpt | 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));
|
/PHP-5.4/Zend/tests/ |
H A D | bug27798.phpt | 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));
|
H A D | bug26010.phpt | 2 Bug #26010 (private / protected variables get exposed by get_object_vars()) 11 $obj_vars = get_object_vars($data);
|
H A D | bug40757.phpt | 2 Bug #40757 (get_object_vars() get nothing in child class) 9 return get_object_vars($obj);
|
/PHP-5.4/ext/standard/tests/array/ |
H A D | bug39576.phpt | 21 get_object_vars ($test), 29 get_object_vars ($test),
|
H A D | extract_variation9.phpt | 13 var_dump ( extract(get_object_vars($A),EXTR_REFS));
|
/PHP-5.4/ext/simplexml/tests/ |
H A D | bug46048.phpt | 13 print_r(get_object_vars($obj));
|
/PHP-5.4/ext/standard/tests/serialize/ |
H A D | bug36424.phpt | 10 return serialize(get_object_vars($this));
|
/PHP-5.4/ext/json/tests/ |
H A D | serialize.phpt | 30 return array_values(is_array($this->data) ? $this->data : get_object_vars($this->data));
|
/PHP-5.4/ext/mysqli/tests/ |
H A D | mysqli_class_mysqli_driver_interface.phpt | 56 $variables = array_keys(get_object_vars($driver));
|
H A D | mysqli_class_mysqli_warning.phpt | 72 $variables = get_object_vars($mysqli);
|
H A D | mysqli_class_mysqli_stmt_interface.phpt | 78 $variables = array_keys(get_object_vars($stmt));
|
H A D | mysqli_class_mysqli_result_interface.phpt | 76 $variables = array_keys(get_object_vars($mysqli_result));
|
H A D | mysqli_get_warnings.phpt | 52 $properties = array_merge(get_object_vars($warning), get_class_vars(get_class($warning)));
|
H A D | mysqli_class_mysqli_properties_no_conn.phpt | 23 $variables = array_keys(get_object_vars($mysqli));
|
H A D | mysqli_class_mysqli_interface.phpt | 148 $variables = get_object_vars($mysqli);
|
/PHP-5.4/ext/spl/tests/ |
H A D | array_017.phpt | 23 ,'OVars'=>get_object_vars($this) 57 ,'OVars'=>get_object_vars($this)
|
/PHP-5.4/Zend/ |
H A D | zend_builtin_functions.c | 67 static ZEND_FUNCTION(get_object_vars); 279 ZEND_FE(get_object_vars, arginfo_get_object_vars) 982 ZEND_FUNCTION(get_object_vars) in ZEND_FUNCTION() argument
|
/PHP-5.4/ |
H A D | NEWS | 6211 - Fixed bug #40757 (get_object_vars get nothing in child class). (Dmitry) 8864 get_object_vars() inside class). (Marcus)
|
Completed in 62 milliseconds