discuz!5.0论坛显示风格的php代码高亮显示插件, 把php代码进行语法着色,喜欢PHP的同志可以轻松的看代码啦。 同时添加了html代码运行功能。 此插件是在以前某位同志发布的Discuz!4的php代码高亮显示基础之上修改完成。 另外,本人的php学习进入了停滞状态, 希望有人能帮助我走出php的学习困境 My QQ: 我的QQ群: 功能:发贴时使用[php]php代码[/php]标记来高亮显示php代码, 使用[runcode]Html代码[/runcode]标记来运行HTML代码(在客户端运行非服务器)。 插件添加步骤如下: 1.修改include/common.js 查找 function copycode(obj) { var rng = document.body.createTextRange(); rng.moveToElementText(obj); rng.scrollIntoView(); rng.select(); rng.execCommand("Copy"); rng.collapse(false); } 在这个函数结束的下面添加: [Copy to clipboard] [ - ]CODE: function runCode(obj) { var winname = window.open('', "_blank", ''); winname.document.open('text/html', 'replace'); winname.document.writeln(obj.value); winname.document.close(); } function saveCode(obj) { var winname = window.open('', '_blank', 'top='); winname.document.open('text/html', 'replace'); winname.document.writeln(obj.value); winname.document.execCommand('saveas','','code.htm'); winname.close(); } 2.修改include/discuzcode.func.php 查找 [Copy to clipboard] [ - ]CODE: $discuzcodes['codecount']++; return "[tDISCUZ_CODE_$discuzcodes[pcodecount]t]"; } (注:也可以用Editplus直接查找到代码的第行来进行下面的添加) 在下面继续添加: /------- 添加 [runcode] Html代码 [/runcode] 来运行Html代码 function runcodedisp($code) { global $discuzcodes; $discuzcodes['pcodecount']++; $code = htmlspecialchars(str_replace('\"', '"', preg_replace("/^[nr]*(.+?)[nr]*$/is", "\1", $code))); $discuzcodes['codehtml'][$discuzcodes['pcodecount']] = "<br><br><div class="smalltxt" style="margin-left: 2em; margin-right: 2em"><textarea name="runcode$discuzcodes[codecount]" rows="1" cols="" style="height:px">$code</textarea><br><input type="button" value="运行代码" onclick="runCode(runcode$discuzcodes[codecount])"> <input type="button" value="复制代码" onclick="copycode(runcode$discuzcodes[codecount])"> <input type="button" value="另存代码" onclick="saveCode(runcode$discuzcodes[codecount])"> <script language="JavaScript">ffcod = delpost.runcode$discuzcodes[codecount] .value; ffcod = ffcod.replace(/<br />/g,''); delpost.runcode$discuzcodes[codecount] .value = ffcod;</script> 提示:您可以先修改部分代码再运行</div><br>"; $discuzcodes['codecount']++; return "[tDISCUZ_CODE_$discuzcodes[pcodecount]t]"; } //------- 添加 [php] php代码 [/php] 来高亮显示php代码,进行php语法着色 function phpcodedisp($code) { global $discuzcodes; $discuzcodes['pcodecount']++; $code = phphighlite(str_replace("\"", """, $code)); $discuzcodes['codehtml'][$discuzcodes['pcodecount']] = "<br><div class="msgheader"><div class="right"><a href="###" class="smalltxt" onclick="copycode($('phpcode$discuzcodes[codecount]'));">[复制PHP代码]</a></div>PHP代码如下:</div><div class="msgborder" id="phpcode$discuzcodes[codecount]">$code</div><br>"; $discuzcodes['codecount']++; return "[tDISCUZ_CODE_$discuzcodes[pcodecount]t]"; } function phphighlite($code) { if(!strpos($code,"<?n") && !strpos($code,'<?') && substr($code,0,2) != '<?') { $code = '<'.'?'.trim($code).' ?'.'>'; $addedtags = 1; } ob_start(); $oldlevel = error_reporting(0); highlight_string($code); error_reporting($oldlevel); $buffer = ob_get_contents(); ob_end_clean(); if ($addedtags) { $openingpos = strpos($buffer, '<?'); $closingpos = strrpos($buffer, '?'); $buffer = substr($buffer, 0, $openingpos).substr($buffer, $openingpos+5, $closingpos-($openingpos+5)).substr($buffer, $closingpos+5); } $buffer = str_replace('"', """, $buffer); $buffer = str_replace('<br />', '', $buffer); return $buffer; } //------- 结束 3.继续修改include/discuzcode.func.php 查找 $message = preg_replace("/s*[code](.+?)[/code]s*/ies", "codedisp('\1')", $message); 在其下面继续添加: [Copy to clipboard] [ - ]CODE: //------- runcode $message = preg_replace("/s*[runcode](.+?)[/runcode]s*/ies", "runcodedisp('\1')", $message); //------- php $message = preg_replace("/s*[php](.+?)[/php]s*/ies", "phpcodedisp('\1')", $message); [ 本帖最后由 yzxicq0 于 -9-4 : 编辑 ]
推荐整理分享Discuz!5的PHP代码高亮显示插件(黑暗中的舞者更新)(php论坛代码),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:php-zbarcode,php-zbarcode,php论坛源码下载,php论坛源码下载,php论坛源码下载,php论坛源码下载,discuz php8,php论坛代码,内容如对您有帮助,希望把文章链接给更多的朋友!
cache_lite试用 今天研究下pear的cache_lite。从
再次研究下cache_lite 晚上详细的看了下cache_lite,功能比我想象中的强大的多。当然目前我还没有发现它是否支持直接保存PHP代码来缓存的功能,不过我想应该是可以扩展实
给php新手谈谈我的学习心得 明天开始期末考试,接着后天就要回福州了,由于家里还没装网络,因此,得有一段时间不能来论坛了,在这之前,我想了下,我给新手解答过问题,