是否有 PHP 函数可以在不丢失键的情况下内爆关联数组?

发布于 2024-09-25 12:59:42 字数 397 浏览 2 评论 0原文

这个问题的标题是不言自明的。

我听说我可以使用 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 技术交流群。

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

发布评论

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

评论(2

め可乐爱微笑 2024-10-02 12:59:42

内爆与

serialize($array);

爆炸与

unserialize($array);

Implode with

serialize($array);

Explode with

unserialize($array);
你的笑 2024-10-02 12:59:42

php .net 注释中找到 内爆

function implode_with_key($glue = null, $pieces, $hifen = ',') {
    $return = null;
    foreach ($pieces as $tk => $tv) $return .= $glue.$tk.$hifen.$tv;
    return substr($return,1);
}

Found a function in the php .net comments for implode:

function implode_with_key($glue = null, $pieces, $hifen = ',') {
    $return = null;
    foreach ($pieces as $tk => $tv) $return .= $glue.$tk.$hifen.$tv;
    return substr($return,1);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文