我有一个使用PHP开发的简单Web服务(Restful),它纯粹是服务,根本没有网页。以前我只是使用Aptana作为文本编辑器,并将所有源文件放在WAMP服务器的www目录下。现在需要更多功能,所以我想使用Netbeans作为IDE并利用XDebug进行调试(之前我只是使用日志来查找错误)。但是我找不到合适的入门教程。我已经将php文件作为PHP应用程序导入到Netbeans 7.4中,但是我迷失了如何配置它以便它可以在WAMP服务器上“运行”并进行调试。任何人都可以告诉我如何进行基本配置或指出一些好的教程吗?
由于 射线
答案 0 :(得分:0)
你研究了什么?让我谷歌给你:php netbeans xdebug
第二个结果是Debugging PHP Source Code in the NetBeans IDE
在该教程中,它链接到如何为NetBeans设置XAMPP(而不是WAMP)的tutorial。
答案 1 :(得分:0)
感谢您在评论中提供的链接,现在它可以正常工作,这里是php.ini中的配置
[xdebug]
xdebug.remote_enable = on
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.idekey="netbeans-xdebug"
xdebug.remote_autostart=on
xdebug.profiler_enable = on
xdebug.profiler_enable_trigger = on
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir = "d:/wamp/tmp"
必须包含此行:“xdebug.remote_autostart = on”,之前我没有它,也没有xdebug.idekey,但xdebug.idekey并不重要,它可能与Options中的会话ID不同。