格式化嵌入的YouTube视频说明

时间:2013-05-12 04:34:13

标签: php youtube-api

我有一个PHP函数可以从API中获取我最新的YouTube视频,我可以访问描述,但它没有格式化,即它基本上是一行文本,有没有办法使\ n实际打印一个新线?

这是功能

    function get_latestvideo($username)
{
    $videos = array();

    $data = "http://gdata.youtube.com/feeds/api/users/{$username}/uploads?start-index=1&max-results=4&v=2&alt=json";
    foreach (json_decode(file_get_contents("$data"))->feed->entry as $video)
    {
        $videos[] = array(
            'title' => $video->title->{'$t'},
            'desc' => $video->{'media$group'}->{'media$description'}->{'$t'},
            'url' => $video->content->src,
            'thumbnail' => $video->{'media$group'}->{'media$thumbnail'}[1]->url,
        );
    }
return $videos;
}

这是直接来自API的描述

   "media$description": {
    "$t": "Enjoy, Like, Comment, Subscribe\nGiggleSquid's Twitter: https://twitter.com/GiggleSquid\nGigglesquid's Facebook: http://www.facebook.com/GiggleSquid\n\nGiggleSquid and dapaka delve into SimCity in a hopeless attempt to develop an efficient, bustling metropolis, will they succeed? No, probably not\n\nOutro Music:\nOne-eyed Maestro by the amazing Kevin MacLeod (incompetech.com)",
    "type": "plain"
   },

这就是它打印的方式

享受,喜欢,评论,订阅GiggleSquid的Twitter:https://twitter.com/GiggleSquid Gigglesquid的Facebook:http://www.facebook.com/GiggleSquid GiggleSquid和dapaka钻研SimCity,希望能够开发一个高效,繁华的大都市,他们会成功吗?不,可能不是Outro音乐:惊人的Kevin MacLeod(incompetech.com)的独眼大师

1 个答案:

答案 0 :(得分:1)

使用nl2br() PHP函数将\ n转换为BR标记