I use Eclipse as PHP IDE with several plugins.
I’d share on this blog my experience with Eclipse to write my PHP code.
Before I always used vi to write my code but I was looking for another solution to be able to make easy debug.
I tested several IDE : Zend Studio, Anjuta, Bluefish, etc… I was happy with some of them but never very happy, not free, debug not available, debug but not with extra modules not available in the interpretor delivered with the IDE, etc..
So I decided finaly to try Eclipse… and the result is : I’m very very happy with it. Of course I configured it with some extra modules :
- phpeclipse : Integration of PHP environment and debug
- subeclipse : Integration of Subversion
- viPlugin : finally and IDE with vi commands… a dream came true 😉
Note: viPlugin is not gratis anymore, but an old version is always available on sourceforge.
As I like to test new distribution, I switched my gentoo for the new Fedora Core 6, and I’m happy with it for the moment !
In the following section I describe how to configure your system to enable the debugger:
I created a rpm for the DBG, available here.
Then I modified the new file added, /etc/php.d/dbg.ini, with that rpm as follows :
; Enable dbg extension module ; added by lefred@scarlet.be extension=dbg.so [debugger] debugger.enabled = true debugger.profiler_enabled = true
In Eclipse, select in the toolbar Run, Debug and in a new debug environment, enable Remote Debug :
Enter the PHP interpreter :
Run the debugger.
In your code add a breakpoint (double click in the margin) :
Then open firefox (or any opensource browser) and add the following line, ?DBGSESSID=1@localhost:10001 to the url of your program :
And as you can see, the program will stop and in Eclipse you can go step by step in your PHP code and see the content of the variables :
You can use F5 to run the program step by step.
I hope this entry will help you and will give you the desire to test Eclipse to code PHP.
I would like to suggest Codelobster PHP Edition – http://www.codelobster.com
This free PHP IDE works best for me.