mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
17 lines
350 B
PHP
17 lines
350 B
PHP
--TEST--
|
|
DOMDocument::loadHTML() should fail if empty string provided as input
|
|
--CREDITS--
|
|
Knut Urdalen <knut@php.net>
|
|
--EXTENSIONS--
|
|
dom
|
|
--FILE--
|
|
<?php
|
|
$doc = new DOMDocument();
|
|
try {
|
|
$doc->loadHTML('');
|
|
} catch (ValueError $e) {
|
|
echo $e->getMessage() . "\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
DOMDocument::loadHTML(): Argument #1 ($source) must not be empty
|