mirror of
https://github.com/php/php-src.git
synced 2025-08-20 01:14:28 +02:00

Not all extensions consistently throw exceptions when the user passes a path name containing null bytes. Also, some extensions would throw a ValueError while others would throw a TypeError. Error messages also varied. Now a ValueError is thrown after all failed path checks, at least for as far as these occur in functions that are exposed to userland. Closes GH-6216.
16 lines
355 B
PHP
16 lines
355 B
PHP
--TEST--
|
|
Test DOMDocument::loadXML() with empty file path
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
// create dom document
|
|
$dom = new DOMDocument();
|
|
try {
|
|
$dom->loadXML("");
|
|
} catch (ValueError $exception) {
|
|
echo $exception->getMessage() . "\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
DOMDocument::loadXML(): Argument #1 ($source) must not be empty
|