循环中间加入字符的问题

WBOY
Release: 2016-06-23 14:21:22
Original
1009 people have browsed it

我从数据库中去读
while ($down=mysql_fetch_array($downser)){     

$kb_data_glay.= $down[goods_sn].'$'.$down[goods_name];

}

数据两条以上时中间需要加入‘,’如果直接写

$kb_data_glay.= $down[goods_sn].'$'.$down[goods_name]."','";

这样最后一条又多了一个 怎么写才能避免?


回复讨论(解决方案)

while ($down=mysql_fetch_array($downser)){       $kb_data_glay .= $down[goods_sn].'$'.$down[goods_name]."','";}$kb_data_glay = substr($kb_data_glay, 0, -1);
Copy after login

while ($down=mysql_fetch_array($downser)){       $kb_data_glay[] = $down[goods_sn].'$'.$down[goods_name];}$kb_data_glay = join(',', $kb_data_glay);
Copy after login

是一样的

多谢版主大大~我怎么就忘记这个截取的了呢~
第二个代码 还没想通 慢慢想想!

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