PHP实现使用优酷土豆视频地址获取swf播放器分享地址
项目用到临时写的。待完善:
* 根据用户提交的(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;
}
相关文章
PHP的Laravel框架中使用消息队列queue及异步队列的方法
这篇文章主要介绍了PHP的Laravel框架中使用消息队列queue及异步队列的方法,针对Laravel 5.0后的版本,示例环境为Linux系统,需要的朋友可以参考下2016-03-03
Laravel学习教程之model validation的使用示例
这篇文章主要给大家介绍了关于Laravel学习教程之model validation使用的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面来一起看看吧。2017-10-10


最新评论