tidy::diagnose

tidy_diagnose

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

tidy::diagnose -- tidy_diagnose对解析和修复的标记运行配置的诊断

描述

面向对象风格

public tidy::diagnose(): bool

过程化风格

tidy_diagnose(tidy $tidy): bool

对给定的 tidy tidy 运行诊断测试,在错误缓冲区中添加有关文档的更多信息。

参数

tidy

The Tidy 对象。

返回值

成功时返回 true,失败时返回 false

示例

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

<?php

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

<p>paragraph</p>
HTML;

$tidy = tidy_parse_string($html);
$tidy->cleanRepair();

// 注意两个输出之间的区别
echo $tidy->errorBuffer . "\n";

$tidy->diagnose();
echo
$tidy->errorBuffer;

?>

上面的示例将输出

line 4 column 1 - Warning: <p> isn't allowed in <head> elements
line 4 column 1 - Warning: inserting missing 'title' element
line 4 column 1 - Warning: <p> isn't allowed in <head> elements
line 4 column 1 - Warning: inserting missing 'title' element
Info: Doctype given is "-//W3C//DTD XHTML 1.0 Strict//EN"
Info: Document content looks like XHTML 1.0 Strict
2 warnings, 0 errors were found!

参见

  • tidy::errorBuffer()
添加注释

用户贡献的注释

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