我有一个数组
apple
color: red
price: 2
orange
color: orange
price: 3
banana
color: yellow
price: 2
当我得到input
时,让我们说green apple
如何检查它是否存在于数组中并显示其数据(如果存在)。
答案 0 :(得分:1)
$fruits = array(
'apple' => array(
'color' => 'green',
'price' => 3
),
'banana' => array(
'color' => 'yelo',
'price' => 2
),
);
这?
您可以使用$fruits[$fruit_name];