22 lines
577 B
PHP
Executable File
22 lines
577 B
PHP
Executable File
<?php
|
|
|
|
if(!defined('IN_DISCUZ')) {
|
|
exit('Access Denied');
|
|
}
|
|
|
|
$checkurl = array('acfun.cn', 'acfun.tv');
|
|
|
|
function media_acfun($url, $width, $height) {
|
|
if(preg_match("/https?:\/\/(www.|)acfun.(cn|tv)\/v\/ac(\d+)/i", $url, $matches)) {
|
|
$vid = $matches[3];
|
|
$flv = '';
|
|
$iframe = 'https://www.acfun.cn/player/ac'.$vid;
|
|
$imgurl = '';
|
|
} elseif(preg_match("/https?:\/\/m.acfun.(cn|tv)\/v\/\?ac=(\d+)/i", $url, $matches)) {
|
|
$vid = $matches[2];
|
|
$flv = '';
|
|
$iframe = 'https://www.acfun.cn/player/ac'.$vid;
|
|
$imgurl = '';
|
|
}
|
|
return array($flv, $iframe, $url, $imgurl);
|
|
} |