mirror of
https://github.com/php/php-src.git
synced 2024-11-26 03:16:33 +08:00
18 lines
265 B
PHP
18 lines
265 B
PHP
--TEST--
|
|
tidy_parse_file()
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("tidy")) print "skip"; ?>
|
|
--FILE--
|
|
<?php
|
|
$a = tidy_parse_file(dirname(__FILE__)."/005.html");
|
|
echo tidy_get_output($a);
|
|
|
|
?>
|
|
--EXPECT--
|
|
<html>
|
|
<head>
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|