mirror of
https://github.com/php/php-src.git
synced 2024-11-24 18:34:21 +08:00
25 lines
355 B
PHP
25 lines
355 B
PHP
--TEST--
|
|
Bug #24499 (bogus handling of a public property as a private one)
|
|
--FILE--
|
|
<?php
|
|
class Id {
|
|
private $id="priv";
|
|
|
|
public function tester($obj)
|
|
{
|
|
$obj->id = "bar";
|
|
}
|
|
}
|
|
|
|
$id = new Id();
|
|
@$obj->foo = "bar";
|
|
$id->tester($obj);
|
|
print_r($obj);
|
|
?>
|
|
--EXPECT--
|
|
stdClass Object
|
|
(
|
|
[foo] => bar
|
|
[id] => bar
|
|
)
|