php-src/ext/standard/tests/class_object/get_object_vars_basic_002.phpt

64 lines
1.1 KiB
Plaintext
Raw Normal View History

--TEST--
get_object_vars(): visibility from non static methods (target object passed as arg)
--FILE--
<?php
/* Prototype : proto array get_object_vars(object obj)
* Description: Returns an array of object properties
* Source code: Zend/zend_builtin_functions.c
* Alias to functions:
*/
Class A {
private $hiddenPriv = 'A::hiddenPriv';
public function testA($b) {
echo __METHOD__ . "\n";
var_dump(get_object_vars($b));
}
}
Class B extends A {
private $hiddenPriv = 'B::hiddenPriv';
private $priv = 'B::priv';
protected $prot = 'B::prot';
public $pub = 'B::pub';
public function testB($b) {
echo __METHOD__ . "\n";
var_dump(get_object_vars($b));
}
}
$b = new B;
echo "\n---( Declaring class: )---\n";
$b->testB($b);
echo "\n---( Superclass: )---\n";
$b->testA($b);
?>
--EXPECTF--
---( Declaring class: )---
B::testB
array(4) {
["hiddenPriv"]=>
string(13) "B::hiddenPriv"
["priv"]=>
string(7) "B::priv"
["prot"]=>
string(7) "B::prot"
["pub"]=>
string(6) "B::pub"
}
---( Superclass: )---
A::testA
array(3) {
["prot"]=>
string(7) "B::prot"
["pub"]=>
string(6) "B::pub"
["hiddenPriv"]=>
string(13) "A::hiddenPriv"
}