tidy::parseFile

tidy_parse_file

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

tidy::parseFile -- tidy_parse_file解析文件或 URI 中的标记

说明

面向对象风格

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

过程式风格

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

解析给定的文件。

参数

filename

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

config

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

有关每个选项的解释,请参阅 » http://api.html-tidy.org/#quick-reference

encoding

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

useIncludePath

include_path 中搜索文件。

返回值

tidy::parseFile() 在成功时返回 truetidy_parse_file() 在成功时返回一个新的 tidy 实例。方法和函数在失败时都会返回 false

变更日志

版本 说明
8.0.0 configencoding 现在可以为空。

示例

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

<?php
$tidy
= new tidy();
$tidy->parseFile('file.html');

$tidy->cleanRepair();

if(!empty(
$tidy->errorBuffer)) {
echo
"The following errors or warnings occurred:\n";
echo
$tidy->errorBuffer;
}
?>

参见

添加注释

用户贡献的注释

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