mirror of
https://github.com/php/php-src.git
synced 2024-12-18 06:21:41 +08:00
df79277de3
This reverts commit bb43a3822e
.
After thinking about this a bit more, this is now going to be
a complete solution for the "readonly properties" case, for example:
unset($foo->readOnly->bar);
should also be legal and
$foo->readOnly['bar'] = 42;
should also be legal if $foo->readOnly is not an array but an
ArrayAccess object.
I think it may be better to distinguish better on the BP_VAR flag
level. Reverting for now.
13 lines
281 B
PHP
13 lines
281 B
PHP
--TEST--
|
|
Bug #47704 (crashes on some "bad" operations with string offsets)
|
|
--FILE--
|
|
<?php
|
|
$s = "abd";
|
|
$s[0]->a += 1;
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Error: Cannot use string offset as an object in %sbug47704.php:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %sbug47704.php on line %d
|