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

WBOY
Release: 2016-06-13 12:30:59
Original
883 people have browsed it

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);
Copy after login



thumb_url另外输出的值增加HTML代码,直接将图片显示出来
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template