mirror of
https://github.com/php/php-src.git
synced 2024-12-15 04:45:03 +08:00
22 lines
325 B
PHP
22 lines
325 B
PHP
--TEST--
|
|
Bug #68118: $a->foo .= 'test'; can leave $a->foo undefined
|
|
--FILE--
|
|
<?php
|
|
|
|
set_error_handler(function() {
|
|
$obj = new stdClass;
|
|
$obj->test = 'meow';
|
|
return true;
|
|
});
|
|
|
|
$a = new stdClass;
|
|
$a->undefined .= 'test';
|
|
var_dump($a);
|
|
|
|
?>
|
|
--EXPECT--
|
|
object(stdClass)#2 (1) {
|
|
["undefined"]=>
|
|
string(4) "test"
|
|
}
|