Files
web-discuz/source/function/media/media_mgtv.php
2025-06-27 21:04:18 +08:00

17 lines
435 B
PHP
Executable File

<?php
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
$checkurl = array('mgtv.com/b/', 'hunantv.com/b/');
function media_mgtv($url, $width, $height) {
if(preg_match("/https?:\/\/(m.|www.|)(mg|hunan)tv.com\/b\/(\d+)\/(\d+).html/i", $url, $matches)) {
$vid = $matches[4];
$flv = 'https://player.mgtv.com/mgtv_v6_out/main.swf?video_id='.$vid;
$iframe = '';
$imgurl = '';
}
return array($flv, $iframe, $url, $imgurl);
}