douqiang4245 2013-09-07 18:30
浏览 33
已采纳

使用php从嵌入代码生成youtube缩略图

I have tried to strip the code below

<iframe width="560" height="315" src="//www.youtube.com/embed/QUVdnzC19oU" frameborder="0" allowfullscreen></iframe>

its working but not stripping the links properly all i get is

http://img.youtube.com/vi/www.youtube.comembedQUVdnzC19oU/0.jpg 

instead of

http://img.youtube.com/vi/QUVdnzC19oU/0.jpg

Please find the php code below.

if(preg_match_all('@<iframe\s[^>]*src=[\"|\']([^\"\'\>]+)[^>].*?</iframe>@siu', $item->introtext, $iframesrc) >0){
            if(isset($iframesrc[1])){
                $vid = str_replace(
                    array(
                        'http://youtu.be/',
                        'http://www.youtube.com/embed/',
                        'http://youtube.googleapis.com/v/'), '', $iframesrc[1][0]);

                $vid = preg_replace('@\/.*?@i', '', $vid);

                if(!(empty($vid))){
                    $result = '' . 
                        '<div class="vimage">
                            <a class="video-link vlink" href="'.$item->link.'" title="">
                                <img src="http://img.youtube.com/vi/'.$vid.'/0.jpg" />
                                <span class="play-icon">&nbsp;</span>
                            </a>
                        </div>';

                    $item->introtext = str_replace($iframesrc['0'], '', $item->introtext);
                }
            }
        }

Thanks in advance.

  • 写回答

2条回答 默认 最新

  • duanjia4097 2013-09-07 18:42
    关注

    Replace

    array(
        'http://youtu.be/',
        'http://www.youtube.com/embed/',
        'http://youtube.googleapis.com/v/'), '', $iframesrc[1][0]);
    

    by

    array(
        '//youtu.be/',
        '//www.youtube.com/embed/',
        '//youtube.googleapis.com/v/',
        'http:', 'https:'), '', $iframesrc[1][0]);
    

    The problem is that you URL das not start with http:// as your code expects. My solution will work with //, http:// and https://.

    Also the following line is not useful, as it will never have any effect.

    $vid = preg_replace('@\/.*?@i', '', $vid);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 matlab计算中误差
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制
  • ¥20 usb设备兼容性问题
  • ¥15 错误(10048): “调用exui内部功能”库命令的参数“参数4”不能接受空数据。怎么解决啊