Fix CDATA typo

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@63544 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Philip Olson 2001-11-30 22:09:13 +00:00
parent a6f0e37b2d
commit fa7dede319

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.24 $ -->
<!-- $Revision: 1.25 $ -->
<chapter id="language.variables">
<title>Variables</title>
@ -78,6 +78,7 @@ $bar = "My name is $bar"; // Alter $bar...
echo $foo; // $foo is altered too.
echo $bar;
?>
]]>
</programlisting>
</informalexample>
</para>
@ -87,6 +88,7 @@ echo $bar;
assigned by reference.
<informalexample>
<programlisting role="php">
<![CDATA[
<?php
$foo = 25;
$bar = &$foo; // This is a valid assignment.
@ -97,7 +99,7 @@ function test()
return 25;
}
$bar = &amp;test(); // Invalid.
$bar = &test(); // Invalid.
?>
]]>
</programlisting>