Php code formatter / beautifier and php beautificaton in general - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T07:33:42Z http://stackoverflow.com/feeds/question/149600 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/149600/php-code-formatter-beautifier-and-php-beautificaton-in-general 4 Php code formatter / beautifier and php beautificaton in general deadprogrammer 2008-09-29T16:53:53Z 2009-04-30T04:29:08Z <p>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.</p> http://stackoverflow.com/questions/149600/php-code-formatter-beautifier-and-php-beautificaton-in-general/149612#149612 3 Answer by Ian P for Php code formatter / beautifier and php beautificaton in general Ian P 2008-09-29T16:55:52Z 2008-09-29T16:55:52Z <p>If you use Zend Development Environment, you can use the Indent Code feature (Ctrl+Shift+F).</p> http://stackoverflow.com/questions/149600/php-code-formatter-beautifier-and-php-beautificaton-in-general/149648#149648 2 Answer by Adam for Php code formatter / beautifier and php beautificaton in general Adam 2008-09-29T17:01:12Z 2008-09-29T17:01:12Z <p>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. </p> <p><a href="http://www.zend.com/en/products/studio/downloads" rel="nofollow">Zend Studio</a></p> <p>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.</p> http://stackoverflow.com/questions/149600/php-code-formatter-beautifier-and-php-beautificaton-in-general/149863#149863 2 Answer by micahwittman for Php code formatter / beautifier and php beautificaton in general micahwittman 2008-09-29T17:52:51Z 2008-09-29T17:52:51Z <p>Here's a php code beautifier (PHP of course) class:<br /> <a href="http://www.codeassembly.com/A-php-code-beautifier-that-works/" rel="nofollow">http://www.codeassembly.com/A-php-code-beautifier-that-works/</a></p> <p>and</p> <p>online demo:</p> <p><a href="http://www.codeassembly.com/examples/beautifier.php" rel="nofollow">http://www.codeassembly.com/examples/beautifier.php</a></p> http://stackoverflow.com/questions/149600/php-code-formatter-beautifier-and-php-beautificaton-in-general/150028#150028 5 Answer by ConroyP for Php code formatter / beautifier and php beautificaton in general ConroyP 2008-09-29T18:36:01Z 2008-09-29T18:36:01Z <p><a href="http://www.waterproof.fr/products/phpCodeBeautifier/" rel="nofollow">PHP Code Beautifier</a> is a useful free tool that should do what you're after, although their <a href="http://www.waterproof.fr/products/phpCodeBeautifier/download.php" rel="nofollow">download page</a> does require an account to be created.</p> <blockquote> <p>The tool has been declined into 3 versions:</p> <ul> <li>A GUI version which allow to process file visually.</li> <li>A command line version which allow to be batched or integrated with other tools (CVS, SubVersion, IDE ...).</li> <li>As an integrated tool of PHPEdit.</li> </ul> </blockquote> <p>Basically, it'll turn:</p> <pre><code>if($code == BAD){$action = REWRITE;}else{$action = KEEP;} for($i=0; $i&lt;10;$i++){while($j&gt;0){$j++;doCall($i+$j);if($k){$k/=10;}}} </code></pre> <p>into</p> <pre><code>if ($code == BAD) { $action = REWRITE; } else { $action = KEEP; } for($i = 0; $i &lt; 10;$i++) { while ($j &gt; 0) { $j++; doCall($i + $j); if ($k) { $k /= 10; } } } </code></pre> http://stackoverflow.com/questions/149600/php-code-formatter-beautifier-and-php-beautificaton-in-general/494295#494295 5 Answer by grom for Php code formatter / beautifier and php beautificaton in general grom 2009-01-30T02:28:14Z 2009-01-30T02:28:14Z <p>Well here is my very basic and rough script:</p> <pre><code>#!/usr/bin/php &lt;?php class Token { public $type; public $contents; public function __construct($rawToken) { if (is_array($rawToken)) { $this-&gt;type = $rawToken[0]; $this-&gt;contents = $rawToken[1]; } else { $this-&gt;type = -1; $this-&gt;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(&amp;$tokens, &amp;$i) { global $lineNo; $i++; $token = $tokens[$i]; while ($token-&gt;type == T_WHITESPACE) { $lineNo += substr($token-&gt;contents, "\n"); $i++; $token = $tokens[$i]; } } function nextToken(&amp;$j) { global $tokens, $i; $j = $i; do { $j++; $token = $tokens[$j]; } while ($token-&gt;type == T_WHITESPACE); return $token; } $OPERATORS = array('=', '.', '+', '-', '*', '/', '%', '||', '&amp;&amp;', '+=', '-=', '*=', '/=', '.=', '%=', '==', '!=', '&lt;=', '&gt;=', '&lt;', '&gt;', '===', '!=='); $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('?', '{', '=&gt;'); $WHITESPACE_AFTER = array(',', '?', '=&gt;'); 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 &lt; $n; $i++) { $token = $tokens[$i]; if ($token-&gt;contents == '?') { $matchingTernary = true; } if (in_array($token-&gt;type, $IMPORT_STATEMENTS) &amp;&amp; nextToken($j)-&gt;contents == '(') { $filteredTokens[] = $token; if ($tokens[$i + 1]-&gt;type != T_WHITESPACE) { $filteredTokens[] = new Token(array(T_WHITESPACE, ' ')); } $i = $j; do { $i++; $token = $tokens[$i]; if ($token-&gt;contents != ')') { $filteredTokens[] = $token; } } while ($token-&gt;contents != ')'); } elseif ($token-&gt;type == T_ELSE &amp;&amp; nextToken($j)-&gt;type == T_IF) { $i = $j; $filteredTokens[] = new Token(array(T_ELSEIF, 'elseif')); } elseif ($token-&gt;contents == ':') { if ($matchingTernary) { $matchingTernary = false; } elseif ($tokens[$i - 1]-&gt;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]-&gt;type == T_VARIABLE &amp;&amp; $tokens[$j + 1]-&gt;contents == '[' &amp;&amp; $tokens[$j + 2]-&gt;type == T_STRING &amp;&amp; preg_match('/[a-z_]+/', $tokens[$j + 2]-&gt;contents) &amp;&amp; $tokens[$j + 3]-&gt;contents == ']'; } // Second pass - add whitespace $matchingTernary = false; $doubleQuote = false; for ($i = 0, $n = count($tokens); $i &lt; $n; $i++) { $token = $tokens[$i]; if ($token-&gt;contents == '?') { $matchingTernary = true; } if ($token-&gt;contents == '"' &amp;&amp; isAssocArrayVariable(1) &amp;&amp; $tokens[$i + 5]-&gt;contents == '"') { /* * Handle case where the only thing quoted is the assoc array variable. * Eg. "$value[key]" */ $quote = $tokens[$i++]-&gt;contents; $var = $tokens[$i++]-&gt;contents; $openSquareBracket = $tokens[$i++]-&gt;contents; $str = $tokens[$i++]-&gt;contents; $closeSquareBracket = $tokens[$i++]-&gt;contents; $quote = $tokens[$i]-&gt;contents; echo $var . "['" . $str . "']"; $doubleQuote = false; continue; } if ($token-&gt;contents == '"') { $doubleQuote = !$doubleQuote; } if ($doubleQuote &amp;&amp; $token-&gt;contents == '"' &amp;&amp; isAssocArrayVariable(1)) { // don't echo " } elseif ($doubleQuote &amp;&amp; isAssocArrayVariable()) { if ($tokens[$i - 1]-&gt;contents != '"') { echo '" . '; } $var = $token-&gt;contents; $openSquareBracket = $tokens[++$i]-&gt;contents; $str = $tokens[++$i]-&gt;contents; $closeSquareBracket = $tokens[++$i]-&gt;contents; echo $var . "['" . $str . "']"; if ($tokens[$i + 1]-&gt;contents != '"') { echo ' . "'; } else { $i++; // process " $doubleQuote = false; } } elseif ($token-&gt;type == T_STRING &amp;&amp; $tokens[$i - 1]-&gt;contents == '[' &amp;&amp; $tokens[$i + 1]-&gt;contents == ']') { if (preg_match('/[a-z_]+/', $token-&gt;contents)) { echo "'" . $token-&gt;contents . "'"; } else { echo $token-&gt;contents; } } elseif ($token-&gt;type == T_ENCAPSED_AND_WHITESPACE || $token-&gt;type == T_STRING) { echo $token-&gt;contents; } elseif ($token-&gt;contents == '-' &amp;&amp; in_array($tokens[$i + 1]-&gt;type, array(T_LNUMBER, T_DNUMBER))) { echo '-'; } elseif (in_array($token-&gt;type, $CONTROL_STRUCTURES)) { echo $token-&gt;contents; if ($tokens[$i + 1]-&gt;type != T_WHITESPACE) { echo ' '; } } elseif ($token-&gt;contents == '}' &amp;&amp; in_array($tokens[$i + 1]-&gt;type, $CONTROL_STRUCTURES)) { echo '} '; } elseif ($token-&gt;contents == '=' &amp;&amp; $tokens[$i + 1]-&gt;contents == '&amp;') { if ($tokens[$i - 1]-&gt;type != T_WHITESPACE) { echo ' '; } $i++; // match &amp; echo '=&amp;'; if ($tokens[$i + 1]-&gt;type != T_WHITESPACE) { echo ' '; } } elseif ($token-&gt;contents == ':' &amp;&amp; $matchingTernary) { $matchingTernary = false; if ($tokens[$i - 1]-&gt;type != T_WHITESPACE) { echo ' '; } echo ':'; if ($tokens[$i + 1]-&gt;type != T_WHITESPACE) { echo ' '; } } elseif (in_array($token-&gt;contents, $WHITESPACE_BEFORE) &amp;&amp; $tokens[$i - 1]-&gt;type != T_WHITESPACE &amp;&amp; in_array($token-&gt;contents, $WHITESPACE_AFTER) &amp;&amp; $tokens[$i + 1]-&gt;type != T_WHITESPACE) { echo ' ' . $token-&gt;contents . ' '; } elseif (in_array($token-&gt;contents, $WHITESPACE_BEFORE) &amp;&amp; $tokens[$i - 1]-&gt;type != T_WHITESPACE) { echo ' ' . $token-&gt;contents; } elseif (in_array($token-&gt;contents, $WHITESPACE_AFTER) &amp;&amp; $tokens[$i + 1]-&gt;type != T_WHITESPACE) { echo $token-&gt;contents . ' '; } else { echo $token-&gt;contents; } } </code></pre> http://stackoverflow.com/questions/149600/php-code-formatter-beautifier-and-php-beautificaton-in-general/510175#510175 2 Answer by barfoon for Php code formatter / beautifier and php beautificaton in general barfoon 2009-02-04T05:31:23Z 2009-02-04T05:31:23Z <p>Check out <a href="http://www.mpsoftware.dk/phpdesigner.php" rel="nofollow">phpDesigner</a>, it has a beautifier tool that works pretty well.</p> http://stackoverflow.com/questions/149600/php-code-formatter-beautifier-and-php-beautificaton-in-general/805338#805338 0 Answer by SeanJA for Php code formatter / beautifier and php beautificaton in general SeanJA 2009-04-30T04:29:08Z 2009-04-30T04:29:08Z <p>What about this one:</p> <p><a href="http://universalindent.sourceforge.net/" rel="nofollow">http://universalindent.sourceforge.net/</a></p> <p>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... </p>