从字符串创建数组
我需要创建这样的数组:
Array('firstkey' => Array('secondkey' => Array('nkey' => ...)))
从此:
firstkey.secondkey.nkey.(...)
I need to create array like that:
Array('firstkey' => Array('secondkey' => Array('nkey' => ...)))
From this:
firstkey.secondkey.nkey.(...)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我对此的看法:
在 while 循环中使用
array_push()
。您希望最深的密钥的值是多少?
My take on this:
With an
array_push()
in the while loop.What do you want the value of the deepest key to be?
尝试类似的方法:
Try something like: