0

我在一个数组中有一个值,我不确定如何引用。

如果我这样显示数组:

 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。

4

1 回答 1

2
$this->contents[$products_id]['attributes'][2]
于 2013-05-27T15:19:23.037 回答