Php 格式化嵌入的YouTube视频描述

Php 格式化嵌入的YouTube视频描述,php,youtube-api,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-

我有一个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:GiggleSquid的Facebook:GiggleSquid和dapaka深入SimCity,毫无希望地试图发展一个高效、繁华的大都市,他们会成功吗?不,可能不是Outro Music:令人惊叹的凯文·麦克劳德的独眼大师(incometech.com)

使用PHP函数将\n转换为BR tag

nl2br