今天研究了下发视频功能,原来很简单的。
效果演示:http://www.youxidaxue.com/question/1284
发视频的方法:直接把flash地址放到编辑器里就可以了。
回复到20楼了,兑现诺言,实现方法就是:
打开system/functions.inc.php文件,找到以下代码:
return '<a href="' . $url . '" class="a" rel="nofollow" target="_blank">' . FORMAT::sub_url($matches[1], 50) . '</a>';
在它前面,注意是前面,加上以下代码,保存即可。
if(preg_match('/(http[s]?:\/\/?(.+).+\.swf)\w*/', $matches[1]))
{
$url = $matches[1];
return '<embed height="480" loop="true" menu="true" play="true" pluginspage="http://www.macromedia.com/go/getflashplayer" src="' . $url . '" type="application/x-shockwave-flash" width="640">';
}
如果懒得改,你可以直接下载附件,覆盖system/functions.inc.php。系统文件,注意备份。
阅读全文
收起全文