PHP 部分代码不清楚 不明白 求高手解释

$select="selectid,shoppingfromtb_userwherename='".$_SESSION['member']."'";$rst=$admin... $select = "select id,shopping from tb_user where name ='".$_SESSION['member']."'";
$rst = $admindb->ExecSQL($select,$conn);
if($rst[0]['shopping']==""){
echo "<p>";
echo '购物车中暂时没有商品!';
exit();
}
$commarr = array();
foreach($rst[0] as $value){
$tmpnum = explode('@',$value);
$shopnum = count($tmpnum); //商品类数
$sum = 0;
foreach($tmpnum as $key => $vl){
$s_commo = explode(',',$vl);
$sql2 = "select id,name,m_price,fold,v_price from tb_commo";
$commsql = $sql2." where id = ".$s_commo[0];
$arr = $admindb->ExecSQL($commsql,$conn);
@$arr[0]['num'] = $s_commo[1];
@$arr[0]['total'] = $s_commo[1]*$arr[0]['v_price'];
$sum += $arr[0]['total'];
$commarr[$key] = $arr[0];
}

}
$smarty->assign('shoparr',$shopnum);
$smarty->assign('commarr',$commarr);
$smarty->assign('sum',$sum);
?>
这部分代码求解释
$commarr = array();
foreach($rst[0] as $value){
$tmpnum = explode('@',$value);
$shopnum = count($tmpnum); //商品数量
$sum = 0;
foreach($tmpnum as $key => $vl){ 求解释
$s_commo = explode(',',$vl);求解释
$sql2 = "select id,name,m_price,fold,v_price from tb_commo";
$commsql = $sql2." where id = ".$s_commo[0]; 求解释
$arr = $admindb->ExecSQL($commsql,$conn);
@$arr[0]['num'] = $s_commo[1];//求解释
@$arr[0]['total'] = $s_commo[1]*$arr[0]['v_price'];

$sum += $arr[0]['total']; 求解释

解释是很多 ,但是对我有用 重要
展开
 我来答
yuanzelin8
2013-09-03
知道答主
回答量:63
采纳率:0%
帮助的人:19万
展开全部
foreach($tmpnum as $key => $vl){ 循环数组$tmpnum
$s_commo = explode(',',$vl);把字符串$vl以分号分割为数组
$commsql = $sql2." where id = ".$s_commo[0]; sql语句拼接,s_commo[0]取数组中第1个
@$arr[0]['num'] = $s_commo[1];增加arr数组一个属性num并赋值

$sum += $arr[0]['total']; 总和累加
友文变成水
2013-09-03 · 超过12用户采纳过TA的回答
知道答主
回答量:50
采纳率:0%
帮助的人:13.8万
展开全部
foreach($tmpnum as $key => $vl) foreach是对数据循环 key与vl分别对应 $tmpnum['key']=>$vl;

$commsql = $sql2." where id = ".$s_commo[0]; 等于
$commsql =“select id,name,m_price,fold,v_price from tb_commo where id = $s_commo[0]“;

@$arr[0]['num'] = $s_commo[1]; 是不要报错

$sum += $arr[0]['total']; 等于 $sum =$sum + $arr[0]['total'];
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式