s/<br>/&lt;br&gt;/

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@43569 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jesus M. Castagnetto 2001-03-15 11:13:40 +00:00
parent 320380e492
commit f67149cceb

View file

@ -177,12 +177,12 @@ $bzstr = bzcompress($start_str);
print( "Compressed String: " );
print( $bzstr );
print( "\n<br>\n" );
print( "\n&lt;br&gt;n" );
$str = bzdecompress($bzstr);
print( "Decompressed String: " );
print( $str );
print( "\n<br>\n" );
print( "\n&lt;br&gt;n" );
?>
</programlisting>
</example>
@ -339,7 +339,7 @@ $decompressed_file = bzread($bz, filesize("/tmp/foo.bz2"));
bzclose($bz);
print( "The contents of /tmp/foo.bz2 are: " );
print( "\n<br>\n" );
print( "\n&lt;br&gt;n" );
print( $decompressed_file );
?>
</programlisting>