php-src/ext/tidy/tests/002.phpt

25 lines
328 B
PHP

--TEST--
tidy_parse_string()
--SKIPIF--
<?php if (!extension_loaded("tidy")) print "skip"; ?>
--POST--
--GET--
--INI--
--FILE--
<?php
$tidy = tidy_create();
tidy_parse_string($tidy, "<HTML></HTML>");
echo tidy_get_output($tidy);
?>
--EXPECT--
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>