1
0
mirror of https://github.com/php/php-src.git synced 2026-04-20 22:41:20 +02:00
Files
archived-php-src/ext/tidy/tests/002.phpt
2020-02-03 22:52:20 +01:00

19 lines
268 B
PHP

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