欢迎光临
我们一直在努力

discuz手机版支持视频播放的修改方法

建站超值云服务器,限时71元/月
  1. $message = preg_replace(“/\[flash(=(\d+),(\d+))?\]\s*([^\[\<\r\n]+?)\s*\[\/flash\]/is”, “[media]\\4[/media]”, $message);

复制代码,

  1. $message = preg_replace(“/\[flash(=(\d+),(\d+))?\]\s*([^\[\<\r\n]+?)\s*\[\/flash\]/”, “<embed src=’\\4′ allowFullScreen=’true’ quality=’high’ width=’260′ height=’150′ align=’middle’ allowScriptAccess=’always’ type=’application/x-shockwave-flash’></embed>”, $message);

复制代码,默认手机版视频功能是使用了code 在手机版上是看不到的 会显示[media]…..[/media]

我们可以修改为正常显示的方法。

首先我们打开source/function/function_discuzcode.php

  1. $message = preg_replace(“/\[flash(=(\d+),(\d+))?\]\s*([^\[\<\r\n]+?)\s*\[\/flash\]/is”, “[media]\\4[/media]”, $message);

复制代码

修改为

  1. $message = preg_replace(“/\[flash(=(\d+),(\d+))?\]\s*([^\[\<\r\n]+?)\s*\[\/flash\]/”, “<embed src=’\\4′ allowFullScreen=’true’ quality=’high’ width=’260′ height=’150′ align=’middle’ allowScriptAccess=’always’ type=’application/x-shockwave-flash’></embed>”, $message);

复制代码

保存后手机版的discuz 也能播放网络视频了,代码位置大概在206行左右。

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » discuz手机版支持视频播放的修改方法
分享到: 更多 (0)