从const获取数组的数组项的未定义偏移量

时间:2019-04-29 08:27:44

标签: php

我用数组定义了一个常量。

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

有人可以告诉我为什么吗?

0 个答案:

没有答案