netbeans配置Xdebug

[xdebug]
;用中括号表示出来的是模块名称,它会在你的phpinfo信息中作为大的分隔标题显示出来
zend_extension_ts="D:Program FilesphpStudyphpdextphp_xdebug-2.2.3-5.2-vc9.dll"
;设置php_xdebug的dll文件路径和名称
xdebug.auto_trace=On
;Xdebug会将php的对函数调用的监测的信息用文件格式输出来
xdebug.collect_params=On
;Xdebug会将php的对函数调用的参数加入到函数过程调用的监测中
xdebug.collect_return=On
;将函数调用的返回值加入到函数过程调用的监测中
xdebug.trace_output_dir="E:phpdebug"
;设置的函数调用监测信息的输出路径
xdebug.profiler_enable=On
;这是效能监测的设置开关
xdebug.profiler_output_dir="E:phpdebug"
;这是效能监测信息设置为on的情况下,写入到profiler_output_dir设置的路径中,会生成一个相应的文件
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
xdebug.remote_port=9000

原文地址:https://www.cnblogs.com/shanmao/p/3224388.html