douyun8885 2014-09-26 13:31
浏览 64
已采纳

如何替换多维数组中的字符串?

How can I replace a string/word that's inside a multidimensional array with a new value? I don't have its key, just know the haystack and the needle.

Say I have a multidimensional array, $submenu_arr, (don't know how many dimensions).

I want to find a value inside one of these arrays and replace it with a new value.

Actually for a translation.

Like:

 recursive_arr_translation('Article', $submenu_arr, 'Artigo');//"Artigo" is a Portuguese word for "Article".

I've tried this, but not working:

 function in_array_r($needle, $haystack, $new_value) {
        $found = false;
        foreach ($haystack as $key=>$value) {
        if ($value === $needle) { 
                $found = true; 
                $haystack[$key] = $new_value;
                return true;
            } elseif (is_array($value)) {
                $found = in_array_r($needle, $haystack[$key], $new_value); 
                if($found) { 
                    return true; 
                } 
            }    
        }
        return $found;
    }


in_array_r('Article', $submenu, 'Artigo');
in_array_r('Location', $submenu, 'Localização');

EDIT: Is working, but somehow, I don't get it working, I'm trying to translate a WordPress submenu word.

  • 写回答

1条回答 默认 最新

  • dougaopu7938 2014-09-26 14:36
    关注

    You can use array_walk_recursive as suggested in the comments, and pass your original array as reference, allowing us to edit it.

    <?php
    
    $a = array("Giraffe", "Monkey", "Elephant", "Snake", 5, "other" => array("apple", "orange"));
    
    array_walk_recursive($a, function(&$a) {
            if($a == "apple") {
                 $a = "Banana";
            }
    });
    
    echo print_r($a, true);
    

    https://eval.in/198978

    So, now we have the basic logic, let's create a function with 3 parameters.

    function replace_in_array($find, $replace, &$array) {
        array_walk_recursive($array, function(&$array) use($find, $replace) {
            if($array == $find) {
                 $array= $replace;
            }
        });
        return $array;
    }
    
    $a = array("Giraffe", "Monkey", "Elephant", "Snake", 5, "other" => array("apple", "orange"));
    echo print_r( replace_in_array("apple", "banana", $a), true);
    

    https://eval.in/198989

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥15 (关键词-阻抗匹配,HFSS,RFID标签天线)
  • ¥15 机器人轨迹规划相关问题
  • ¥15 word样式右侧翻页键消失