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.

link|improve this question

48% accept rate
feedback

13 Answers

up vote 8 down vote accepted
+50

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.

The tool has been declined into 3 versions:

  • A GUI version which allow to process file visually.
  • A command line version which allow to be batched or integrated with other tools (CVS, SubVersion, IDE ...).
  • As an integrated tool of PHPEdit.

Basically, it'll turn:

if($code == BAD){$action = REWRITE;}else{$action = KEEP;}
for($i=0; $i<10;$i++){while($j>0){$j++;doCall($i+$j);if($k){$k/=10;}}}

into

if ($code == BAD) {
    $action = REWRITE;
} else {
    $action = KEEP;
}
for($i = 0; $i < 10;$i++) {
    while ($j > 0) {
        $j++;
        doCall($i + $j);
        if ($k) {
            $k /= 10;
        }
    }
}
link|improve this answer
1  
FWIW, this appears to be a closed-source app and is not available for Mac OS X. – nohat Oct 6 '09 at 17:45
1  
Did this actually work for anyone? I tried the example command-line on a well-formatted script and it produced a very uneven indentation: 8 spaces for the first line of each function but 8 or 9 for the remaining lines (seemed random). Plus the closing brace for functions was always indented to 9 spaces. – David Harkness Jun 10 '11 at 18:11
I can confirm. It creates code which needs to be formatted one more time with another tool :| – Pawka Sep 6 '11 at 23:02
feedback

Well here is my very basic and rough script:

#!/usr/bin/php
<?php
class Token {
    public $type;
    public $contents;

    public function __construct($rawToken) {
        if (is_array($rawToken)) {
            $this->type = $rawToken[0];
            $this->contents = $rawToken[1];
        } else {
            $this->type = -1;
            $this->contents = $rawToken;
        }
    }
}

$file = $argv[1];
$code = file_get_contents($file);

$rawTokens = token_get_all($code);
$tokens = array();
foreach ($rawTokens as $rawToken) {
    $tokens[] = new Token($rawToken);
}

function skipWhitespace(&$tokens, &$i) {
    global $lineNo;
    $i++;
    $token = $tokens[$i];
    while ($token->type == T_WHITESPACE) {
        $lineNo += substr($token->contents, "\n");
        $i++;
        $token = $tokens[$i];
    }
}

function nextToken(&$j) {
    global $tokens, $i;
    $j = $i;
    do {
        $j++;
        $token = $tokens[$j];
    } while ($token->type == T_WHITESPACE);
    return $token;
}

$OPERATORS = array('=', '.', '+', '-', '*', '/', '%', '||', '&&', '+=', '-=', '*=', '/=', '.=', '%=', '==', '!=', '<=', '>=', '<', '>', '===', '!==');

$IMPORT_STATEMENTS = array(T_REQUIRE, T_REQUIRE_ONCE, T_INCLUDE, T_INCLUDE_ONCE);

$CONTROL_STRUCTURES = array(T_IF, T_ELSEIF, T_FOREACH, T_FOR, T_WHILE, T_SWITCH, T_ELSE);
$WHITESPACE_BEFORE = array('?', '{', '=>');
$WHITESPACE_AFTER = array(',', '?', '=>');

foreach ($OPERATORS as $op) {
    $WHITESPACE_BEFORE[] = $op;
    $WHITESPACE_AFTER[] = $op;
}

$matchingTernary = false;

// First pass - filter out unwanted tokens
$filteredTokens = array();
for ($i = 0, $n = count($tokens); $i < $n; $i++) {
    $token = $tokens[$i];
    if ($token->contents == '?') {
        $matchingTernary = true;
    }
    if (in_array($token->type, $IMPORT_STATEMENTS) && nextToken($j)->contents == '(') {
        $filteredTokens[] = $token;
        if ($tokens[$i + 1]->type != T_WHITESPACE) {
            $filteredTokens[] = new Token(array(T_WHITESPACE, ' '));
        }
        $i = $j;
        do {
            $i++;
            $token = $tokens[$i];
            if ($token->contents != ')') {
                $filteredTokens[] = $token;
            }
        } while ($token->contents != ')');
    } elseif ($token->type == T_ELSE && nextToken($j)->type == T_IF) {
        $i = $j;
        $filteredTokens[] = new Token(array(T_ELSEIF, 'elseif'));
    } elseif ($token->contents == ':') {
        if ($matchingTernary) {
            $matchingTernary = false;
        } elseif ($tokens[$i - 1]->type == T_WHITESPACE) {
            array_pop($filteredTokens); // Remove whitespace before
        }
        $filteredTokens[] = $token;
    } else {
        $filteredTokens[] = $token;
    }
}
$tokens = $filteredTokens;

function isAssocArrayVariable($offset = 0) {
    global $tokens, $i;
    $j = $i + $offset;
    return $tokens[$j]->type == T_VARIABLE &&
        $tokens[$j + 1]->contents == '[' &&
        $tokens[$j + 2]->type == T_STRING &&
        preg_match('/[a-z_]+/', $tokens[$j + 2]->contents) &&
        $tokens[$j + 3]->contents == ']';
}

// Second pass - add whitespace
$matchingTernary = false;
$doubleQuote = false;
for ($i = 0, $n = count($tokens); $i < $n; $i++) {
    $token = $tokens[$i];
    if ($token->contents == '?') {
        $matchingTernary = true;
    }
    if ($token->contents == '"' && isAssocArrayVariable(1) && $tokens[$i + 5]->contents == '"') {
        /*
         * Handle case where the only thing quoted is the assoc array variable.
         * Eg. "$value[key]"
         */
        $quote = $tokens[$i++]->contents;
        $var = $tokens[$i++]->contents;
        $openSquareBracket = $tokens[$i++]->contents;
        $str = $tokens[$i++]->contents;
        $closeSquareBracket = $tokens[$i++]->contents;
        $quote = $tokens[$i]->contents;        
        echo $var . "['" . $str . "']";
        $doubleQuote = false;
        continue;
    }
    if ($token->contents == '"') {
        $doubleQuote = !$doubleQuote;
    }
    if ($doubleQuote && $token->contents == '"' && isAssocArrayVariable(1)) {
        // don't echo "
    } elseif ($doubleQuote && isAssocArrayVariable()) {
        if ($tokens[$i - 1]->contents != '"') {
            echo '" . ';
        }
        $var = $token->contents;
        $openSquareBracket = $tokens[++$i]->contents;
        $str = $tokens[++$i]->contents;
        $closeSquareBracket = $tokens[++$i]->contents;
        echo $var . "['" . $str . "']";
        if ($tokens[$i + 1]->contents != '"') {
            echo ' . "';
        } else {
            $i++; // process "
            $doubleQuote = false;
        }
    } elseif ($token->type == T_STRING && $tokens[$i - 1]->contents == '[' && $tokens[$i + 1]->contents == ']') {
        if (preg_match('/[a-z_]+/', $token->contents)) {
            echo "'" . $token->contents . "'";
        } else {
            echo $token->contents;
        }
    } elseif ($token->type == T_ENCAPSED_AND_WHITESPACE || $token->type == T_STRING) {
        echo $token->contents;
    } elseif ($token->contents == '-' && in_array($tokens[$i + 1]->type, array(T_LNUMBER, T_DNUMBER))) {
        echo '-';
    } elseif (in_array($token->type, $CONTROL_STRUCTURES)) {
        echo $token->contents;
        if ($tokens[$i + 1]->type != T_WHITESPACE) {
            echo ' ';
        }
    } elseif ($token->contents == '}' && in_array($tokens[$i + 1]->type, $CONTROL_STRUCTURES)) {
        echo '} ';
    } elseif ($token->contents == '=' && $tokens[$i + 1]->contents == '&') {
        if ($tokens[$i - 1]->type != T_WHITESPACE) {
            echo ' ';
        }
        $i++; // match &
        echo '=&';
        if ($tokens[$i + 1]->type != T_WHITESPACE) {
            echo ' ';          
        }
    } elseif ($token->contents == ':' && $matchingTernary) {
        $matchingTernary = false;
        if ($tokens[$i - 1]->type != T_WHITESPACE) {
            echo ' ';
        }
        echo ':';
        if ($tokens[$i + 1]->type != T_WHITESPACE) {
            echo ' ';
        }
    } elseif (in_array($token->contents, $WHITESPACE_BEFORE) && $tokens[$i - 1]->type != T_WHITESPACE &&
        in_array($token->contents, $WHITESPACE_AFTER) && $tokens[$i + 1]->type != T_WHITESPACE) {
        echo ' ' . $token->contents . ' ';
    } elseif (in_array($token->contents, $WHITESPACE_BEFORE) && $tokens[$i - 1]->type != T_WHITESPACE) {
        echo ' ' . $token->contents;
    } elseif (in_array($token->contents, $WHITESPACE_AFTER) && $tokens[$i + 1]->type != T_WHITESPACE) {
        echo $token->contents . ' ';
    } else {
        echo $token->contents;
    }
}
link|improve this answer
12  
Why use an existing, tested tool when you can write your own? +1 for writing it in php. – postfuturist Jan 31 '09 at 0:26
1  
WHAT? Did you actually wrote it? – M28 May 19 '10 at 22:46
2  
Yes I wrote my own cause I couldn't find any existing one that I was happy with. – grom May 20 '10 at 0:11
Can someone please turn this into an Eclipse plugin? – Randell Sep 22 '10 at 3:16
Have you used it to format your formatter source? :-) – Pawka Sep 6 '11 at 22:13
show 1 more comment
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.

eclipse php code formatter

link|improve this answer
installation instructions link is no longer available – Gary Jun 1 '11 at 15:41
Just loaded fine for me. Page title is, "Aptana and Eclispe - Code Formatter for PHP Development Tools for Eclipse". – Chris Jun 1 '11 at 18:14
The project seems to be dead on sourceforge. Di you know where I can it now ? – deadalnix Oct 12 '11 at 14:31
feedback

There's a pear module that formats your code. PHP Beautifier

link|improve this answer
This looks to have promise, but I couldn't get most of the options to work (e.g. class/function brace position and newlines before else). Plus it removes all blank lines, even between functions and class properties, and I couldn't see a list of tokens for the NewLines filter. Is there a mailing list for this project? – David Harkness Jun 10 '11 at 18:15
Later I discovered that it was chewing up the blank lines. =( – projecktzero Jun 12 '11 at 2:17
Well, the good thing is: It is FOSS, so can you extend it to your liking. – Deckard May 20 at 20:14
feedback

If you use Zend Development Environment, you can use the Indent Code feature (Ctrl+Shift+F).

link|improve this answer
Also included in Eclipse – Bob Fanger Feb 1 '09 at 17:33
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.

Zend Studio

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.

link|improve this answer
feedback

Here's a php code beautifier (PHP of course) class:
http://www.codeassembly.com/A-php-code-beautifier-that-works/

and

online demo:

http://www.codeassembly.com/examples/beautifier.php

link|improve this answer
feedback

Check out phpDesigner, it has a beautifier tool that works pretty well.

link|improve this answer
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...

link|improve this answer
2  
If the code is unusable, what's the point of using this formatter? – Viet Apr 27 '10 at 1:26
Any formatter that runs automatically will have this risk, so it is worth noting – SeanJA Apr 27 '10 at 14:02
Formatters don't have to break your code. They have to parse it accurately. Those that "parse" using regexes usually fail to do so, thus... breakage. – Ira Baxter May 18 '10 at 4:39
It could also run out of memory or run into an exception or you could write some code that the parser does not understand (features that have been added to a more recent version of the language but are not yet supported by your parser). – SeanJA May 18 '10 at 20:17
A formatter isn't likely to run out of memory; a gigabyte of RAM is a lot even compare to 100K lines of PHP script. If you can write code that the parser doesn't understand, then the parser is stupidly implemented; good ones are not, and good ones are up-to-date with respect to the PHP langauge facilities. – Ira Baxter May 19 '10 at 16:07
show 2 more comments
feedback

Here's an Object / Array beautifier. http://phillihp.com/toolz/php-array-beautifier/

link|improve this answer
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.

link|improve this answer
1  
$50 is a bit much for something I can't even try before I buy. – deadprogrammer May 19 '10 at 16:05
You can try it. Go to the download page. – Ira Baxter May 19 '10 at 16:09
How does a "compiler based front end" magically save you from bugs in your formatter code? – cweiske Apr 30 '11 at 12:02
@Cweiske: It doesnt. But because it is intended for heavy-duty use, it is built on extremely solid foundations, including machinery to correctly capture lexemes (especially HTML text and string literals with their complex syntax in PHP), and a huge amount of energy invested in careful testing. This is much more reliable than some ad hoc formatter based on regular expressions and string hacking, which often make mistakes when encountering complex syntax such as strings and comments, which can contain things that look like code. – Ira Baxter Apr 30 '11 at 13:31
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.

link|improve this answer
oh, also NetBeans AND Eclipse have one built in too and they are both free so I really don't understand the point of this question... – Aaron Apr 17 at 21:35
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"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.