ru_php/ext/tidy/tests/026.phpt

29 lines
325 B
PHP

--TEST--
tidy.clean_output test
--EXTENSIONS--
tidy
--SKIPIF--
<?php
if (getenv('SKIP_PRELOAD')) die('skip Output handler interferes');
?>
--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>