tidy::__construct

(PHP 5, PHP 7, PHP 8, PECL tidy >= 0.5.2)

tidy::__construct构造一个新的 tidy 对象

描述

public tidy::__construct(
    ?string $filename = null,
    array|string|null $config = null,
    ?string $encoding = null,
    bool $useIncludePath = false
)

构造一个新的 tidy 对象。

参数

filename

如果给出了 filename 参数,则此函数还会读取该文件并使用该文件初始化对象,类似于 tidy_parse_file()

config

配置 config 可以作为数组或字符串传递。如果传递字符串,则将其解释为配置文件的名称,否则将其解释为选项本身。

有关每个选项的说明,请访问 » http://api.html-tidy.org/#quick-reference

encoding

encoding 参数设置输入/输出文档的编码。编码的可能值为:asciilatin0latin1rawutf8iso2022macwin1252ibm858utf16utf16leutf16bebig5shiftjis

useIncludePath

include_path 中搜索文件。

变更日志

版本 描述
8.0.0 filenameconfigencodinguseIncludePath 现在可以为空。

示例

示例 #1 tidy::__construct() 示例

<?php

$html
= <<< HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head><title>title</title></head>
<body>
<p>paragraph <bt />
text</p>
</body></html>

HTML;

$tidy = new tidy();
$tidy->ParseString($html);

$tidy->cleanRepair();

if (
$tidy->errorBuffer) {
echo
"The following errors were detected:\n";
echo
$tidy->errorBuffer;
}

?>

上面的例子将输出

The following errors were detected:
line 8 column 14 - Error: <bt> is not recognized!
line 8 column 14 - Warning: discarding unexpected <bt>

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top