php-src/Zend/tests/bug37212.phpt
Antony Dovgal a8be4e0f43 fix tests
2007-05-07 22:12:56 +00:00

70 lines
1017 B
PHP
Executable File

--TEST--
Bug #37212 (Access to protected property of common base class)
--FILE--
<?php
class A
{
protected $value;
public function __construct($val)
{
$this->value = $val;
}
protected function getValue()
{
return $this->value;
}
}
class B extends A
{
public function copyValue($obj)
{
$this->value = $obj->getValue();
$this->value = $obj->value; // value defined in common base class
}
}
class C extends A {}
$B = new B("B");
var_dump($B);
$C = new C("C");
var_dump($C);
$B->copyValue($C);
var_dump($B);
?>
===DONE===
--EXPECTF--
object(B)#%d (1) {
["value":protected]=>
string(1) "B"
}
object(C)#%d (1) {
["value":protected]=>
string(1) "C"
}
object(B)#%d (1) {
["value":protected]=>
string(1) "C"
}
===DONE===
--UEXPECTF--
object(B)#%d (1) {
[u"value":protected]=>
unicode(1) "B"
}
object(C)#%d (1) {
[u"value":protected]=>
unicode(1) "C"
}
object(B)#%d (1) {
[u"value":protected]=>
unicode(1) "C"
}
===DONE===