php-src/ext/simplexml/tests/bug35785.phpt
Marcus Boerger 1dd351d649 - Use get_property_ptr_ptr handler to prevent SEGV as in bug #35785
# Issue not completley solved though
2006-02-26 15:48:28 +00:00

25 lines
566 B
PHP
Executable File

--TEST--
Bug #35785 (SimpleXML memory read error)
--FILE--
<?php
$xml = simplexml_load_string("<root></root>");
$count = count($xml->posts);
var_dump($count);
$xml->bla->posts[++$count]->name = "FooBar";
echo $xml->asXML();
?>
===DONE===
<?php exit(0); __halt_compiler(); ?>
--EXPECTF--
int(0)
Notice: Undefined index: name in %sbug35785.php on line %d
Strict Standards: Creating default object from empty value in %sbug35785.php on line %d
Warning: Attempt to assign property of non-object in %sbug35785.php on line %d
<?xml version="1.0"?>
<root/>
===DONE===