-
利用pecl安装xdebug
sudo pecl install xdebug
-
配置php(vim ./etc/php.ini)
XAMPP默认安装路径是/Applications/XAMPP/,配置文件路径是./etc/
增加xdebug.so为zend引擎扩展,注意这里需要xdebug的全路径,否则无法载入zend_extension="/Applications/XAMPP/xamppfiles/lib/php/extensions/no-debug-non-zts-20100525/xdebug.so"
增加xdebug的配置内容
[xdebug]
xdebug.remote_enable=On
xdebug.remote_host="localhost"
xdebug.remote_port=9000sudo xamppfiles/xampp restart //重启服务
3、netbeans中默认配置即为上所示
点击调试->调试项目,即可~可设置断点观察变量~,注意要切换不同页面调试,只需将XDEBUG_SESSION_START=netbeans-xdebug附加到待调试页面即可,注意,把前一个页面关掉,并且在netbeans中调试选择继续运行,而非关掉调试进城~
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。