0

我正在创建一个 vine 脚本,并且我正在尝试.jpg从我的脚本设置的选定 vine 视频 url 中收集缩略图,如下所示是它在我的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。因为当从 vine 视频 url 生成拇指时,它们看起来像这样..

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);

}
4

1 回答 1

4

你的substr()语法不正确。

它实际上应该是:

substr ($string, $start, $length)

要使用substr(),您需要将缩略图 URL 存储在一个变量中,如下所示:

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;
}
于 2013-10-07T06:35:25.743 回答