windows7下的xampp系统和aptana的集成(可debug)

阅读更多

首先下载aptana,我用的是2.05版本的,再下载安装pdt和zend debugger,这个就不多说了。

xampp我下的是1.7.3版本的,里面集成的主要组件的版本如下:

+ Apache 2.2.14 (IPV6 enabled)
  + MySQL 5.1.41 (Community Server) mit PBXT engine 1.0.09-rc
  + PHP 5.3.1 (PEAR, Mail_Mime, MDB2, Zend)
  + Perl 5.10.1 (Bundle::Apache2, Apache2::Request, Bundle::Apache::ASP, Bundle::Email, Bundle::DBD::mysql, DBD::SQlite, Randy Kobes PPM)

 

我最关心的就是php能不能实现调试功能吗,我曾经尝试着使用zend debugger,无奈总是装不上去,于是就想装xdebug。在网上下了一个php_xdebug-2.1.0-5.3-vc6.dll,放在了E:\soft\xampp\xampp\php\php_xdebug-2.1.0-5.3-vc6.dll,于是在php.ini最下面写

 

zend_extension_ts="E:\soft\xampp\xampp\php\php_xdebug-2.1.0-5.3-vc6.dll"
xdebug.remote_enable=true
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.profiler_enable=1
xdebug.profiler_output_dir="E:\soft\xampp\xampp\tmp"

 

于是在aptana下就可以轻松调试了。

你可能感兴趣的:(Aptana,Zend,PHP,MySQL,SQLite)