dismiss Step into the future! Click here to switch to the beta php.net site
downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

tidy_error_count> <tidy_access_count
[edit] Last updated: Fri, 28 Jun 2013

view this page in

tidy_config_count

(PHP 5, PECL tidy >= 0.5.2)

tidy_config_countReturns the Number of Tidy configuration errors encountered for specified document

Description

int tidy_config_count ( tidy $object )

Returns the number of errors encountered in the configuration of the specified tidy object.

Parameters

object

The Tidy object.

Return Values

Returns the number of errors.

Examples

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);
?>



add a note add a note User Contributed Notes tidy_config_count - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites