PHP Conference Japan 2024

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(
    字符串 $filename,
    数组|字符串|null $config = null,
    ?字符串 $encoding = null,
    布尔值 $useIncludePath = false
): 布尔值

过程式风格

tidy_parse_file(
    字符串 $filename,
    数组|字符串|null $config = null,
    ?字符串 $encoding = null,
    布尔值 $useIncludePath = false
): tidy|false

解析给定的文件。

参数

filename

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

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 $config$encoding现在可以为空。

范例

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

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

$tidy->cleanRepair();

if(!empty(
$tidy->errorBuffer)) {
echo
"出现以下错误或警告:\n";
echo
$tidy->errorBuffer;
}
?>

参见

添加注释

用户贡献的注释

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