- Fix quotes

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@61582 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Derick Rethans 2001-11-05 12:29:20 +00:00
parent 589ce16beb
commit 4b2d2d1b0d

View file

@ -1,5 +1,5 @@
<?xml encoding="iso-8859-1"?>
<!-- $Revision: 1.59 $ -->
<!-- $Revision: 1.60 $ -->
<chapter id="language.types">
<title>Types</title>
@ -1156,8 +1156,8 @@ $arr[] = <replaceable>value</replaceable>;
You might have seen the following syntax in old scripts:
<informalexample>
<programlisting role="php">
$foo[bar] = 'enemy';
echo $foo[bar];
$foo['bar'] = 'enemy';
echo $foo['bar'];
// etc
</programlisting>
</informalexample>