PHP
HTML

tidy_warning_count

tidy_warning_count

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

tidy_warning_count - 返回指定文档遇到的整数警告数

描述

int tidy_warning_count ( tidy $object )

返回指定文档遇到的Tidy警告的数量。

参数

object

整洁的对象。

返回值

返回警告的数量。

例子

Example #1 tidy_warning_count() example

<?php $html = '<p>test</i> <bogustag>bogus</bogustag>'; $tidy = tidy_parse_string($html echo tidy_error_count($tidy) . "\n"; //1 echo tidy_warning_count($tidy) . "\n"; //5 ?>

← tidy_setopt

Tokenizer →