PHP Doku:: Returns the Number of Tidy configuration errors encountered for specified document - function.tidy-config-count.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenTidyTidy Funktionentidy_config_count

Ein Service von Reinhard Neidl - Webprogrammierung.

Tidy Funktionen

<<tidy_access_count

tidy_error_count>>

tidy_config_count

(PHP 5, PECL tidy >= 0.5.2)

tidy_config_countReturns the Number of Tidy configuration errors encountered for specified document

Beschreibung

int tidy_config_count ( tidy $object )

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

Parameter-Liste

object

The Tidy object.

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


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",...)