- Fixed bug #44843 (Example error)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@258542 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Felipe Pena 2008-04-26 22:17:28 +00:00
parent 16a748328a
commit e42f9f66c3

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 1.3 $ -->
<!-- $Revision: 1.4 $ -->
<refentry xml:id="reserved.variables.environment" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
@ -73,7 +73,7 @@
<programlisting role="php">
<![CDATA[
<?php
echo 'My username is ' .$_ENV["user"] . '!';
echo 'My username is ' .$_ENV["USER"] . '!';
?>
]]>
</programlisting>