vote up 6 vote down
star

Are there any tools which support refactoring PHP code (renaming variables, extracting methods, finding method references, ...)? Thank you.

flag
add comment

9 Answers

vote up 3 vote down

Still my favorite refactoring tool is good ol' EditPlus in combination with Total Commander'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.

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

Editplus can search & replace through the current file, a selection or all opened files using normal text matching, regex matching or multiline matching. It really gives you full control :)

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).

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.

link|flag
add comment
vote up 2 vote down

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.

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.

link|flag
add comment
vote up 2 vote down

There is no refactoring support for PHP in Netbeans 6.5, its coming in future version though.

PDT eclipse plugin also does not support refactoring.

Aptana does not support refactoring either. I couldn't get goto definition to work either.

I end up using search and replace currently. I too would like at least rename function support.

link|flag
add comment
vote up 1 vote down

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.

link|flag
I use Netbeans 6.5 and you can do things like rename methods but it doesn't fix references in other files, even in files in the same project, which makes it mostly useless. – cletus Dec 25 at 14:49
add comment
vote up 1 vote down

rephactor is an automatic refactoring tool. It is still a bit incomplete, but it has a few basic refactorings.

Else, a good test suite is really the best tool for refactoring, you can have.

link|flag
add comment
vote up 0 vote down

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.

link|flag
add comment
vote up 0 vote down

As far as I know, the only IDEs that has any significant Refactoring support for PHP are Zend Studio 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.

link|flag
add comment
vote up 0 vote down

I read that the IDE Delphi for PHP will have refactoring capabilities in the release codenamed Crocodile, scheduled for early 2009. See this link for details.

link|flag
add comment
vote up -1 vote down

The IDE Aptana Studio does, IIRC, but I haven't used it for PHP recently. I'm guessing the NetBeans IDE with PHP tools does as well, and any PHP Eclipse plugins should too.

link|flag
add comment

Your Answer

Get an OpenID
or

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