mirror of
https://github.com/php/php-src.git
synced 2024-12-16 05:15:03 +08:00
c48b745f00
This implements the last remaining part of the https://wiki.php.net/rfc/engine_warnings RFC. Closes GH-5927.
52 lines
898 B
PHP
52 lines
898 B
PHP
--TEST--
|
|
Bug #37667 (Object is not added into array returned by __get)
|
|
--FILE--
|
|
<?php
|
|
|
|
class Test
|
|
{
|
|
protected $property = array('foo' => 'bar');
|
|
|
|
function __get($name)
|
|
{
|
|
return $this->property;
|
|
}
|
|
}
|
|
|
|
$obj = new Test;
|
|
|
|
var_dump($obj->property['foo']);
|
|
var_dump($obj->property[2]);
|
|
|
|
var_dump($obj);
|
|
|
|
$obj->property[] = 1;
|
|
$obj->property[] = 2;
|
|
|
|
var_dump($obj);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
string(3) "bar"
|
|
|
|
Warning: Undefined array key 2 in %s on line %d
|
|
NULL
|
|
object(Test)#%d (1) {
|
|
["property":protected]=>
|
|
array(1) {
|
|
["foo"]=>
|
|
string(3) "bar"
|
|
}
|
|
}
|
|
|
|
Notice: Indirect modification of overloaded property Test::$property has no effect in %sbug37667.php on line 20
|
|
|
|
Notice: Indirect modification of overloaded property Test::$property has no effect in %sbug37667.php on line 21
|
|
object(Test)#%d (1) {
|
|
["property":protected]=>
|
|
array(1) {
|
|
["foo"]=>
|
|
string(3) "bar"
|
|
}
|
|
}
|