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

20 lines
252 B
PHP

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