我正在创建一个藤蔓脚本,我正在尝试从我的脚本设置的选定藤蔓视频网址中收集缩略图.jpg
,如下所示,它是如何在我的og:image:secure_url
<meta property="og:image:secure_url" content="{php} echo vine_pic($this->_tpl_vars['p']['youtube_key']);{/php}" />
我需要帮助
设置string limit
个147
个字符。因为当从藤蔓视频网址生成拇指时,它们就像这样......
https://v.cdn.vine.co/r/thumbs/6A6EB338-0961-4382-9D0D-E58CC705C8D5-2536-00000172EBB64B1B_1f3e673a8d2.1.3.mp4.jpg?versionId=i7r_pcP2P1noapLmoI0QgrtvsD8ii43f
如果 og:image:secure_url
包含列出的额外字符
?versionId=i7r_pcP2P1noapLmoI0QgrtvsD8ii43f
我的代码将字符串限制放在
中function vine_pic( $id )
{
$vine = file_get_contents("http://vine.co/v/{$id}");
preg_match('/property="og:image" content="(.*?)"/', $vine, $matches);
return ($matches[1]) ? $matches[1] : false;
// As you see below, I made an attempt but it doesn't work.
substr(0, 147, $vine, $matches);
}
答案 0 :(得分:4)
您的substr()
语法不正确。
实际应该是:
substr ($string, $start, $length)
要使用substr()
,您需要将缩略图网址存储在变量中,如下所示:
function vine_pic( $id )
{
$vine = file_get_contents("http://vine.co/v/{$id}");
preg_match('/property="og:image" content="(.*?)"/', $vine, $matches);
$thumb = ($matches[1]) ? $matches[1] : false;
$thumb = substr($thumb, 0, 147);
return $thumb;
}
在尝试使用$thumb
之前检查substr()
是否设置可能是个好主意:
if ($thumb) {
$thumb = substr($thumb, 0, 147);
return $thumb;
}