Home > Backend Development > PHP Tutorial > 怎么修改代码达到以下结果

怎么修改代码达到以下结果

WBOY
Release: 2016-06-13 11:31:45
Original
809 people have browsed it

如何修改代码达到以下结果

本帖最后由 lazygc520 于 2013-08-12 12:00:23 编辑
	$sql2 = "SELECT stock_no, cust_no, mount FROM `stock_detail` where stock_no = '".$stockno[$j-1]."' ORDER BY arr_time, adress, c_type ASC";<br />	$result2 = mysql_query($sql2);<br />	while($v2 = mysql_fetch_array($result2,MYSQL_ASSOC)) {<br />		$v2[] = array_splice($a[$v2['stock_no']], 0, 13); <br />	$val_1 = implode(",",$v2['0']);<br />	echo $val_1.'<br />';<br />}
Copy after login


结果如下:
VP3.0 130219001,VP3.0 130219002,VP3.0 130219003,VP3.0 130219004,VP3.0 130219005,VP3.0 130219006,VP3.0 130219007,VP3.0 130219008,VP3.0 130219009,VP3.0 130219010,VP3.0 130219011,VP3.0 130219012,VP3.0 130219013<br />VP3.0 130219014,VP3.0 130219015,VP3.0 130219016,VP3.0 130219017,VP3.0 130219018,VP3.0 130219019,VP3.0 130219020,VP3.0 130219021,VP3.0 130219022,VP3.0 130219023,VP3.0 130219024,VP3.0 130219107,VP3.0 130219108<br />
Copy after login


如何变成:
'VP3.0 130219001','VP3.0 130219002','VP3.0 130219003','VP3.0 130219004','VP3.0 130219005','VP3.0 130219006','VP3.0 130219007','VP3.0 130219008','VP3.0 130219009','VP3.0 130219010','VP3.0 130219011','VP3.0 130219012','VP3.0 130219013'<br />'VP3.0 130219014','VP3.0 130219015','VP3.0 130219016','VP3.0 130219017','VP3.0 130219018','VP3.0 130219019','VP3.0 130219020','VP3.0 130219021','VP3.0 130219022','VP3.0 130219023','VP3.0 130219024','VP3.0 130219107','VP3.0 130219108'<br />
Copy after login

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