PHP实现使用优酷土豆视频地址获取swf播放器分享地址
发布:smiling 来源: PHP粉丝网 添加日期:2021-02-07 16:07:13 浏览: 评论:0
这篇文章主要介绍了PHP实现使用优酷土豆视频地址获取swf播放器分享地址,即分析优酷土豆的视频页面地址,从而获得对应的swf播放器分享地址,需要的朋友可以参考下。
项目用到临时写的,待完善:
- /*
- * 根据用户提交的(swf/html)地址,获取优酷,土豆的swf播放地址
- * */
- private function _getSwf ($url = '') {
- if(isset($url) && !emptyempty($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;
- }
Tags: PHP获取swf播放器地址
- 上一篇:php实例分享之html转为rtf格式
- 下一篇:php中数字0和空值的区别分析
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)