CS and corrected HTML

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@152528 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Mehdi Achour 2004-02-27 11:01:35 +00:00
parent 409b9de372
commit b43642edeb

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.13 $ -->
<!-- $Revision: 1.14 $ -->
<reference id="ref.zlib">
<title>Zlib Compression Functions</title>
<titleabbrev>Zlib</titleabbrev>
@ -67,7 +67,7 @@
<![CDATA[
<?php
$filename = tempnam('/tmp', 'zlibtest').'.gz';
$filename = tempnam('/tmp', 'zlibtest') . '.gz';
echo "<html>\n<head></head>\n<body>\n<pre>\n";
$s = "Only a test, test, test, test, test, test, test, test!\n";
@ -97,7 +97,7 @@ if (readgzfile($filename) != strlen($s)) {
echo "Error with zlib functions!";
}
unlink($filename);
echo "</pre>\n</h1></body>\n</html>\n";
echo "</pre>\n</body>\n</html>\n";
?>
]]>