summaryrefslogtreecommitdiff
path: root/Zend/tests/bug29674.phpt
blob: 39bc302463066ccaa0cc7274b8c5e8341e9a5e86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
--TEST--
Bug #29674 (inherited method doesn't have access to private variables of the derived class)
--FILE--
<?php

class BaseClass
{
	private $private_base = "Base";
	
	function printVars ()
	{
		var_dump($this->private_base);
		var_dump($this->private_child);
	}
}

class ChildClass extends BaseClass
{
	private $private_child = "Child";
}

echo "===BASE===\n";
$obj = new BaseClass;
$obj->printVars();

echo "===CHILD===\n";
$obj = new ChildClass;
$obj->printVars();

?>
===DONE===
--EXPECTF--
===BASE===
string(4) "Base"

Notice: Undefined property: BaseClass::$private_child in %sbug29674.php on line %d
NULL
===CHILD===
string(4) "Base"

Fatal error: Uncaught Error: Cannot access private property ChildClass::$private_child in %sbug29674.php:%d
Stack trace:
#0 %s(%d): BaseClass->printVars()
#1 {main}
  thrown in %sbug29674.php on line %d