PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

tidy> <Stałe predefiniowane
Last updated: Fri, 27 Jun 2008

view this page in

Przykłady

Przykłady

Ten prosty przykład pokazuje podstawowe użycie Tidy.

Example #1 Podstawowe użycie Tidy

<?php
ob_start
();
?>
<html>przykładowy dokument html</html>
<?php
$html 
ob_get_clean();

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

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

// wynik
echo $tidy;
?>



add a note add a note User Contributed Notes
Przykłady
There are no user contributed notes for this page.

tidy> <Stałe predefiniowane
Last updated: Fri, 27 Jun 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites