1
0
mirror of https://github.com/php/php-src.git synced 2026-04-13 11:02:55 +02:00
Files
archived-php-src/ext/xml/tests/xml_parser_get_option_variation4.phpt

20 lines
352 B
PHP

--TEST--
xml_parser_get_option() - Test parameter not set
--SKIPIF--
<?php
if (!extension_loaded('xml')) {
exit('Skip - XML extension not loaded');
}
?>
--FILE--
<?php
$xmlParser = xml_parser_create();
var_dump(xml_parser_get_option ($xmlParser, 42));
?>
--EXPECTF--
Warning: xml_parser_get_option(): Unknown option in %s on line %d
bool(false)