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

报告相同问题?

悬赏问题

  • ¥15 arduino控制ps2手柄一直报错
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥85 maple软件,solve求反函数,出现rootof怎么办?
  • ¥15 求chat4.0解答一道线性规划题,用lingo编程运行,第一问要求写出数学模型和lingo语言编程模型,第二问第三问解答就行,我的ddl要到了谁来求了
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题
  • ¥15 Visual Studio问题
  • ¥20 求一个html代码,有偿
  • ¥100 关于使用MATLAB中copularnd函数的问题