tidy_get_output
tidy_get_output
(PHP 5, PHP 7, PECL tidy >= 0.5.2)
tidy_get_output - 返回一个表示解析整理标记的字符串
描述
string tidy_get_output ( tidy $object )
获取修复后的html的字符串。
参数
object
整洁的对象。
返回值
返回解析的整洁标记。
例子
Example #1 tidy
_
get
_
output() example
<?php
$html = '<p>paragraph</i>';
$tidy = tidy_parse_string($html
$tidy->cleanRepair(
echo tidy_get_output($tidy
?>
上面的例子将输出:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title></title>
</head>
<body>
<p>paragraph</p>
</body>
</html>
← tidy_error_count
tidy_load_config →