Tools for PHP code refactoring - Stack Overflow most recent 30 from stackoverflow.com 2009-11-08T14:49:15Z http://stackoverflow.com/feeds/question/19758 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/19758/tools-for-php-code-refactoring 6 Tools for PHP code refactoring Tihy 2008-08-21T12:45:26Z 2009-10-29T15:20:41Z <p>Are there any tools which support refactoring PHP code (renaming variables, extracting methods, finding method references, ...)? Thank you.</p> http://stackoverflow.com/questions/19758/tools-for-php-code-refactoring/19769#19769 0 Answer by Brian Warshaw for Tools for PHP code refactoring Brian Warshaw 2008-08-21T12:52:06Z 2008-08-21T12:52:06Z <p>PDT for Eclipse supports some basic refactoring (that I know of). You can rename classes and have them automatically renamed when they're referenced, and I think you can even move files and have their include/require references changed, too.</p> http://stackoverflow.com/questions/19758/tools-for-php-code-refactoring/19776#19776 1 Answer by Mark Biek for Tools for PHP code refactoring Mark Biek 2008-08-21T12:55:19Z 2008-08-21T12:55:19Z <p>Maybe it's just because I'm still getting comfortable with the concepts of refactoring but I don't like having a tool do it for me.</p> <p>I still prefer to do most refactoring manually because it forces me to slow down and really think about what I'm moving around and why.</p> http://stackoverflow.com/questions/19758/tools-for-php-code-refactoring/19781#19781 1 Answer by Ross for Tools for PHP code refactoring Ross 2008-08-21T12:58:25Z 2008-08-21T12:58:25Z <p>The NetBeans IDE has some refactoring capability but it doesn't always seem to work. I am however using 6.1 with early PHP access. I expect 6.5 to have better refactoring capabilities with PHP.</p> http://stackoverflow.com/questions/19758/tools-for-php-code-refactoring/20164#20164 1 Answer by grom for Tools for PHP code refactoring grom 2008-08-21T14:58:55Z 2008-08-21T14:58:55Z <p>There is no refactoring support for PHP in Netbeans 6.5, its coming in future version though.</p> <p>PDT eclipse plugin also does not support refactoring.</p> <p>Aptana does not support refactoring either. I couldn't get goto definition to work either.</p> <p>I end up using search and replace currently. I too would like at least rename function support.</p> http://stackoverflow.com/questions/19758/tools-for-php-code-refactoring/152173#152173 0 Answer by troelskn for Tools for PHP code refactoring troelskn 2008-09-30T08:06:06Z 2008-09-30T08:06:06Z <p><a href="http://rephactor.sourceforge.net/user-guide.php" rel="nofollow">rephactor</a> is an automatic refactoring tool. It is still a bit incomplete, but it has a few basic refactorings.</p> <p>Else, a good test suite is really the best tool for refactoring, you can have.</p> http://stackoverflow.com/questions/19758/tools-for-php-code-refactoring/152191#152191 2 Answer by SchizoDuckie for Tools for PHP code refactoring SchizoDuckie 2008-09-30T08:13:39Z 2008-09-30T08:13:39Z <p>Still my favorite refactoring tool is good ol' <a href="http://www.editplus.com" rel="nofollow">EditPlus</a> in combination with <a href="http://www.totalcmd.com" rel="nofollow">Total Commander</a>'s super fast file search. (Hint: Alt+F7) I totally agree with Mark Biek's reply that you want to have full control over what is replaced where and when.</p> <p>Whenever i have to do a some refactoring, i create a list in total commander of the files i want to alter by either searching with the built-in function or just by selecting them, and then i drag them all to EditPlus</p> <p>Editplus can search &amp; replace through the current file, a selection or <strong><em>all opened files</em></strong> using normal text matching, regex matching or multiline matching. It really gives you full control :)</p> <p>Also, what comes in handy for code refactoring is EditPlus's Macro Recorder (Ctrl + Q to start recording macro 1-9 and Alt + 1-9 to playback a macro). </p> <p>Once you get the hang of it, you know you can just search for a variable, ctrl + shift + (home || end || arrow keys) through your code, delete, copy/paste and use al that keyboard wizardry to like, for instance, convert a CSV file into a bunch of SQL queries within 30 seconds.</p> http://stackoverflow.com/questions/19758/tools-for-php-code-refactoring/225290#225290 0 Answer by orj for Tools for PHP code refactoring orj 2008-10-22T11:13:38Z 2008-10-22T11:13:38Z <p>As far as I know, the only IDEs that has any significant Refactoring support for PHP are <a href="http://www.zend.com/en/products/studio/" rel="nofollow">Zend Studio</a> from the makers of PHP and the Eclipse PHP plugin. Though the features are very basic. Nothing that I know of has the features of products like Resharper for C# etc.</p> http://stackoverflow.com/questions/19758/tools-for-php-code-refactoring/226409#226409 0 Answer by Shunyata Kharg for Tools for PHP code refactoring Shunyata Kharg 2008-10-22T15:52:19Z 2008-10-22T15:52:19Z <p>I read that the IDE Delphi for PHP will have refactoring capabilities in the release codenamed Crocodile, scheduled for early 2009. See <a href="http://dn.codegear.com/article/37662" rel="nofollow">this link</a> for details. </p> http://stackoverflow.com/questions/19758/tools-for-php-code-refactoring/1644492#1644492 0 Answer by Fedyashev Nikita for Tools for PHP code refactoring Fedyashev Nikita 2009-10-29T15:20:41Z 2009-10-29T15:20:41Z <p>I personally prefer <strong>PHPEclipse</strong> IDE as my primary development tool. But I really miss basic "replace everywhere in the project" refactoring there.</p> <p>But very simple <strong>find</strong>/<strong>sed</strong> command can solve it easily:</p> <pre><code>find . -type f -name "*Controller.php" -print0 \ | xargs -0 sed -i 's/string1/string2/g' </code></pre> <p>So using this intelligently you can find references, renaming, removing and make any sort of manipulations with the source code.</p> <p>BTW: you even can not remember all this parameters and attributes - just type it once and then call it through <a href="http://superuser.com/questions/7414/how-can-i-search-the-bash-history-and-rerun-a-command">reverse-i-search</a>.</p> <p>Hope this helps.</p>