如何一次回显 php 数组的所有元素?
嗨,朋友们,我有一个 php 数组,例如。
$mob_numbers= array(12345674, 12345675, 12345676,12345677);
我想一次将它们全部取出,以便显示
12345674,12345675,12345676,12345677
(with comma) 。
我该怎么做?我尝试了数组爆炸,但没有成功。请帮忙
hi friends I have a php array for eg.
$mob_numbers= array(12345674, 12345675, 12345676,12345677);
I want to eacho out all of them at once so that it appears
12345674,12345675,12345676,12345677
(with comma) .
How do i do it ? I tried array explode, didn't work. Pls help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用
implode
函数即可:explode
用于分割字符串
以获取数组
implode
与连接数组
相反元素来获取字符串
。Just use
implode
function as:explode
is used to split astring
to get anarray
implode
does the opposite of joining thearray
elements to get astring
.