如何将二维数组内爆到方括号中
我想将我的 php 数组输出为以下格式: [1991, 6.5], [1992, 4], [1993, 5.9]
PHP 数组:
while ($row = mysqli_fetch_array($result))
{
$metals[] = array('year' => $row['year'],
'metal' => $row['metal'];
}
我已经看到了 implode 函数的一些示例,但我找不到任何可以匹配的示例我想做的事。
感谢您的帮助。
I would like to output my php array into this format: [1991, 6.5], [1992, 4], [1993, 5.9]
PHP array:
while ($row = mysqli_fetch_array($result))
{
$metals[] = array('year' => $row['year'],
'metal' => $row['metal'];
}
I have seen some examples of implode function but I couldn't find any that could match what I want to do.
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试
Try
我的水晶球建议您想要为 AJAX 事物生成 JSON。如果是这样,我就这么简单:
打印:
My crystal ball suggests you want to generate JSON for an AJAX thingie. If so, i's as easy as this:
Which prints:
array_map 是一个回调函数,您可以在其中使用传递的数组!
这应该有效。
array_map is a call back function, where you can play with the passed array!
this should work.