1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/ext/libxml/tests/003.phpt
Nikita Popov 7485978339 Migrate SKIPIF -> EXTENSIONS (#7138)
This is an automated migration of most SKIPIF extension_loaded checks.
2021-06-11 11:57:42 +02:00

29 lines
468 B
PHP

--TEST--
libxml_use_internal_errors() memory leaks
--EXTENSIONS--
simplexml
--FILE--
<?php
var_dump(libxml_use_internal_errors(true));
$xmlstr = <<< XML
<?xml version='1.0' standalone='yes'?>
<movies>
<movie>
<titles>PHP: Behind the Parser</title>
</movie>
</movies>
XML;
simplexml_load_string($xmlstr);
// test memleaks here
var_dump(libxml_use_internal_errors(false));
echo "Done\n";
?>
--EXPECT--
bool(false)
bool(true)
Done