我正在尝试使用和数组打印出月份名称的前三个字母(我知道我可以使用 date() 来做到这一点,但我正在学习 PHP 中的数组,这似乎最简单)。每次我运行底部的代码时,我都会收到下面的错误代码。
注意:未定义的偏移量:第 17 行 C:\Documents and Settings\Garry\My Documents\Dropbox\htdocs\Web-Apps\Locander2\Alpha\step2.php 中的 8
只有在$monthArray[]
.
<?php
$monthArray = array(01 => "Jan",
02 => "Feb",
03 => "Mar",
04 => "Apr",
05 => "May",
06 => "Jun",
07 => "Jul",
08 => "Aug",
09 => "Sep",
10 => "Oct",
11 => "Nov",
12 => "Dec"
);
echo $monthArray[8];
?>