2016-09-17 25 views
-1
Cleeng_Entity_Collection Object 
(
    [entityType:protected] => Cleeng_Entity_SubscriptionOffer 
    [items:protected] => Array 
     (
      [0] => Cleeng_Entity_SubscriptionOffer Object 
       (
        [id:protected] => S955494970_US 
        [publisherEmail:protected] => [email protected] 
        [url:protected] => 
        [title:protected] => Annual subscription 
        [description:protected] => 
        [period:protected] => year 
        [price:protected] => 49.99 
        [applicableTaxRate:protected] => 0 
        [currency:protected] => USD 
        [accessToTags:protected] => Array 
         (
          [0] => d962607d3d4c4e3c98a343c7bcb64027 
         ) 

        [active:protected] => 1 
        [createdAt:protected] => 1473681112 
        [updatedAt:protected] => 1473858745 
        [geoRestrictionEnabled:protected] => 
        [geoRestrictionType:protected] => 
        [geoRestrictionCountries:protected] => Array 
         (
         ) 

        [pending:protected] => 
        [country] => US 
        [socialCommissionRate] => 0 
        [averageRating] => 4 
        [contentType] => 
        [freePeriods] => 0 
        [freeDays] => 0 
        [expiresAt] => 
       ) 
     ) 
    [totalItemCount:protected] => 5 
    [pending:protected] => 
) 

答えて

0

にこの応答を変換するにはどのようにあなたがする必要があるのは、結果がそうのようjson_encode()ちょうどそのコレクションは、通常の配列に変換し、次のとおりです。

<?php 

    $entityCollection = "???"; // THIS IS THE DATA FROM Cleeng_Entity_Collection Object 
    $entityArray  = $entityCollection->toArray(); 
    $entityJSON  = json_encode($entityArray); 
+0

私は保護されたデータを取得することはできませんよ。どのように私はそれを得ることができます – solomon

+0

私たちはjson ....に保護されていないデータを変更することができますが、私はJSON – solomon

関連する問題