今天在mac下,想调试php代码,发现netbeans 挂不上断点,根本调试不了。一番搜索发现有个php的第三方模块叫xdebug ,虽然只找到一些windows 下的资料,但还是摸索着把调试环境搭建成功。
配置过程:
安装xdebug
修改php.ini
重启apache
确认netbeans 的调试端口与xdebug 一致
(1)下载xdebug
我这里使用了brew, 如果对brew工具不熟悉的可以谷歌下。
首先习惯性搜索下:
终端里执行命令:brew arch xdebug 发现的确有一个软件xdebug。
然后 brew install xdebug ,一路顺风顺水 。安装完毕有提示安装的情况。
没记住学习体会怎么写没关系:brew info xdebug
[hechangmin@hecm-mac ~]$brew info xdebug
xdebug 2.1.2
https://xdebug.org
/usr/local/cellar/xdebug/2.1.2 (348k)
to u this software:
* add the following line to php.ini:
zend_extension=”/usr/local/cellar/xdebug/2.1.2/xdebug.so”
阿房宫赋原文* restart your webrver.
* write a php page that calls “phpinfo();”
* load it in a browr and look for the info on the xdebug module.
* if you e it, you have been successful!
https://github.com/mxcl/homebrew/commits/master/library/fo描写菊花的诗句rmula/xdebug.rb
看有提示我们修改php.ini,这就是我们要做的第二步。
(2)修改php.ini 文件
因为我安装的xmapp 所以找到默认的路径:sudo vi /applications/xampp/etc/php.ini
增加:
zend_extension=”/usr/local/cellar/xdebug/2.1.2/xdebug.so”
xdebug.remote_enable=1
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
(3)重启apache
就业最好的专业 在终端下以管理员root 的身份登录:
sudo su
使用下面的命令启动xampp:
/applications/xampp/xamppfiles/xampp start
您应该能在屏幕上看到类似下面的提示信息:
starting xampp for macos x 1.7.3…
xampp: starting apache with ssl (and php5)…
xampp: starting mysql…
xampp: starting proftpd…
xampp for macos x started.
(4) 确认nb 调试端口
打开netbeans ,选择雪作文300字偏好设置,在调试器端口选择如第二步中的9000端口。并且勾选 ‘在第一行停止’(可选),这是为了防止为打断点就直接运行完了。
到此全部完成。其中需要注意一点的是,在创建php项目的时候,会让你选择调试的hosts , 记得要调试的url 别写错了。
作者 -274°c
本文发布于:2023-04-07 05:59:09,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/c6e440beb3a178cfa61a6a8fe764c707.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:MAC 下 netbeans xdebug 调试PHP代码.doc
本文 PDF 下载地址:MAC 下 netbeans xdebug 调试PHP代码.pdf
留言与评论(共有 0 条评论) |