ru_php/ext/tidy/tests/002.phpt

19 lines
223 B
PHP

--TEST--
tidy_parse_string()
--EXTENSIONS--
tidy
--FILE--
<?php
$a = tidy_parse_string("<HTML></HTML>");
echo tidy_get_output($a);
?>
--EXPECT--
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>