Home  >  Article  >  Backend Development  >  怎么把一个数组变成一串字符串

怎么把一个数组变成一串字符串

WBOY
WBOYOriginal
2016-06-23 14:16:141155browse

array(aa,bb,cc,dd)
我想把数组变成一个字符串,用逗号分割,我印象中好像有个函数的。
“aa,bb,cc,dd”


回复讨论(解决方案)

implode($array, ',');

implode/join

都不看手册的吗?

首先遇到问题你的去查找手册。。。

嗯,其实大部分的问题看手册都能解决的,自己解决之后才有收获。

用implode函数

各位大神都说的什么???

$new= implode('',array('a','b','c','d','e','f','g')); 合并和取出的代码如下,
$new=implode("|",array(a,b,c,d,e,f,g));
echo "变量值为:";
echo $new;
echo "
\n";
//将变量拆分成数组
$b=explode('|',$new);
foreach ($b as $key => $value) {  
  echo "数组 $key 的值= $value
\n";
}?> 

$a = array(aa,bb,cc,dd);
echo implode($a,',');
??就可以了啊

还是翻手册去吧...基础呀...

用js里面的join函数把

这问题问的真幼稚,随便百度下,不就有的。

implode/join

+++++++11111111

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