mirror of
https://github.com/php/php-src.git
synced 2025-08-19 08:49:28 +02:00
8 lines
176 B
PHP
8 lines
176 B
PHP
--TEST--
|
|
Testing xpath() with invalid XML
|
|
--FILE--
|
|
<?php
|
|
$xml = @simplexml_load_string("XXXXXXX^",$x,0x6000000000000001);
|
|
var_dump($xml->xpath("BBBB"));
|
|
--EXPECT--
|
|
bool(false)
|