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.