如何在数组中引用值

时间:2013-05-27 15:17:37

标签: php arrays

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

如果我这样显示数组:

 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。

1 个答案:

答案 0 :(得分:2)

$this->contents[$products_id]['attributes'][2]