tidy::repairFile

tidy_repair_file

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

tidy::repairFile -- tidy_repair_file修复文件并将其作为字符串返回

描述

面向对象风格

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

过程化风格

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

修复给定文件并将其作为字符串返回。

参数

filename

要修复的文件。

config

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

请查看 http://tidy.sourceforge.net/docs/quickref.html 以了解每个选项的说明。

encoding

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

useIncludePath

include_path 中搜索文件。

返回值

返回修复后的内容作为字符串,如果失败则返回 false

变更日志

版本 描述
8.0.0 tidy::repairFile() 现在是静态方法。
8.0.0 configencoding 现在可以为空。

示例

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

<?php
$file
= 'file.html';

$tidy = new tidy();
$repaired = $tidy->repairfile($file);
rename($file, $file . '.bak');

file_put_contents($file, $repaired);
?>

参见

添加注释

用户贡献注释

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