我的情況下是我有一個項目的價格的範圍千克的訪問數組值,像PHP陣列,由一系列索引
price in range 0.01-0.04 is 5
price in range 0.05-0.09 is 30
price in range 0.1-0.15 is 50
這裏是陣列的樣品等我想
$prices = array("0.01-0.04"=>5,"0.05-0.09"=>30);
現在我想做一個數組,所以當用戶輸入0.02 it should return price in range 0.01-0.04
這是5,同樣如果用戶input 0.07 so it should return 30
。
如何在PHP中通過一系列索引訪問數組?
你必須去if語句 – tinybyte
我知道,但他們很多條件的,我通過索引希望它更快的搜索... –
這是一個範圍條件,我不知道你是否可以用數組實現這個 – tinybyte