http://blog3.logosware.com/archives/tag/mac-xdebug
でも、一応メモとして残しておきます。
- komodo Remoto Debugging からMacのファイルをダウンロード
http://code.activestate.com/komodo/remotedebugging/ - 解凍してxdebug.so をコピー
sudo cp ./xdebug.so /usr/libexec/apache2/xdebug.so - php.iniにxdebugの設定を追記する。
[xDebug]
zend_extension="/usr/libexec/apache2/xdebug.so"
xdebug.remote_enable = On
xdebug.remote_handler = dbgp
xdebug.remote_host = localhost - apache 再起動
sudo apachectl graceful