欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php格式化工具Beautify PHP小小BUG

程序员文章站 2023-02-01 13:48:03
beautify php,很好用的php格式化工具 http://pear.php.net/package/php_beautifier/download最近组...

beautify php,很好用的php格式化工具
http://www.bierkandt.org/beautify/
http://pear.php.net/package/php_beautifier/download

最近组内来新人,他们代码不太规范的时候看得实在不舒服

这个工具实在很好用,再乱的代码瞬间就格式化好了

丢到linux下还可以快速批量处理@.@

好了,以下是本帖主题:

beautify php格式化符号时,遗漏了^=和&=判断,

在beautify_php.class.inc第426行,增加这两个符号

                       // add space before chars = < >
                        if ($i > 0 and !$this->_comment) {
                            if (($a[$i] == "=" or $a[$i] == "<" or $a[$i] == ">" or $a[$i] == "*")
                                and preg_match("/([ |!|=|.|<|>|-|+|*|/|^|&]+)/", $a[$i-1]) == 0) {
                                $this->_outstr  = rtrim($this->_outstr)." ";
                            }
                        }