如何整理凌乱的PHP代码

时间:2012-01-04 19:05:54

标签: php comments indentation

伙计们,我有这个庞大的index.php文件,它是完整注释掉的代码,如:

/*

some code

*/

此外,缩进只是可怕而且无关紧要。

无论如何我可以整理这段代码,即删除注释的代码片并在某种程度上修复缩进?

3 个答案:

答案 0 :(得分:4)

通常一个好的IDE(Netbeans,Eclipse,大多数其他IDE ......)都有一个代码格式化程序功能。 只需点击Netbeans中的CTRL + SHITF + F就可以很好地缩进代码块 只需用它来格式化。至于注释掉的代码,你只需要手动删除它。

答案 1 :(得分:0)

如果所有其他方法都失败了,请使用PHP ...我使用了此测试文件http://pastebin.com/VJFzUWHM 在某些情况下,这可能会失败,但值得一试。这是结果文件http://pastebin.com/1rTYtfta

<?php

$string = file_get_contents('php.txt');

$string = preg_replace('#\/\*(.*?)\*\/#is', '', $string); # remove forward slash-asterisk asterisk-forward slash comments
$string = preg_replace('#(\#|\/\/)([^\n]+)#is', '', $string); # remove hash and 2x forward slash comments

echo $string;

?>

答案 2 :(得分:0)

尝试使用此工具,发布到我自己的网站,但多年未更新。不确定它是否有帮助,但很多人仍然使用它。

http://thephppro.com/tools/beautify.php