我试图引用"建议"这个嵌套数组中的变量,因为它从for循环中吐出。 $ _SESSION ["产品"] - >建议,不起作用。在SO上还有其他类似问题,但答案很难理解。 for循环如下。
array(1) {
["products"]=>
array(1) {
[0]=>
array(9) {
["name"]=>
string(20) "m10x1-5-001 IVB bolt"
["code"]=>
string(11) "m10x1-5-001"
["qty"]=>
string(1) "1"
["weight"]=>
string(3) ".03"
["price"]=>
string(5) "37.00"
["image"]=>
string(80) "/images/ProductPhotosLR/m101-5-001/m10x1-5-001-S.jpg"
["description"]=>
string(39) "This is a short description of my item."
["suggested"]=>
string(18) "IVB-METRIC-INSTALL"
["suggestedtext"]=>
string(80) "First time owners of ....."
}
}
}
我试图使用的循环:(购物车会话中的每个商品都有可能附加的建议商品)for循环工作正常,如果语句被破坏。
if(!empty($_SESSION["products"]->suggested)) {
echo '<div id="products-wrapper"><h1>Suggested Items</h1><div class="view-cart">';
echo '<table width="750" cellpadding="0" cellspacing="0" style="text-align:center;padding:5px;">';
foreach ($_SESSION["products"] as $cart_itm)
{
echo '<tr><td>'.$cart_itm['suggested'].' '.$cart_itm['suggestedtext'].'</td></tr>';
}
echo '</table></div></div>';
}
答案 0 :(得分:0)
你可以&#34;链&#34;嵌套数组的键或索引就像访问对象的属性一样
$_SESSION["products"]["suggested"]
应该帮助您解决问题