递归数组键替换

发布于 2024-09-16 00:19:43 字数 324 浏览 2 评论 0原文

我有一个相当大的递归数组,其中包含混合数字和字符串键。

将数字键替换为字符串键(每个数字前加上 item_ 前缀)的最快方法是什么?

例如。

array('key_1' => 'val1', 2 => array( 3 => 'val3'));

我希望

array('key_1' => 'val1', 'item_2' => array('item_3' => 'val3'));

项目的顺序保持不变。

I have quite big recursive array with mixed numeric and string keys.

Which is the fastest way to replace the numeric keys with string keys (prefix each numeric with item_)?

eg.

array('key_1' => 'val1', 2 => array( 3 => 'val3'));

to

array('key_1' => 'val1', 'item_2' => array('item_3' => 'val3'));

I want the order of the items remain the same.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

悲凉≈ 2024-09-23 00:19:43
function replace_numeric_keys(&$array) {
    $result = array();
    foreach ($array as $key => $value) {
        if (is_int($key)) $key = "item_$key";
        if (is_array($value)) $value = replace_numeric_keys($value);
        $result[$key] = $value;
    }
    return $result;
}
function replace_numeric_keys(&$array) {
    $result = array();
    foreach ($array as $key => $value) {
        if (is_int($key)) $key = "item_$key";
        if (is_array($value)) $value = replace_numeric_keys($value);
        $result[$key] = $value;
    }
    return $result;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文