$sql = "SELECT attr_value, thumb_url "." FROM " . $GLOBALS['ecs']->table('goods_attr') .'where goods_id='.$row['goods_id'].' and attr_id=185 order by attr_value asc'; $cm = $GLOBALS['db']->getAll($sql); $ys_arr=array(); $ysimg_arr=array(); foreach ($cm as $val) { $ys_arr[$val['attr_value']] = $val['attr_value']; $ysimg_arr[$val['thumb_url']] = $val['thumb_url']; } $arr[$row['goods_id']]['attr_value'] =implode('、',$ys_arr); $arr[$row['goods_id']]['thumb_url'] =implode(' ',$ysimg_arr);
不知道你要做什么
不知道你要做什么
thumb_url这个值现在输出的是图片完整地址,我想加入
混写入HTML输出
$ysimg_arr[$val['thumb_url']] = "";
$ysimg_arr[$val['thumb_url']] = "";
多谢
大括号少了个