mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
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.
27 lines
751 B
PHP
27 lines
751 B
PHP
--TEST--
|
|
Bug #35785 (SimpleXML memory read error)
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("simplexml")) print "skip"; ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$xml = simplexml_load_string("<root></root>");
|
|
$xml->bla->posts->name = "FooBar";
|
|
echo $xml->asXML();
|
|
$xml = simplexml_load_string("<root></root>");
|
|
var_dump(isset($xml->bla->posts));
|
|
$xml->bla->posts[0]->name = "FooBar";
|
|
echo $xml->asXML();
|
|
$xml = simplexml_load_string("<root></root>");
|
|
$xml->bla->posts[]->name = "FooBar";
|
|
echo $xml->asXML();
|
|
?>
|
|
--EXPECT--
|
|
<?xml version="1.0"?>
|
|
<root><bla><posts><name>FooBar</name></posts></bla></root>
|
|
bool(false)
|
|
<?xml version="1.0"?>
|
|
<root><bla><posts><name>FooBar</name></posts></bla></root>
|
|
<?xml version="1.0"?>
|
|
<root><bla><posts><name>FooBar</name></posts></bla></root>
|