tags:

views:

31

answers:

2

I need a solution for array_replace_recursive, because my php-version isn't high enough. I want to use this code:

$_GET = array_replace_recursive($_GET, array("__amp__"=>"&"));

easy, isn't it?

+2  A: 

On the PHP docs page for array_replace_recursive, someone posted the following source code to use in place of it:

<?php
if (!function_exists('array_replace_recursive'))
{
  function array_replace_recursive($array, $array1)
  {
    function recurse($array, $array1)
    {
      foreach ($array1 as $key => $value)
      {
        // create new key in $array, if it is empty or not an array
        if (!isset($array[$key]) || (isset($array[$key]) && !is_array($array[$key])))
        {
          $array[$key] = array();
        }

        // overwrite the value in the base array
        if (is_array($value))
        {
          $value = recurse($array[$key], $value);
        }
        $array[$key] = $value;
      }
      return $array;
    }

    // handle the arguments, merge one by one
    $args = func_get_args();
    $array = $args[0];
    if (!is_array($array))
    {
      return $array;
    }
    for ($i = 1; $i < count($args); $i++)
    {
      if (is_array($args[$i]))
      {
        $array = recurse($array, $args[$i]);
      }
    }
    return $array;
  }
}
?>
Justin Ethier
A: 

Thank you. It is trying :)

isa