mirror of
https://github.com/php/php-src.git
synced 2024-11-26 03:16:33 +08:00
14 lines
290 B
PHP
14 lines
290 B
PHP
--TEST--
|
|
Parsing a file using constructor
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("tidy")) print "skip"; ?>
|
|
--FILE--
|
|
<?php
|
|
$tidy = new tidy(dirname(__FILE__)."/013.html", array("show-body-only"=>true));
|
|
$tidy->cleanRepair();
|
|
echo $tidy;
|
|
|
|
?>
|
|
--EXPECT--
|
|
<b>testing</b>
|