xref: /PHP-7.4/ext/tidy/tests/009.phpt (revision d679f022)
1--TEST--
2tidy_doc object overloading
3--SKIPIF--
4<?php if (!extension_loaded("tidy")) print "skip"; ?>
5--FILE--
6<?php
7
8    $a = tidy_parse_string("<HTML></HTML>");
9	echo $a;
10
11?>
12--EXPECT--
13<html>
14<head>
15<title></title>
16</head>
17<body>
18</body>
19</html>
20