我在数组中有一个值,我不知道如何引用。
如果我这样显示数组:
while (list($option, $value) = each($this->contents[$products_id]['attributes'])) {
print_r( $this->contents[$products_id]['attributes']); echo "<br/>";
}
我得到以下输出:
Array ( [5] => 115 [2] => 17 )
Array ( [5] => 115 [2] => 17 )
我需要的价值是17。
答案 0 :(得分:2)
$this->contents[$products_id]['attributes'][2]