我一直在使用YouTube API但是当我尝试获取视频说明时,它显示为一个没有换行符的长字符串。有没有一种获取换行符的方法?
API没有任何文件可以解释此事。
答案 0 :(得分:0)
使用API上传视频时,我设置.Snippet.Description,我的数据包含CrLf字符以导致换行。稍后,当我通过API检索Video对象时,会出现换行符。
答案 1 :(得分:0)
请使用PHP_EOL,如下所示:
$desp='Cette vidéo et trouvée sur: http://localhost/ '.PHP_EOL;
$desp.='Pour plus d\'infos visitez: http://localhost/123 '.PHP_EOL;
$desp.='CopyRight to: http://localhost/789';
$snippet->setDescription($desp);