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