终于搞定。采取了直接修改Discuz!论坛程序源程序 discuzcode.func.php 的方法。
参考 http://summerlight.name/?p=31
修改的地方有两处:- $bbcodes = 'b|i|u|color|size|font|align|list|indent|url|email|hide|quote|code|free|table|tr|td|img|swf|attach|payto|float|sokojava'
复制代码- preg_replace(array(
- "/\[color=([#\w]+?)\]/i",
- "/\[size=(\d+?)\]/i",
- "/\[size=(\d+(\.\d+)?(px|pt|in|cm|mm|pc|em|ex|%)+?)\]/i",
- "/\[font=([^\[\<]+?)\]/i",
- "/\[align=(left|center|right)\]/i",
- "/\[float=(left|right)\]/i",
- "/\[sokojava=(\d+?),(\d+?)\]\s*(.+?)\s*\[\/sokojava\]/i"
- ), array(
- "<font color=\"\\1\">",
- "<font size=\"\\1\">",
- "<font style=\"font-size: \\1\">",
- "<font face=\"\\1 \">",
- "<p align=\"\\1\">",
- "<span style=\"float: \\1;\">",
- "<applet code=\"SokoPlayer.class\" codebase=\"http://sokoban.ws/sokoplayer/\" width=\\1 height=\\2>
- <PARAM NAME=\"level\" VALUE=\"\\3\">
- <PARAM NAME=\"skin\" VALUE=\"http://sokoban.ws/sokoplayer/skin.png\"></applet>"
- ), $message));
复制代码 |