turned constant into ''

months -> 'months'


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@45414 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Damien Seguy 2001-04-17 15:03:11 +00:00
parent e34737e2a1
commit 1bf58d5972

View file

@ -367,9 +367,9 @@ $today = date("H:i:s"); // 17:16:17
</title>
<programlisting>
$today = getdate();
$month = $today[month];
$mday = $today[mday];
$year = $today[year];
$month = $today['month'];
$mday = $today['mday'];
$year = $today['year'];
echo "$month $mday, $year";
</programlisting>
</example>