Skip to content

Instantly share code, notes, and snippets.

@vdvm
vdvm / gist:4665450
Last active December 13, 2023 23:29
Recursive array str_replace
<?php
function recursive_array_replace($find, $replace, $array) {
if (!is_array($array)) {
return str_replace($find, $replace, $array);
}
$newArray = array();