我在一个数组中有一个值,我不确定如何引用。
如果我这样显示数组:
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。