Posted in PHP onApril 24, 2008
Beautify PHP,很好用的php格式化工具
https://github.com/topics/beautify-php
https://pear.php.net/package/PHP_Beautifier/download
https://sourceforge.net/projects/beautifyphp/
这个工具很好用, 再乱的代码瞬间就格式化好了
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)." ";
}
}
php格式化工具Beautify PHP小小BUG
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@