1 2 3 4 5 6 |
$dom = new DOMDocument(); $dom->preserveWhiteSpace = false; $dom->loadHTML($html); $dom->formatOutput = TRUE; echo $dom->saveHTML(); |
PHP: HTML-Quelltext formatieren
02.09.2020 15:33
1 2 3 4 5 6 |
$dom = new DOMDocument(); $dom->preserveWhiteSpace = false; $dom->loadHTML($html); $dom->formatOutput = TRUE; echo $dom->saveHTML(); |
Schreibe einen Kommentar