是否有 PHP 函数可以在不丢失键的情况下内爆关联数组?
这个问题的标题是不言自明的。
我听说我可以使用 http_build_query 来模拟这一点,但我宁愿使用专门用于此目的的函数。
输入示例:
$assoc = array(
"fruit" => "banana",
"berry" => "blurberry",
"vegetable" => "lettice"
);
所需的输出(我通过 http_build_query 得到这个):
string(46) "fruit=banana,berry=blurberry,vegetable=lettice"
所需反转的输出与输入相同 - 这是我当前的问题。
The title of this question is self-explanatory.
I've heard I can mimic this using http_build_query, but I'd rather use a function that's meant for this.
Input example:
$assoc = array(
"fruit" => "banana",
"berry" => "blurberry",
"vegetable" => "lettice"
);
Desired output (I get this with http_build_query):
string(46) "fruit=banana,berry=blurberry,vegetable=lettice"
output from reversal wanted is the same as input - that's my current problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
内爆与
爆炸与
Implode with
Explode with
在
php
.net
注释中找到内爆
:Found a function in the
php
.net
comments forimplode
: