PHP Doku:: Returns the Number of Tidy warnings encountered for specified document - function.tidy-warning-count.html

Verlauf / Chronik / History: (50) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenTidyTidy Funktionentidy_warning_count

Ein Service von Reinhard Neidl - Webprogrammierung.

Tidy Funktionen

<<tidy_setopt

Tokenizer Funktionen>>

tidy_warning_count

(PHP 5, PECL tidy >= 0.5.2)

tidy_warning_countReturns the Number of Tidy warnings encountered for specified document

Beschreibung

int tidy_warning_count ( tidy $object )

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

Parameter-Liste

object

The Tidy object.

Rückgabewerte

Returns the number of warnings.

Beispiele

Beispiel #1 tidy_warning_count() example

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

$tidy tidy_parse_string($html);

echo 
tidy_error_count($tidy) . "\n"//1
echo tidy_warning_count($tidy) . "\n"//5
?>

Siehe auch

  • tidy_error_count() - Returns the Number of Tidy errors encountered for specified document
  • tidy_access_count() - Returns the Number of Tidy accessibility warnings encountered for specified document


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)