Home  >  Article  >  Backend Development  >  PHP数组混写输出HTML代码解决方法

PHP数组混写输出HTML代码解决方法

WBOY
WBOYOriginal
2016-06-13 11:43:11906browse

PHP数组混写输出HTML代码

本帖最后由 iyangquan 于 2013-12-21 14:12:43 编辑
		 $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);



thumb_url另外输出的值增加HTML代码,直接将图片显示出来
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn