mirror of
https://github.com/php/php-src.git
synced 2025-01-26 21:54:16 +08:00
25 lines
313 B
PHP
25 lines
313 B
PHP
--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>
|
|
--EXPECT--
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
|
<html>
|
|
<head>
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
<p>xpto</p>
|
|
</body>
|
|
</html>
|