怎样用PHP标签调用foreach里的变量

2024-12-20 08:19:20
推荐回答(2个)
回答1:


    $smarty->assign('goods_cat_' . $rec_cat[id],
assign_cat_goods($rec_cat[id], 4));
  $smarty ->assign('cat_goods_nf' , 'goods_cat_' . $rec_cat[id]);
  ?>
  
  {$goods.url}
  
  
  整个代码的作用是,获取子分类,并显示子分类里的商品

回答2:

在同一个函数里的话foreach里的变量是可以直接使用的