PHP
Referenzliste
tidy_error_count
Tidy Funktionen
Befehl:
int tidy_error_count ( tidy $object )
Parameter-Liste:
Beschreibung | |
---|---|
Das Tidy Objekt. |
Rückgabewerte:
Gibt die Anzahl der Fehler aus.
Beschreibung:
Gibt die Anzahl der Tidy-Fehler für das angegebene Dokument gestossen.
Aktiv in Version:
(PHP 5, PECL tidy >= 0.5.2, PHP 7)
Siehe auch:
Liefert die Anzahl der Tidy Zugänglichkeit Warnungen für bestimmte Dokument angetroffen
Liefert die Anzahl der Tidy Warnungen für bestimmte Dokument angetroffen
tidy_error_count() - Beispiel:
Eingabe:
<?PHP $html = '<p>test</i> <bogustag>bogus</bogustag>'; $tidy = tidy_parse_string($html); echo tidy_error_count($tidy) . "\n"; //1 echo $tidy->errorBuffer; ?>
Ausgabe:
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
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
Tidy Funktionen