mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
31 lines
314 B
PHP
Executable File
31 lines
314 B
PHP
Executable File
--TEST--
|
|
'Static' binding for private variables
|
|
--FILE--
|
|
<?php
|
|
|
|
class par {
|
|
private $id="foo";
|
|
|
|
function displayMe()
|
|
{
|
|
$this->displayChild();
|
|
}
|
|
};
|
|
|
|
class chld extends par {
|
|
private $id = "bar";
|
|
|
|
function displayChild()
|
|
{
|
|
print $this->id;
|
|
}
|
|
};
|
|
|
|
|
|
$obj = new chld();
|
|
$obj->displayMe();
|
|
|
|
?>
|
|
--EXPECT--
|
|
bar
|