mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
20 lines
418 B
PHP
20 lines
418 B
PHP
--TEST--
|
|
Bug #34617 (zend_deactivate: objects_store used after zend_objects_store_destroy is called)
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("xml")) print "skip the xml extension not available"; ?>
|
|
--FILE--
|
|
<?php
|
|
class Thing {}
|
|
function boom()
|
|
{
|
|
$reader = xml_parser_create();
|
|
$thing = new Thing();
|
|
xml_set_object($reader, $thing);
|
|
die("ok\n");
|
|
xml_parser_free($reader);
|
|
}
|
|
boom();
|
|
?>
|
|
--EXPECT--
|
|
ok
|