mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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:
parent
a6f0e37b2d
commit
fa7dede319
1 changed files with 4 additions and 2 deletions
|
@ -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 = &test(); // Invalid.
|
||||
$bar = &test(); // Invalid.
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
|
|
Loading…
Reference in a new issue