mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
13 lines
269 B
PHP
13 lines
269 B
PHP
--TEST--
|
|
XMLReader: open error
|
|
--EXTENSIONS--
|
|
xmlreader
|
|
--FILE--
|
|
<?php
|
|
$reader = new XMLReader();
|
|
var_dump($reader->open(__DIR__.'/missing-file.xml'));
|
|
$reader->close();
|
|
?>
|
|
--EXPECTF--
|
|
Warning: XMLReader::open(): Unable to open source data in %s on line %d
|
|
bool(false)
|