cixiren 发表于 2018-12-23 06:50:53

php5.2.x安装xdebug

2、配置xdebug:  在php.ini文件的末尾添加如下代码
  
  ; 指定xdebug 扩展文件的位置(路径请根据自己的情况做调整)
  zend_extension_ts = "D:\wamp\php\ext\php_xdebug-2.1.0-5.2-vc6.dll"
  ; 启用xdebug 远程调试
  xdebug.remote_enable = 1
  ; 以下xdebug 调试选项实际上是默认值
  xdebug.remote_host = localhost
  xdebug.remote_port = 9000
  xdebug.remote_mode = req
  xdebug.remote_handler = dbgp

页: [1]
查看完整版本: php5.2.x安装xdebug