MAC 下 netbeans xdebug 调试PHP代码_PHP教程
配置过程:
安装xdebug
修改php.ini
重启apache
确认netbeans 的调试端口与xdebug 一致
(1)下载xdebug
我这里使用了brew, 如果对brew工具不熟悉的可以谷歌下。
首先习惯性搜索下:
终端里执行命令:brew search xdebug 发现的确有一个软件xdebug。
然后 brew install xdebug ,一路顺风顺水 。安装完毕有提示安装的情况。
没记住没关系:brew info xdebug
[hechangmin@hecm-mac ~]$brew info xdebug
xdebug 2.1.2
http://xdebug.org
/usr/local/Cellar/xdebug/2.1.2 (348K)
To use this software:
* Add the following line to php.ini:
zend_extension="/usr/local/Cellar/xdebug/2.1.2/xdebug.so"
* Restart your webserver.
* Write a PHP page that calls "phpinfo();"
* Load it in a browser and look for the info on the xdebug module.
* If you see it, you have been successful!
http://github.com/mxcl/homebrew/commits/master/Library/Formula/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 ,选择偏好设置,在调试器端口选择如第二步中的9000端口。并且勾选 ‘在第一行停止’(可选),这是为了防止为打断点就直接运行完了。
到此全部完成。其中需要注意一点的是,在创建PHP项目的时候,会让你选择调试的hosts , 记得要调试的url 别写错了。
作者 -274°C
上一篇: PHP 直接在共享内存中存储数据集
下一篇: PHP查看当前变量类型的方法_PHP教程
推荐阅读
-
Windows和Linux中php代码调试工具Xdebug的安装与配置详解
-
Mac系统下安装PHP Xdebug
-
win10下sublime texts3添加配置运行php代码编译的图文教程
-
[视频教程] 配置vscode的PHP自动补全提示与使用Xdebug进行远程调试debug
-
Windows和Linux中php代码调试工具Xdebug的安装与配置详解
-
MAC 下 netbeans xdebug 调试PHP代码
-
搭建PHP代码调试环境(phpstudy+Xdebug+VScode)
-
phpstorm配置Xdebug进行调试PHP教程
-
netbeans上 xdebug调试php
-
PHP下利用shell后台运行PHP脚本,并获取该脚本的Process ID的代码_PHP教程