php-src/ext/simplexml/tests/SimpleXMLElement_xpath.phpt
2015-05-31 21:35:21 +02:00

16 lines
444 B
PHP

--TEST--
Testing xpath() with invalid XML
--FILE--
<?php
// gracefully recover from parsing of invalid XML; not available in PHP
const XML_PARSE_RECOVER = 1;
// we're not interested in checking concrete warnings regarding invalid XML
$xml = @simplexml_load_string("XXXXXXX^", 'SimpleXMLElement', XML_PARSE_RECOVER);
// $xml is supposed to hold a SimpleXMLElement, but not FALSE/NULL
var_dump($xml->xpath("BBBB"));
?>
--EXPECT--
bool(false)