将 PHP 对象序列化为 JSON例补遗

2022-08-30 07:35:14

因此,当我偶然发现新的JsonSerializable Interface时,我正在四处闲逛,php.net 以获取有关将PHP对象序列化为JSON的信息。它只是PHP>= 5.4,而且我在5.3.x环境中运行。

PHP < 5.4 是如何实现这种功能的?

我还没有使用JSON,但我正在尝试在应用程序中支持API层,并且将数据对象(否则将发送到视图)转储到JSON中将是完美的。

如果我尝试直接序列化对象,它将返回一个空的JSON字符串;这是因为我认为不知道该如何处理该对象。我是否应该递归地将对象简化为数组,然后对其进行编码?json_encode()


$data = new Mf_Data();
$data->foo->bar['hello'] = 'world';

echo json_encode($data) 生成一个空对象:

{}

但是,var_dump($data) 按预期工作:

object(Mf_Data)#1 (5) {
  ["_values":"Mf_Data":private]=>
  array(0) {
  }
  ["_children":"Mf_Data":private]=>
  array(1) {
    [0]=>
    array(1) {
      ["foo"]=>
      object(Mf_Data)#2 (5) {
        ["_values":"Mf_Data":private]=>
        array(0) {
        }
        ["_children":"Mf_Data":private]=>
        array(1) {
          [0]=>
          array(1) {
            ["bar"]=>
            object(Mf_Data)#3 (5) {
              ["_values":"Mf_Data":private]=>
              array(1) {
                [0]=>
                array(1) {
                  ["hello"]=>
                  string(5) "world"
                }
              }
              ["_children":"Mf_Data":private]=>
              array(0) {
              }
              ["_parent":"Mf_Data":private]=>
              *RECURSION*
              ["_key":"Mf_Data":private]=>
              string(3) "bar"
              ["_index":"Mf_Data":private]=>
              int(0)
            }
          }
        }
        ["_parent":"Mf_Data":private]=>
        *RECURSION*
        ["_key":"Mf_Data":private]=>
        string(3) "foo"
        ["_index":"Mf_Data":private]=>
        int(0)
      }
    }
  }
  ["_parent":"Mf_Data":private]=>
  NULL
  ["_key":"Mf_Data":private]=>
  NULL
  ["_index":"Mf_Data":private]=>
  int(0)
}

补遗

1)

这就是我为这个类设计的函数:toArray()Mf_Data

public function toArray()
{
    $array = (array) $this;
    array_walk_recursive($array, function (&$property) {
        if ($property instanceof Mf_Data) {
            $property = $property->toArray();
        }
    });
    return $array;
}

但是,由于对象还具有对其父(包含)对象的引用,因此递归失败。就像我删除引用时一样工作。Mf_Data_parent

2)

为了跟进,转换我使用的复杂树节点对象的最后一个函数是:

// class name - Mf_Data
// exlcuded properties - $_parent, $_index
public function toArray()
{
    $array = get_object_vars($this);
    unset($array['_parent'], $array['_index']);
    array_walk_recursive($array, function (&$property) {
        if (is_object($property) && method_exists($property, 'toArray')) {
            $property = $property->toArray();
        }
    });
    return $array;
}

3)

我再次跟进,实现得更干净一些。使用接口进行检查似乎比(但是method_exists()进行横切继承/实现)要干净得多。instanceofmethod_exists()

使用似乎也有点混乱,似乎逻辑应该重构为另一种方法。但是,此实现确实复制了属性数组(由于array_diff_key),因此需要考虑一些问题。unset()

interface ToMapInterface
{

    function toMap();

    function getToMapProperties();

}

class Node implements ToMapInterface
{

    private $index;
    private $parent;
    private $values = array();

    public function toMap()
    {
        $array = $this->getToMapProperties();
        array_walk_recursive($array, function (&$value) {
            if ($value instanceof ToMapInterface) {
                $value = $value->toMap();
            }
        });
        return $array;
    }

    public function getToMapProperties()
    {
        return array_diff_key(get_object_vars($this), array_flip(array(
            'index', 'parent'
        )));
    }

}

答案 1

在最简单的情况下,类型提示应该有效:

$json = json_encode( (array)$object );

答案 2

编辑:目前是2016-09-24,PHP 5.4已经发布2012-03-01,支持已经结束2015-09-01。尽管如此,这个答案似乎还是获得了支持。如果您仍在使用 PHP < 5.4,则会产生安全风险并终止项目。如果您没有令人信服的理由停留在<5.4,或者甚至已经使用版本> = 5.4,请不要使用此答案,而只需使用PHP>= 5.4(或者,您知道,最近的一个)并实现JsonSerializable接口


您可以定义一个函数,例如名为 ,它将返回数组、对象或其他具有可见参数的对象,而不是私有/受保护的对象,并执行 .从本质上讲,从5.4开始实现该函数,但手动调用它。getJsonData();stdClassjson_encode($data->getJsonData());

像这样的东西会起作用,就像从类内部调用的那样,可以访问私有/受保护的变量:get_object_vars()

function getJsonData(){
    $var = get_object_vars($this);
    foreach ($var as &$value) {
        if (is_object($value) && method_exists($value,'getJsonData')) {
            $value = $value->getJsonData();
        }
    }
    return $var;
}

推荐