帝国cms调用真实视频播放地址的方法
帝国CMS在内容页和列表页调用真实视频播放地址的方法
1、在内容模板中获取一个播放地址可以用(单集):
1 |
<?php |
2 |
$rr = explode (egetzy( 'rn' ), $navinfor [onlinepath]); |
3 |
$fr = explode ( '::::::' , $rr [0]); |
4 |
?> |
共<?=count($rr)?>集
第<?=$fr[0]?>集
视频播放地址:<?=$fr[1]?>
2、在内容模板中获取多个播放地址可以用(多集):
01 |
<?php |
02 |
$rr = explode (egetzy( 'rn' ), $navinfor [onlinepath]); |
03 |
$rcount = count ( $rr ); |
04 |
for ( $pathi =0; $pathi < $rcount ; $pathi ++) |
05 |
{ |
06 |
$fr = explode ( '::::::' , $rr [ $pathi ]); |
07 |
?> |
08 |
<a href= "[!--news.url--]e/DownSys/play/?classid=[!--classid--]&id=[!--id--]&pathid=<?=$pathi?>" target= "iFrame1" class = "lBtn" ><?= $fr [0]?></a> |
09 |
<?php |
10 |
} |
11 |
?> |