PHP實現使用優酷馬鈴薯視頻地址擷取swf播放器分享地址_PHP教程

來源:互聯網
上載者:User
項目用到臨時寫的。待完善:
複製代碼 代碼如下:/*
* 根據使用者提交的(swf/html)地址,擷取優酷,馬鈴薯的swf播放地址
* */
private function _getSwf ($url = '') {
if(isset($url) && !empty($url)){
preg_match_all('/http:\/\/(.*?)?\.(.*?)?\.com\/(.*)/',$url,$types);
}else{
return false;
}
$type = $types[2][0];
$domain = $types[1][0];
$isswf = strpos($types[3][0], 'v.swf') === false ? false : true;
$method = substr($types[3][0],0,1);

switch ($type){
case 'youku' :
if( $domain == 'player' ) {
$swf = $url;
}else if( $domain == 'v' ) {
preg_match_all('/http:\/\/v\.youku\.com\/v_show\/id_(.*)?\.html/',$url,$url_array);
$swf = 'http://player.youku.com/player.php/sid/'.str_replace('/','',$url_array[1][0]).'/v.swf';
}else{
$swf = $url;
}
break;
case 'tudou' :
if($isswf){
$swf = $url;
}else{
$method = $method == 'p' ? 'v' : $method ;
preg_match_all('/http:\/\/www.tudou\.com\/(.*)?\/(.*)?/',$url,$url_array);
$str_arr = explode('/',$url_array[1][0]);
$count = count($str_arr);
if($count == 1) {
$id = explode('.',$url_array[2][0])[0];
}else if($count == 2){
$id = $str_arr[1];
}else if($count == 3){
$id = $str_arr[2];
}
$swf = 'http://www.tudou.com/'.$method.'/'.$id.'/v.swf';
}
break;
default :
$swf = $url;
break;
}
return $swf;
}

http://www.bkjia.com/PHPjc/779563.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/779563.htmlTechArticle項目用到臨時寫的。待完善: 複製代碼 代碼如下: /* * 根據使用者提交的(swf/html)地址,擷取優酷,馬鈴薯的swf播放地址 * */ private function _getSw...

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.