我的问题是XDebug或Netbeans不会在页面上中断 使用cURL访问。我用过xdebug_break();并在cURL访问的页面上创建了一个断点,但它仍然不会中断。
希望有人在这里可以提供帮助,我已经浏览了网络,但可以 找不到任何解决办法。
这是我的设置:
在php.ini内部
[dba]
;dba.default_handler=
; Local Variables:
; tab-width: 4
; End:
; XDEBUG Extension
zend_extension = "c:/wamp/bin/php/php5.3.8/zend_ext/php_xdebug-2.1.2-5.3-vc9.dll"
[xdebug]
xdebug.remote_enable = On
xdebug.remote_handler=dbgp
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_autostart=Off
;xdebug.remote_mode=req
xdebug.profiler_enable = On
xdebug.profiler_enable_trigger = On
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir = "c:/wamp/tmp"