array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'de', ), 'this' => array ( 0 => 'function.tidy-config-count.php', 1 => 'tidy_config_count', 2 => 'Returns the Number of Tidy configuration errors encountered for specified document', ), 'up' => array ( 0 => 'ref.tidy.php', 1 => 'Tidy Funktionen', ), 'prev' => array ( 0 => 'function.tidy-access-count.php', 1 => 'tidy_access_count', ), 'next' => array ( 0 => 'function.tidy-error-count.php', 1 => 'tidy_error_count', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/tidy/functions/tidy-config-count.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

tidy_config_count

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

tidy_config_countReturns the Number of Tidy configuration errors encountered for specified document

Beschreibung

tidy_config_count(tidy $tidy): int

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

Parameter-Liste

tidy

Das Tidy Objekt.

Rückgabewerte

Returns the number of errors.

Beispiele

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