首页 > 代码库 > netbeans调试配置
netbeans调试配置
apache端口8050,xdebug端口9000
1.把项目放到apache的htdocs下(一定要放在htdocs上,要么调试的时候xdebug会一直卡在“等待连接中”)
2.把php_xdebug-2.1.2-5.2-vc6.dll拷贝到php安装目录下的ext目录下
3.配置php.ini
zend_extension_ts="D:/php-5.2.17/ext/php_xdebug-2.1.2-5.2-vc6.dll"
[xdebug]
xdebug.remote_enable=on
xdebug.profiler_enable_trigger = off
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir="D:/tmp"
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
xdebug.remote_port=9000
[xdebug]
xdebug.remote_enable=on
xdebug.profiler_enable_trigger = off
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir="D:/tmp"
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
xdebug.remote_port=9000
4.netbeans中
1)常规->选择流程其
2)php->调试输入会话ID(会话ID可在phpinfo中查看“xdebug.idekey”)
启动调试后可以看到http://localhost:8050/项目名称/index.php
netbeans调试配置
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。