如何从格式json或数组获取podio api的响应但不是对象?

时间:2017-10-19 19:03:59

标签: php json podio

如何以格式json或数组获取podio api的响应但不是对象? 我用podio-php(https://github.com/podio/podio-php

我的代码

    Podio::setup(CLIENT_ID_PODIO, CLIENT_SECRET_PODIO);
    $oauth = Podio::is_authenticated(); 
    Podio::authenticate_with_app(111111, 
              'bergbttyjra74d5afgrfhgrh781e70');
    //$items = PodioItem::filter(111111);
    $item = PodioItem::filter(111111, array(
        'filters' => array(
            'created_on' => array(
                "from" => "2017-10-09 00:00:00",
                "to" => "2017-10-19 23:59:59"
            )
        ),
    ));
   // print_r($item);// output object
 // how next ?

1 个答案:

答案 0 :(得分:1)

让我们假设你真的需要一个JSON或数组,原因不是"我不知道如何处理对象" 。因此,对于JSON,只需使用as_json()函数。并获得一个数组typecast an object

所以:

 $json = $item->as_json(); // converts to json
 $array = (array) $item;   // converts to array

但@ceejayoz在上面的评论中是正确的:对象本身很好,只是RTFM:)