php-8.0.30-src/ext/tidy/tests/005.phpt

19 lines
260 B
PHP

--TEST--
tidy_parse_file()
--SKIPIF--
<?php if (!extension_loaded("tidy")) print "skip"; ?>
--FILE--
<?php
$a = tidy_parse_file(__DIR__."/005.html");
echo tidy_get_output($a);
?>
--EXPECT--
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>