我如何通過一個數組通過函數,例如:功能與數組變量
$data = array(
'color' => 'red',
'height' => 'tall'
);
something($data);
function something($data) {
if ($data['color'] == 'red') {
// do something
}
}
我怎樣才能獲得的功能識別$data[color]
和$data[height]
?
你的意思是你需要的功能是能夠修改數組嗎? – 2010-06-08 06:15:14
我需要函數來理解$ data [color]等於紅色。這樣我就可以使用:函數 – Booski 2010-06-08 06:17:16
中的if($ data [color] =='red'){做某事},你已經有了你的函數。它有什麼問題? – 2010-06-08 06:21:15