The Server Pages
:: TSP Menu
- Home
- Authors
- Glossary
- RSS Feed

:: Servers
- CPanel
- Hosting
- Linux
- Windows

:: Webmaster
- Databases
- Design
- PHP
- Search Engines

:: Scripts
- Scripts

:: Documentation
- PHP Manual

:: Other
- Errors & Solutions
- TechPunt
- Wojjie

search for in the

tidy_error_count> <tidy_access_count
[edit] Last updated: Sat, 12 May 2012

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
There are no user contributed notes for this page.

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