mirror of
https://github.com/php/php-src.git
synced 2026-04-02 05:32: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.
24 lines
453 B
PHP
24 lines
453 B
PHP
--TEST--
|
|
DomDocument::schemaValidate() - empty string for schema file name
|
|
--CREDITS--
|
|
Daniel Convissor <danielc@php.net>
|
|
# TestFest 2009 NYPHP
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$doc = new DOMDocument;
|
|
|
|
$doc->load(__DIR__."/book.xml");
|
|
|
|
try {
|
|
$doc->schemaValidate('');
|
|
} catch (ValueError $e) {
|
|
echo $e->getMessage() . "\n";
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
DOMDocument::schemaValidate(): Argument #1 ($filename) must not be empty
|