tidy_config_count
tidy_config_count
(PHP 5, PHP 7, PECL tidy >= 0.5.2)
tidy_config_count - 返回指定文档遇到的Tidy配置错误的数量
描述
int tidy_config_count ( tidy $object )
返回配置指定整数时遇到的错误数object
。
参数
object
整洁的对象。
返回值
返回错误的数量。
例子
Example #1 tidy
_
config
_
count() example
<?php
$html = '<p>test</I>';
$config = array('doctype' => 'bogus'
$tidy = tidy_parse_string($html, $config
/* This outputs 1, because 'bogus' isn't a valid doctype */
echo tidy_config_count($tidy
?>
← tidy_access_count
tidy_error_count →