1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
--TEST-- tidy.clean_output test --SKIPIF-- <?php if (!extension_loaded('tidy')) die('skip'); ?> --INI-- tidy.clean_output=1 --FILE-- <html> <?php echo '<p>xpto</p>'; ?> </html> --EXPECTF-- <!DOCTYPE html%S> <html> <head> <title></title> </head> <body> <p>xpto</p> </body> </html>