我用数组定义了一个常量。
CONST DEFAULT_PRICES = array(30, 20, 10);
现在我已经在下面的函数中使用了此常量:
foreach ($workingDays as $selectedDate) {
//get the index
$index = array_search($selectedDate, $workingDays);
$price = $basePrice + ($basePrice * self::DEFAULT_PRICES[$index ] / 100);
$price = sprintf("%.2f", $price);
$dateArr[$selectedDate] = $basePrice;
}
但是我收到错误消息:Undefined offset:3
有人可以告诉我为什么吗?