当前位置:  开发笔记 > 编程语言 > 正文

PHP语法高亮

如何解决《PHP语法高亮》经验,为你挑选了3个好方法。

我正在寻找可以自定义的PHP语法高亮引擎(即我可以为新语言提供自己的标记器)并且可以同时处理多种语言(即在同一输出页面上).这个引擎必须与CSS类一起很好地工作,即它应该通过插入class属性装饰的元素来格式化输出.可扩展模式的奖励点.

搜索客户端语法高亮脚本(JavaScript).

到目前为止,我一直坚持使用GeSHi.不幸的是,由于几个原因,GeSHi失败了.主要原因是不同的语言文件定义了完全不同的,不一致的样式.我已经花了好几个小时试图将不同的语言定义重构为一个共同点,但由于大多数定义文件本身都非常糟糕,我最终还是希望切换.

理想情况下,我想要一个类似于CodeRay,Pygments或JavaScript dp.SyntaxHighlighter的API.

澄清:

我在找编写的代码高亮软件 PHP中,没有 PHP(因为我需要用它从内PHP).



1> Konrad Rudol..:

由于没有现有工具满足我的需求,我自己写了.瞧,看哪:

的HyperLight

使用非常简单:只需使用

 

突出代码.编写新的语言定义也相对容易 - 使用正则表达式和功能强大但简单的状态机.顺便说一句,我仍然需要很多定义,所以请随时贡献.


添加并不难.奖励![这里](http://pastebin.com/A7A7zrED)是我的通用代码荧光笔,可以合理地处理多种语言.测试:Java,C#,JavaScript,AS3,C,C++,Lua

2> micahwittman..:

[我将此答案标记为社区Wiki,因为您特别寻找Javascript]

http://softwaremaniacs.org/soft/highlight/是一个PHP(加上以下支持的其他语言列表)语法高亮库:

Python,Ruby,Perl,PHP,XML,HTML,CSS,Django,Javascript,VBScript,Delphi,Java,C++,C#,Lisp,RenderMan(RSL和RIB),Maya嵌入式语言,SQL,SmallTalk,Axapta,1C,Ini ,Diff,DOS .bat,Bash

它使用样式标记.

它也已集成在dojo工具包中(作为dojox项目:dojox.lang.highlight)

虽然不是最常用的运行网络服务器的方式,严格来说,Javascript不仅在客户端实现,而且还有服务器端Javascript引擎/平台组合.



3> Taufik Nurro..:

我在这里找到了用PHP编写的这个简单的通用语法高亮显示并修改了一下:

 http://phoboslab.org/log/2007/08/generic-syntax-highlighting-with-regular-expressions
 * Usage => `echo SyntaxHighlight::process('source code here');`
 */

class SyntaxHighlight {
    public static function process($s) {
        $s = htmlspecialchars($s);

        // Workaround for escaped backslashes
        $s = str_replace('\\\\','\\\\', $s); 

        $regexp = array(

            // Comments/Strings
            '/(
                \/\*.*?\*\/|
                \/\/.*?\n|
                \#.[^a-fA-F0-9]+?\n|
                \<\!\-\-[\s\S]+\-\-\>|
                (? 'self::replaceId($tokens,\'$1\')',

            // Punctuations
            '/([\-\!\%\^\*\(\)\+\|\~\=\`\{\}\[\]\:\"\'<>\?\,\.\/]+)/'
            => '$1',

            // Numbers (also look for Hex)
            '/(? '$1',

            // Make the bold assumption that an
            // all uppercase word has a special meaning
            '/(?|\#)(
                [A-Z_0-9]{2,}
            )(?!\w)/x'
            => '$1',

            // Keywords
            '/(?)(
                and|or|xor|for|do|while|foreach|as|return|die|exit|if|then|else|
                elseif|new|delete|try|throw|catch|finally|class|function|string|
                array|object|resource|var|bool|boolean|int|integer|float|double|
                real|string|array|global|const|static|public|private|protected|
                published|extends|switch|true|false|null|void|this|self|struct|
                char|signed|unsigned|short|long
            )(?!\w|=")/ix'
            => '$1',

            // PHP/Perl-Style Vars: $var, %var, @var
            '/(? '$1'

        );

        $tokens = array(); // This array will be filled from the regexp-callback

        $s = preg_replace(array_keys($regexp), array_values($regexp), $s);

        // Paste the comments and strings back in again
        $s = str_replace(array_keys($tokens), array_values($tokens), $s);

        // Delete the "Escaped Backslash Workaround Token" (TM)
        // and replace tabs with four spaces.
        $s = str_replace(array('', "\t"), array('', '    '), $s);

        return '
' . $s . '
'; } // Regexp-Callback to replace every comment or string with a uniqid and save // the matched text in an array // This way, strings and comments will be stripped out and wont be processed // by the other expressions searching for keywords etc. private static function replaceId(&$a, $match) { $id = "##r" . uniqid() . "##"; // String or Comment? if(substr($match, 0, 2) == '//' || substr($match, 0, 2) == '/*' || substr($match, 0, 2) == '##' || substr($match, 0, 7) == '<!--') { $a[$id] = '' . $match . ''; } else { $a[$id] = '' . $match . ''; } return $id; } } ?>

演示: http ://phpfiddle.org/lite/code/1sf-htn


更新

我刚刚在这里创建了我自己的JavaScript通用语法荧光笔的PHP端口→ https://github.com/tovic/generic-syntax-highlighter/blob/master/generic-syntax-highlighter.php

如何使用:


推荐阅读
牛尾巴2010
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有