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