Revert this, this is an example of how it _shouldn't_ be done.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@61598 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jeroen van Wolffelaar 2001-11-05 21:59:11 +00:00
parent ac24754061
commit 2a559cb38e

View file

@ -1,5 +1,5 @@
<?xml encoding="iso-8859-1"?>
<!-- $Revision: 1.60 $ -->
<!-- $Revision: 1.61 $ -->
<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>