mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
15 lines
319 B
PHP
15 lines
319 B
PHP
--TEST--
|
|
xml_parser_free() deprecation message
|
|
--EXTENSIONS--
|
|
xml
|
|
--FILE--
|
|
<?php
|
|
|
|
$xp = xml_parser_create();
|
|
xml_parse($xp, '<root></root>',TRUE);
|
|
xml_parser_free($xp);
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: Function xml_parser_free() is deprecated since 8.5, as it has no effect since PHP 8.0 in %s on line %d
|
|
Done
|