xref: /PHP-7.4/ext/tidy/tests/016.phpt (revision 26dfce7f)
1--TEST--
2Passing configuration file through tidy_parse_file() (may fail with buggy libtidy)
3--SKIPIF--
4<?php if (!extension_loaded("tidy")) print "skip"; ?>
5--FILE--
6<?php
7        $tidy = tidy_parse_file(__DIR__."/016.html",
8                                __DIR__."/016.tcfg");
9        $cfg = $tidy->getConfig();
10        echo $cfg["clean"];
11?>
12--EXPECT--
131
14