PHP code polisher - exists anywhere?
Could you开发者_开发百科 please recommend some software that will do PHP code polishing according to pre-defined formatting rules?
Thanks!
I use Polystyle. It's quite nice and has very customizable rules. Costs $15, trial version is available. Is worth the money.
There are free ones around as well. I think there is a good formatter in some Eclipse PHP package (I forgot the name) and there is the on-line PHP Beautifier service (that one doesn't have any formatting rules, though).
I use codesniffer (http://pear.php.net/package/PHP_CodeSniffer) to check my code and keep it nice and tidy. It doesn't do any re-formatting tho, just displays a list of errors based on whichever standard you choose to check against then you go fix them by hand. Personally I prefer that tho. Its also very flexible and you can add your own standards or amend the existing ones using php
精彩评论