--TEST-- Test DOMDocument::loadHTMLFile when an empty string is passed --DESCRIPTION-- Verifies that an error message is showed if an empty string is passed as argument --CREDITS-- Antonio Diaz Ruiz --INI-- assert.bail=true --SKIPIF-- --FILE-- loadHTMLFile(""); assert('$result === false'); $doc = new DOMDocument(); $result = $doc->loadHTMLFile("text.html\0something"); assert('$result === null'); ?> --EXPECTF-- %r(PHP ){0,1}%rWarning: DOMDocument::loadHTMLFile(): Empty string supplied as input %s %r(PHP ){0,1}%rWarning: DOMDocument::loadHTMLFile() expects parameter 1 to be a valid path, string given %s