How to transform json data to a comma separated ph

2020-04-17 05:20发布

Let's say i have this json data. How to transform the "tags" to a string like

$tags = "Rihanna, We, Found, Love, (Explicit), Def, Jam, Records, Pop"; ?

{ "apiVersion" : "2.1",
      "data" : { "items" : [ { "accessControl" : { "autoPlay" : "allowed",
                    "comment" : "allowed",
                    "commentVote" : "allowed",
                    "embed" : "allowed",
                    "list" : "allowed",
                    "rate" : "allowed",
                    "syndicate" : "allowed",
                    "videoRespond" : "allowed"
                  },
                "aspectRatio" : "widescreen",
                "category" : "Music",
                "tags" : [ "Rihanna",
                    "We",
                    "Found",
                    "Love",
                    "(Explicit)",
                    "Def",
                    "Jam",
                    "Records",
                    "Pop"
                  ],
                "title" : "Rihanna - We Found Love ft. Calvin Harris"
              } ],
          "itemsPerPage" : 1,
          "startIndex" : 1,
          "totalItems" : 859012,
          "updated" : "2012-04-04T20:32:26.170Z"
        }
    }

For the title as example, the script looks like this:

$content = $this->getDataFromUrl($feedURL);
$content = json_decode($content,true);

$videosList = $content['data']['items'];

for($i=0; $i<count($videosList); $i++) {

$videosDatas['videos'][$i]['title'] = $videosList[$i]['title'];

}

标签: php json
3条回答
来,给爷笑一个
2楼-- · 2020-04-17 05:23

It looks like you need implode(). The function would be something like...

$tags = implode(', ', $videosDatas['videos'][$i]['tags']);
查看更多
▲ chillily
3楼-- · 2020-04-17 05:29
$comma_sep_string = implode(', ' , $videosDatas['videos'][$i]['tags']);
查看更多
【Aperson】
4楼-- · 2020-04-17 05:38

Try:

foreach($videosList as $i=>$video){
    $videosDatas['videos'][$i]['title'] = $video->title;
    $tags = implode(', ',$video->tags);
    $videosDatas['videos'][$i]['tags'] = $tags;
}

In place of your code:

for($i=0; $i<count($videosList); $i++) {

$videosDatas['videos'][$i]['title'] = $videosList[$i]['title'];

}
查看更多
登录 后发表回答