将数组变成一个长字符串
如果我在 php 中有一个包含简单列表的数组,例如:
$colors = $array();
$colors = 'black', 'white', 'blue', 'red';
是否有函数或方法可以循环数组以使变量等于结果的字符串?
例如:
$theseColors = 'black, white, blue, red';
干杯!
If I have an array in php that contains a simple list e.g:
$colors = $array();
$colors = 'black', 'white', 'blue', 'red';
Is there a function or a way to loop through the array to make a variable equal a STRING of the results?
For example:
$theseColors = 'black, white, blue, red';
Cheers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
试试这个,
http://php.net/manual/en/function.implode.php< /a>.
Try this,
http://php.net/manual/en/function.implode.php.
行不通的。这是一个错误。这是正确的:
然后
won't work. it's an error here. this is correct:
and then
加入/内爆...
Join / implode...