我有一個類中的數組,想獲得'Apple'鍵值('iPhone')。 我假設每個循環都需要使用。PHP如何從多維數組中獲取值?
我該怎麼做呢?
更新:我還需要指定customerType和productType鍵值。
class Products {
public function products_list() {
$customerType = 'national';
$productType = 'phones';
$phoneType = 'Apple';
$productsArr = array();
$productsArr[] = array(
'customerType' => 'national',
'productType' => array(
'phones' => array(
'Apple' => 'iPhone',
'Sony' => 'Xperia',
'Samsung' => 'Galaxy'
),
'cases' => array(
'leather' => 'black',
'plastic' => 'red',
),
),
'international' => array(
'phones' => array(
'BlackBerry' => 'One',
'Google' => 'Pixel',
'Samsung' => 'Note'
),
'cases' => array(
'leather' => 'blue',
'plastic' => 'green'
),
)
);
}
}
這會來多次inisde主陣列或只有一次? –
您是否嘗試過使用該foreach,但它不起作用? – AllisonC
它可以在主陣列中多次。 – ianhman