用递归方法将json转换为数组?

时间:2012-05-05 00:54:53

标签: php recursion php-5.3 json

我正在尝试将数组中的json字符串转换为数组

$config = array(
    "type"  => '{"category":"admin","page":"page"}',
    "say"     => "Hello",
    "php"   => array(
        "say"     => "no",
        "type"  => '{"category":"admin","page":"page"}',
        "gran"  =>array(
            "name" => "Hi"
        )
    )
);

我的工作代码,

class objectify
{

    public function json_to_array($array, $recursive = true)
    {
        # if $array is not an array, let's make it array with one value of former $array.
        if (!is_array($array)) $array = array($array);

        foreach($array as $key => $value)
        {
            if($recursive === false) $array[$key] = (!empty($value) && is_string($value) && json_decode($value) != NULL) ? json_decode($value, true): $value;
                else $array[$key] = (!empty($value) && is_string($value) && json_decode($value) != NULL) ? json_decode($value, true): is_array($value) ? self::json_to_array($array) : $value;
        }

        return $array;
    }
}

没有 递归方法它可以正常但是当我想要执行递归时会中断,正如您在上面的代码中看到的那样, p>

$object = new objectify();
$config = $object->json_to_array($config);
print_r($config);

错误消息,

Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 2048 bytes) in C:\wamp\www\test\2012\php\set_variable.php on line 79

我只是想得到这个结果,

Array
(
    [type] => Array
        (
            [category] => admin
            [page] => page
        )
    [say] => Hello
        (
            [say] => no
            [type] => {"category":"admin","page":"page"}
            [gran] => Array
                (
                    [name] => Hi
                )

        )

)

修改

$config = 'type={"category":"admin","page":"page"}&text_editor={"name":"mce-basic"}&parent_id=self&subtitle=true&description=true&content_1=true&script_1=true&primary_image=true';
parse_str($config,$array);
print_r($array);

结果,

Array
(
    [type] => {"category":"admin","page":"page"}
    [text_editor] => {"name":"mce-basic"}
    [parent_id] => self
    [subtitle] => true
    [description] => true
    [content_1] => true
    [script_1] => true
    [primary_image] => true
)

5 个答案:

答案 0 :(得分:4)

快速解决方案:

$full_array = array_map('json_decode', $array);

如果不是所有参数都是JSON,并且您想要实际数组而不是stdClass个对象,则可能必须这样做:

function json_decode_array($input) { 
  $from_json =  json_decode($input, true);  
  return $from_json ? $from_json : $input; 
}
$full_array = array_map('json_decode_array', $array);

如果您在JSON之外有更多级别的嵌套数组,那么您必须自己进行递归。试试这个客观化的版本:

class objectify
{
  public function json_mapper($value, $recursive = true) {
    if (!empty($value) && is_string($value) &&
        $decoded = json_decode($value, true)) {
      return $decoded;
    } elseif (is_array($value) && $recursive) {
      return array_map('objectify::json_mapper', $value);
    } else {
      return $value;
    }
  }

  // currying, anyone?
  public function json_mapper_norecurse($value) { 
     return objectify::json_mapper($value, false);
  }

  public function json_to_array($array, $recursive = true)
  {
    # if $array is not an array, let's make it array with one value of
    # former $array.
    if (!is_array($array)) {
      $array = array($array);
    }

    return array_map(
      $recursive ? 'objectify::json_mapper' 
                 : 'objectify::json_mapper_norecurse', $array);
  }
}

对于我的两组样本数据,这对我来说都很合适。

答案 1 :(得分:2)

就你的代码而言,似乎你犯了一个错误导致它永远循环(递归部分的最后一部分):

is_array($value) ? self::json_to_array($array) : $value;

您将整个数组提供给递归函数,而不是测试为数组的值。

将其更改为:

is_array($value) ? self::json_to_array($value) : $value;

应该解决这个问题。

编辑:似乎嵌套的三元条件导致问题,如果你在第二个附近放置大括号,它可以工作:

        else
        {
           $array[$key] = (!empty($value) && is_string($value) && json_decode($value) != NULL)
                               ? json_decode($value, true)
                               : (is_array($value) ? self::json_to_array($value) : $value);
        }

See the working example

答案 2 :(得分:0)

可以更轻松地完成。

function objectify(& $v, $k) {
    $v_decoded = json_decode($v, true);
    if ($v_decoded) { $v = $v_decoded; }
}

array_walk_recursive($config, 'objectify');
print_r($config);

Array
(
[type] => Array
    (
        [category] => admin
        [page] => page
    )

[say] => Hello
[php] => Array
    (
        [say] => no
        [type] => Array
            (
                [category] => admin
                [page] => page
            )

        [gran] => Array
            (
                [name] => Hi
            )

    )

)

答案 3 :(得分:0)

如果您使用的是laravel框架,并且post参数包含数组,请在数组映射中使用json_decode解码递归值。

            $params = array_map('json_decode', $request->all());

答案 4 :(得分:-1)

也许你可以使用简单的功能:

$array = json_decode(json_encode($object), true);

在此处找到:https://gist.github.com/victorbstan/744478

setTimeout(function () { alert("JavaScript"); }, 1000);