netbeans xdebug

xdebug配置

装了wamp后,xdebug默认就安装好了,为了能够用netbeans远程调试,配置文件里得加几句

[xdebug]
xdebug.remote_enable = on
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
xdebug.remote_port=9000

 Netbeans配置

工具选项

  •  常规=>Web浏览器=>Firefox
  •  PHP=>常规=>PHP 5解释器=><wamp>inphpphp5.x.xxphp.exe
  •  PHP=>调试:这里默认就行了,默认就是9000号端口

调试

打开要调试的文件,选择“调试=>调试文件”菜单即可

------------------------------------------------------------
本文由WindTaiL在cnblogs中发布,转载请注明出处
原文地址:https://www.cnblogs.com/windtail/p/3155624.html