tidy_error_count

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

tidy_error_count返回指定文档遇到的 Tidy 错误数量

描述

tidy_error_count(tidy $tidy): int

返回为指定文档遇到的 Tidy 错误数量。

参数

tidy

The Tidy 对象。

返回值

返回错误的数量。

示例

示例 #1 tidy_error_count() 示例

<?php
$html
= '<p>test</i>
<bogustag>bogus</bogustag>'
;

$tidy = tidy_parse_string($html);

echo
tidy_error_count($tidy) . "\n"; //1

echo $tidy->errorBuffer;
?>

上面的示例将输出

1
line 1 column 1 - Warning: missing <!DOCTYPE> declaration
line 1 column 8 - Warning: discarding unexpected </i>
line 2 column 1 - Error: <bogustag> is not recognized!
line 2 column 1 - Warning: discarding unexpected <bogustag>
line 2 column 16 - Warning: discarding unexpected </bogustag>
line 1 column 1 - Warning: inserting missing 'title' element

参见

添加注释

用户贡献的注释

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