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

tidy_error_count

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

tidy_error_countReturns the Number of Tidy errors encountered for specified document

Descrizione

tidy_error_count(tidy $tidy): int

Returns the number of Tidy errors encountered for the specified document.

Elenco dei parametri

tidy

L'oggetto Tidy

Valori restituiti

Returns the number of errors.

Esempi

Example #1 tidy_error_count() example

<?php
$html
= '<p>test</i>
<bogustag>bogus</bogustag>'
;

$tidy = tidy_parse_string($html);

echo
tidy_error_count($tidy) . "\n"; //1

echo $tidy->errorBuffer;
?>

Il precedente esempio visualizzerĂ :

1
line 1 column 1 - Warning: missing <!DOCTYPE> declaration
line 1 column 8 - Warning: discarding unexpected </i>
line 2 column 1 - Error: <bogustag> is not recognized!
line 2 column 1 - Warning: discarding unexpected <bogustag>
line 2 column 16 - Warning: discarding unexpected </bogustag>
line 1 column 1 - Warning: inserting missing 'title' element

Vedere anche: