PHP Doku:: Beispiele - tidy.examples.basic.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenTidyBeispieleBeispiele

Ein Service von Reinhard Neidl - Webprogrammierung.

Beispiele

<<Beispiele

The Tidy class>>

Beispiele

This simple example shows basic Tidy usage.

Beispiel #1 Basic Tidy usage

<?php
ob_start
();
?>
<html>a html document</html>
<?php
$html 
ob_get_clean();

// Specify configuration
$config = array(
           
'indent'         => true,
           
'output-xhtml'   => true,
           
'wrap'           => 200);

// Tidy
$tidy = new tidy;
$tidy->parseString($html$config'utf8');
$tidy->cleanRepair();

// Output
echo $tidy;
?>


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
Brad
3.03.2009 21:50
Cleaning an html fragment (OO support seems to half-arsed for now)

This will ensure all tags are closed, without adding any html/head/body tags around it.

<?php
$tidy_config
= array(
                    
'clean' => true,
                    
'output-xhtml' => true,
                    
'show-body-only' => true,
                    
'wrap' => 0,
                    
                     );

$tidy = tidy_parse_string($html_fragment, $tidy_config, 'UTF8');
$tidy->cleanRepair();
echo
$tidy;
?>



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