2017-10-19 3 views
0

jsonやarrayの形式でpodio apiからどのように応答しますが、オブジェクトは返さないのですか? は私がpodio-PHP(https://github.com/podio/podio-phpjsonやarrayの形式でpodio apiからどのように応答しますが、オブジェクトはありませんか?

マイコード

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 ? 
+0

罰金ですか? – ceejayoz

+0

私はこのPodioByLineオブジェクト([__attributes:PodioObject:private] => Array([type] => user [id] => 4286469 [avatar_type] =>ファイル[avatar_id] => [Podio [hosted_by_humanized_name] => Podio [thumbnail_link] => https://d2cmuesa4snpwn.cloudfront.net/public/422384899 [link] => https://d2cmuesa4snpwn.cloudfront .net/public/422384899 [file_id] => 422384899 [external_file_id] => [link_target] => _blank)[name] => FGfwegf ffefe –

+1

そのため、ドキュメントを読んでいますか?http://podio.github.io/podio-php/objects/ – ceejayoz

答えて

0

を使用するのは、あなたが本当に「私はオブジェクトをどうするのか分からない」以外の何らかの理由のためにJSONや配列を必要とします。したがって、JSONの場合はas_json()関数を使用してください。そして配列を得るにはちょうどtypecast an object

ので:

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

しかし、右上記のコメントで@ceejayozです:オブジェクト自体は、オブジェクトと間違って何、ちょうどRTFM :)

関連する問題