tidy_access_count
tidy_access_count
(PHP 5, PHP 7, PECL tidy >= 0.5.2)
tidy_access_count - 返回指定文档遇到的Tidy辅助功能警告的数量
描述
int tidy_access_count ( tidy $object )
tidy_access_count()
返回为指定文档找到的辅助功能警告的数量。
参数
object
整洁的对象。
返回值
返回警告的数量。
例子
Example #1 tidy_access_count() example
<?php
$html ='<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html><head><title>Title</title></head>
<body>
<p><img src="img.png"></p>
</body></html>';
// select the accessibility check level: 1, 2 or 3
$config = array('accessibility-check' => 3
$tidy = new tidy(
$tidy->parseString($html, $config
$tidy->cleanRepair(
/* Never forget to call this! */
$tidy->diagnose(
echo tidy_access_count($tidy //5
?>
注意
注
:由于TidyLib的设计,你必须调用tidy_diagnose()之前tidy_access_count()
,否则将始终返回0
。您还必须启用可访问性检查
选项。