Do you know any good tools for nicely formatting messy php code? Preferably a script for Aptana/Eclipse, but a standalone tool will do too.
|
feedback
|
|
PHP Code Beautifier is a useful free tool that should do what you're after, although their download page does require an account to be created.
Basically, it'll turn:
into
| |||||||||||
feedback
|
|
Well here is my very basic and rough script:
| |||||||||||||||||
feedback
|
|
http://en.sourceforge.jp/projects/pdt-tools/ ^^^ will give you a proper CTRL+SHIFT+F Eclipse/Aptana PHP formatter like Java. See here for installation help.
| |||||||
feedback
|
|
There's a pear module that formats your code. PHP Beautifier | |||||||
feedback
|
|
If you use Zend Development Environment, you can use the Indent Code feature (Ctrl+Shift+F). | |||
|
feedback
|
|
The Zend Development Environment is now an Eclipse plugin, you may be able to run it alongside Aptana and just use it's Indent Code feature. I haven't upgraded to the Eclipse plugin yet myself, I love the previous ZDE so much. Though now that I've started actually using Eclipse for other languages, I'm almost ready to make the leap. | |||
|
feedback
|
|
Here's a php code beautifier (PHP of course) class: and online demo: | |||
|
feedback
|
|
Check out phpDesigner, it has a beautifier tool that works pretty well. | |||
|
feedback
|
|
What about this one: http://universalindent.sourceforge.net/ It combines a bunch of formatters out there, and will generate the scripts you need so you can pass them out and get your team members to use them before committing next time... Though... formatters might mess up your code and render it unusable... | |||||||||||||
feedback
|
|
Here's an Object / Array beautifier. http://phillihp.com/toolz/php-array-beautifier/ | |||
|
feedback
|
|
Our PHP Formatter will reliably format your code. It uses a compiler-based front end to parse the code, so it doesn't misinterpret the code and damage it. Consequently its formatted output always works. | |||||||||||
feedback
|
|
The simplest solution is to just use an IDE that has this built in. If you're going to be writing code in PHP on a regular a regular basis, just drop the $60 for PHPStorm. You won't regret it. http://www.jetbrains.com/phpstorm/ It lets you format your code however you like using a simple keyboard shortcut at the file or directory level, and has a zillion other great features. | |||
feedback
|
|
phpformatter.com works best "This free online PHP Formatter is designed so that you can beautify all your PHP script with the style that you prefer" | |||
|
feedback
|
