php开发(一)

来源:互联网 发布:mac下制作windowsu盘 编辑:程序博客网 时间:2024/05/17 03:58

一、环境的配置

xampp:

二、IDE

Netbeans 8.0.2

三、调试器:NetBeans自带Xdebug

php.ini 中有关XDebug的配置:

[XDebug]
zend_extension = "C:\xampp\php\ext\php_xdebug.dll" 此处写你的php_xdebug.dll的fullpath
;xdebug.profiler_append = 0
xdebug.profiler_enable = 1
;xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir = "C:\xampp\tmp"
;xdebug.profiler_output_name = "cachegrind.out.%t-%s"
xdebug.remote_enable = 1 重要!!!不设置为on将出现netbeans-xdebug等待连接
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
xdebug.remote_port= 9000
xdebug.trace_output_dir = "C:\xampp\tmp"



0 0
原创粉丝点击