80

我正在尝试将对象列表输出为 json,并想知道是否有办法使对象可用json_encode?我得到的代码看起来像

$related = $user->getRelatedUsers();
echo json_encode($related);

现在,我只是遍历用户数组并将它们单独导出到数组中,json_encode以便为我转换成可用的 json。我已经尝试过使对象可迭代,但json_encode似乎还是跳过了它们。

编辑:这是 var_dump();

php > var_dump($a);
object(RedBean_OODBBean)#14 (2) {
  ["properties":"RedBean_OODBBean":private]=>
  array(11) {
    ["id"]=>
    string(5) "17972"
    ["pk_UniversalID"]=>
    string(5) "18830"
    ["UniversalIdentity"]=>
    string(1) "1"
    ["UniversalUserName"]=>
    string(9) "showforce"
    ["UniversalPassword"]=>
    string(32) ""
    ["UniversalDomain"]=>
    string(1) "0"
    ["UniversalCrunchBase"]=>
    string(1) "0"
    ["isApproved"]=>
    string(1) "0"
    ["accountHash"]=>
    string(32) ""
    ["CurrentEvent"]=>
    string(4) "1204"
    ["userType"]=>
    string(7) "company"
  }
  ["__info":"RedBean_OODBBean":private]=>
  array(4) {
    ["type"]=>
    string(4) "user"
    ["sys"]=>
    array(1) {
      ["idfield"]=>
      string(2) "id"
    }
    ["tainted"]=>
    bool(false)
    ["model"]=>
    object(Model_User)#16 (1) {
      ["bean":protected]=>
      *RECURSION*
    }
  }
}

这是 json_encode 给我的:

php > echo json_encode($a);
{}

我最终得到了这个:

    function json_encode_objs($item){   
        if(!is_array($item) && !is_object($item)){   
            return json_encode($item);   
        }else{   
            $pieces = array();   
            foreach($item as $k=>$v){   
                $pieces[] = "\"$k\":".json_encode_objs($v);   
            }   
            return '{'.implode(',',$pieces).'}';   
        }   
    }   

它需要包含这些对象的数组或仅单个实例并将它们转换为 json - 我使用它而不是 json_encode。我确信有些地方我可以做得更好,但我希望 json_encode 能够检测何时基于其公开的接口迭代对象。

4

9 回答 9

161

对象的所有属性都是私有的。又名...在他们的课程范围之外不可用。

PHP >= 5.4 的解决方案

使用新JsonSerializable接口提供您自己的 json 表示以供json_encode

class Thing implements JsonSerializable {
    ...
    public function jsonSerialize() {
        return [
            'something' => $this->something,
            'protected_something' => $this->get_protected_something(),
            'private_something' => $this->get_private_something()
        ];
    }
    ...
}

PHP < 5.4 的解决方案

如果您确实想要序列化您的私有和受保护对象属性,则必须您的类中实现一个 JSON 编码函数,该函数利用json_encode()您为此目的创建的数据结构。

class Thing {
    ...
    public function to_json() {
        return json_encode(array(
            'something' => $this->something,
            'protected_something' => $this->get_protected_something(),
            'private_something' => $this->get_private_something()                
        ));
    }
    ...
}

更详细的写法

于 2011-01-15T02:50:29.740 回答
47

在 PHP >= 5.4.0 中,有一个用于将对象序列化为 JSON 的新接口:JsonSerializable

只需在您的对象中实现接口并定义一个JsonSerializable方法,当您使用json_encode.

所以 PHP >= 5.4.0 的解决方案应该是这样的:

class JsonObject implements JsonSerializable
{
    // properties

    // function called when encoded with json_encode
    public function jsonSerialize()
    {
        return get_object_vars($this);
    }
}
于 2012-05-08T15:02:39.020 回答
8

在 RedBeanPHP 2.0 中有一个批量导出功能,可以将整个 bean 集合转换为数组。这适用于 JSON 编码器..

json_encode( R::exportAll( $beans ) );
于 2011-05-20T07:32:01.757 回答
4

以下代码对我有用:

public function jsonSerialize()
{
    return get_object_vars($this);
}
于 2014-03-31T12:55:09.890 回答
2

我还没有看到提到这一点,但是 bean 有一个名为getProperties().

所以,要使用它:

// What bean do we want to get?
$type = 'book';
$id = 13;

// Load the bean
$post = R::load($type,$id);

// Get the properties
$props = $post->getProperties();

// Print the JSON-encoded value
print json_encode($props);

这输出:

{
    "id": "13",
    "title": "Oliver Twist",
    "author": "Charles Dickens"
}

现在更进一步。如果我们有一个 bean 数组......

// An array of beans (just an example)
$series = array($post,$post,$post);

...然后我们可以执行以下操作:

  • 用循环遍历数组foreach

  • 用 bean 的属性数组替换每个元素(一个 bean)。

所以这...

foreach ($series as &$val) {
  $val = $val->getProperties();
}

print json_encode($series);

...输出:

[
    {
        "id": "13",
        "title": "Oliver Twist",
        "author": "Charles Dickens"
    },
    {
        "id": "13",
        "title": "Oliver Twist",
        "author": "Charles Dickens"
    },
    {
        "id": "13",
        "title": "Oliver Twist",
        "author": "Charles Dickens"
    }
]

希望这可以帮助!

于 2013-06-30T18:03:15.110 回答
1

我通常在我的对象中包含一个小函数,它允许我转储到数组或 json 或 xml。就像是:

public function exportObj($method = 'a')
{
     if($method == 'j')
     {
         return json_encode(get_object_vars($this));
     }
     else
     {
         return get_object_vars($this);
     }
}

无论哪种方式,get_object_vars()都可能对您有用。

于 2011-01-15T03:15:24.453 回答
1

这是我的方式:

function xml2array($xml_data)
{
    $xml_to_array = [];

    if(isset($xml_data))
    {
        if(is_iterable($xml_data))
        {
            foreach($xml_data as $key => $value)
            {
                if(is_object($value))
                {
                    if(empty((array)$value))
                    {
                        $value = (string)$value;
                    }
                    else
                    {
                        $value = (array)$value;
                    }
                    $value = xml2array($value);
                }
                $xml_to_array[$key] = $value;
            }
        }
        else
        {
            $xml_to_array = $xml_data;
        }
    }

    return $xml_to_array;
}
于 2018-08-15T01:06:36.180 回答
0
$products=R::findAll('products');
$string = rtrim(implode(',', $products), ',');
echo $string;
于 2015-09-28T19:13:18.807 回答
-1

对于一组对象,我使用了类似的东西,同时遵循 php < 5.4 的自定义方法:

$jsArray=array();

//transaction is an array of the class transaction
//which implements the method to_json

foreach($transactions as $tran)
{
    $jsArray[]=$tran->to_json();
}

echo json_encode($jsArray);
于 2014-03-27T16:35:17.327 回答