一、phpstuday设置1.开启phpstudy集成的xdebug插件2.首先查询当前PHP的版本3.在phpstudy的安装目录,找到当前的php版本所在的路径(D:\phpStudy\php\php-5.4.45)在php.ini文件最后追加如下信息:[XDebug];开启自动跟踪xdebug.auto_trace=On;开启异常跟踪xdebug.show_exception_trace=On;开启远程调试自动启动xdebug.remote_autostart=On;开启远程调试xdebug.remote_enable=On;收集变量xdebug.collect_vars=On;收集返回值xdebug.collect_return=On;收集参数xdebug.collect_params=Onxdebug.profiler_append=0xdebug.profiler_enable=1xdebug.profiler_enable_trigger=0xdebug.profiler_output_dir=D:\phpStudy\tmp\xdebugxdebug.trace_output_dir=D:\phpStudy\tmp\xdebugxdebug.profiler_output_name=cache.out.%t-%sxdebug.remote_enable=1xdebug.remote_handler=dbgpxdebug.remote_host=127.0.0.1zend_extension=D:\phpStudy\php\php-5.4.45\ext\php_xdebug.dllxdebug.remote_port=9000xdebug.remote_mode=reqxdebug.idekey=PHPSTORM二、eclipse配置1.在Windows-Preferences里面配置下PHPExecutables2.在Windows-Preferences里面配置下PHPserver3.在Windows-Preferences里面配置php下的debug4.断点调试1.在php代码块打上断点2.在浏览器输入要访问的地址就会进入断点3.注意此访问地址和phpstudy中的站点配置有关