table('goods_attr') .'where "/> table('goods_attr') .'where ">
Home >Backend Development >PHP Tutorial > PHP数组混写输出HTML代码,该如何处理
PHP数组混写输出HTML代码
$sql = "SELECT attr_value, thumb_url "." FROM " . $GLOBALS['ecs']->table('goods_attr')<br /> .'where goods_id='.$row['goods_id'].' and attr_id=185 order by attr_value asc';<br /> $cm = $GLOBALS['db']->getAll($sql); <br /> $ys_arr=array();<br /> $ysimg_arr=array();<br /> foreach ($cm as $val)<br /> {<br /> $ys_arr[$val['attr_value']] = $val['attr_value'];<br /> $ysimg_arr[$val['thumb_url']] = $val['thumb_url'];<br /> }<br /> $arr[$row['goods_id']]['attr_value'] =implode('、',$ys_arr);<br /> $arr[$row['goods_id']]['thumb_url'] =implode(' ',$ysimg_arr);