优酷、腾讯视频分享代码html替换通用

public function video_h(){
    $sql = "select h.title,d.content from v9_hjxy_data as d,v9_hjxy as h where d.id=h.id and h.wzlb='视频' and h.id<60 ";
    $rs = $this->db->query($sql);
    $list = $rs->result_array();
    foreach($list as $r){
        $str = $this->video_s($r['content']);
        if($str){
            echo $r['title'].'<br>';
            echo $str.'<br>';
        }
    }
}
public function video_s($str){
    $preg_tudou = '/(tudou)/is';
    $preg_qq = '/(qq)/is';
    $preg_em_qq = '/(<embed.*vid=)(.*?)(&.*<\/embed>)/is';
    $preg_em_youku = '/(<embed.*src\=\"http.*\/)(.*?)(\/v.swf)(\".*<\/embed>)/is';
    $preg_ob_youku = '/(<object.*src\=\"http.*\/)(.*?)(\/v.swf)(\".*<\/object>)/is';
    if(preg_match_all($preg_em_qq,$str,$arr) and !preg_match($preg_tudou,$str) and preg_match($preg_qq,$str)){
    $str = preg_replace($preg_em_qq,'<iframe height=498 width=510 src="http://v.qq.com/iframe/player.html?vid=\\2" frameborder=0 allowfullscreen></iframe>',$str);
    return $str;
    }elseif(preg_match_all($preg_ob_youku,$str,$arr) and !preg_match($preg_tudou,$str) and !preg_match($preg_qq,$str)){
    $str = preg_replace($preg_ob_youku,'<iframe height=498 width=510 src="http://player.youku.com/embed/\\2" frameborder=0 allowfullscreen></iframe>',$str);
    return $str;
    }elseif(preg_match_all($preg_em_youku,$str,$arr) and !preg_match($preg_tudou,$str) and !preg_match($preg_qq,$str)){
        $str = preg_replace($preg_em_youku,'<iframe height=498 width=510 src="http://player.youku.com/embed/\\2" frameborder=0 allowfullscreen></iframe>',$str);
        return $str;
    }   
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值