如何在数组中引用值

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

如果我告诉数组是这样的:

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

回答:

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

以上是 如何在数组中引用值 的全部内容, 来源链接: utcz.com/qa/262269.html

回到顶部