php-src/ext/tidy/tests/005.phpt
2003-12-19 14:24:04 +00:00

25 lines
404 B
PHP

--TEST--
tidy_parse_file()
--SKIPIF--
<?php if (!extension_loaded("tidy")) print "skip"; ?>
--POST--
--GET--
--INI--
--FILE--
<?php
if (class_exists("tidy_doc")) {
$a = tidy_parse_file("ext/tidy/tests/005.html");
echo tidy_get_output($a);
} else {
tidy_parse_file("ext/tidy/tests/005.html");
echo tidy_get_output();
}
?>
--EXPECT--
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>