在 PHP 中将所有数组值以 CSV 形式存储到单个变量中

发布于 2024-10-20 19:04:50 字数 144 浏览 2 评论 0原文

我有一个包含数字 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

·深蓝 2024-10-27 19:04:50

您可以使用函数 implode()

例如

$csv_var = implode(', ', $array);

查看手册< /a>.

You could use the function implode().

For example

$csv_var = implode(', ', $array);

Have a look at the Manual.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文