mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
15 lines
306 B
PHP
15 lines
306 B
PHP
--TEST--
|
|
Test DOMDocument::loadHTMLFile
|
|
--DESCRIPTION--
|
|
Verifies the basic behaviour of the method
|
|
--CREDITS--
|
|
Antonio Diaz Ruiz <dejalatele@gmail.com>
|
|
--EXTENSIONS--
|
|
dom
|
|
--FILE--
|
|
<?php
|
|
$doc = new DOMDocument();
|
|
$result = $doc->loadHTMLFile(__DIR__ . "/test.html");
|
|
assert($result === true);
|
|
?>
|
|
--EXPECT--
|