YouTube v3 API 上的描述换行符



我一直在使用YouTube API,但是当我尝试获取视频描述时,它显示为一个没有换行符的长字符串。有没有办法换行?

API 没有任何文档来解释此问题。

请使用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);

使用 API 上传视频时,我设置 .描述,我的数据包含导致换行符的 CrLf 字符。稍后,当我通过 API 检索视频对象时,会出现换行符。

相关内容

  • 没有找到相关文章

最新更新