tidy_config_count --
Returns the Number of Tidy configuration errors encountered for specified document
Syntax
int tidy_config_count ( tidy object )
tidy_config_count() returns the number of errors
encountered in the configuration of the specified tidy
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); ?>
Php tidy config count Function syntax tag
tidy config count php code on this is provided for your study purpose, it will guide you to know how create and design a website using php. use it to practice and train your self online
Php tidy config count syntax tutorial
php tutorial guide and code design are for easy learning and programming. The code practice section provided at the top is for practising of this syntax. Use the code section up to practice your php programming online. Learning php is very easy, all you need is to use the examples on this site and practice them to perfect your skills.