Home  >  Article  >  Backend Development  >  foreach 输出遇到的问题,求各位老师解决

foreach 输出遇到的问题,求各位老师解决

WBOY
WBOYOriginal
2016-06-23 13:36:39964browse

$citycode = array("北京"=>"101010100","海淀"=>"101010200","朝阳"=>"101010300");

foreach ($citycode as $arr) {

echo $arr.'\\n';
}
saveFile('file.txt',$arr);

我希望file.txt里的内容为:

101010100,101010200,101010300


这个$arr要怎么写?


回复讨论(解决方案)

<?php$citycode = array("北京"=>"101010100","海淀"=>"101010200","朝阳"=>"101010300");foreach ($citycode as $arr => $value) {    $citycode[$arr] .= ',';}// saveFile('file.txt',$arr);file_put_contents('file.txt', $citycode);?>

这样岂不是更简单

$arr = implode(',', $citycode);saveFile('file.txt',$arr);

这样岂不是更简单

$arr = implode(',', $citycode);saveFile('file.txt',$arr);



居然忘了这个函数。。。

$citycode = array("北京"=>"101010100","海淀"=>"101010200","朝阳"=>"101010300");saveFile('file.txt',implode(',',$citycode));

其实我就是在想jordan102的,我写JS写多了,脑子尽然一天没转过弯来。

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