Tools for PHP code refactoring - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T12:57:20Zhttp://stackoverflow.com/feeds/question/19758http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/19758/tools-for-php-code-refactoring7Tools for PHP code refactoringTihy2008-08-21T12:45:26Z2009-11-08T18:52:55Z
<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#197690Answer by Brian Warshaw for Tools for PHP code refactoringBrian Warshaw2008-08-21T12:52:06Z2008-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#197761Answer by Mark Biek for Tools for PHP code refactoringMark Biek2008-08-21T12:55:19Z2008-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#197811Answer by Ross for Tools for PHP code refactoringRoss2008-08-21T12:58:25Z2008-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#201641Answer by grom for Tools for PHP code refactoringgrom2008-08-21T14:58:55Z2008-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#1521731Answer by troelskn for Tools for PHP code refactoringtroelskn2008-09-30T08:06:06Z2008-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#1521912Answer by SchizoDuckie for Tools for PHP code refactoringSchizoDuckie2008-09-30T08:13:39Z2008-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 & 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#2252900Answer by orj for Tools for PHP code refactoringorj2008-10-22T11:13:38Z2008-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#2264090Answer by Shunyata Kharg for Tools for PHP code refactoringShunyata Kharg2008-10-22T15:52:19Z2008-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#16444920Answer by Fedyashev Nikita for Tools for PHP code refactoringFedyashev Nikita2009-10-29T15:20:41Z2009-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>
http://stackoverflow.com/questions/19758/tools-for-php-code-refactoring/1697505#16975050Answer by matthy for Tools for PHP code refactoringmatthy2009-11-08T18:52:55Z2009-11-08T18:52:55Z<p>Zend Studio can Refactor a bit.....</p>