Notes from my search for an IDE for PHP.
I searched the web for info on PHP IDE:
“Seven great PHP IDEs compared”
“The Big PHP IDE Test: Why Use One And Which To Choose“
I need PHP IDE for MacOSX 10.5 / Intel.
You need a local server setup. I choose to use macports to install apache/php/mysql.
This was recommended buy fixing-my-php-woes-with-macports
For the Komodo, the xdebug module it came with did not work. I had to download and compiled xdebug:
sudo wget http://xdebug.org/files/xdebug-2.0.5.tgz
sudo tar xzf xdebug-2.0.5.tgz
cd xdebug-2.0.5
phpize
./configure –enable-xdebug
make
mkdir /usr/local/xdebug
cp modules/xdebug.so /usr/local/xdebug/
I added the following lines to /opt/local/etc/php.ini
JHT-macpro:bin jht$ grep xdebug /opt/local/etc/php.ini
;extension_dir = “/opt/local/xdebug/”
zend_extension=/opt/local/xdebug/xdebug.so
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.idekey=komodo
Netbean looks like the winner. Its free, well supported by a large company, and passes my initial test: debug wordpress on local install.