在 PHP 中将所有数组值以 CSV 形式存储到单个变量中
我有一个包含数字 1-5(有时更多)的数组。数组中的所有成员可以使用php函数foreach
来显示。但是,如何通过将数组存储在单个变量中作为 csv(例如1, 2, 3, 4, 5
)来显示数组的所有成员,从而仅打印该变量?
I have an array containing numbers 1-5 (sometimes more). All the members in the array can be displayed using the php function foreach
. But, how can I display all the members of my array by storing it in a single variable as csv (like1, 2, 3, 4, 5
), and thereby printing that variable only?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用函数
implode()
。例如
查看手册< /a>.
You could use the function
implode()
.For example
Have a look at the Manual.