概述Mac+Apache+PHP安装Xdebug方法步骤
MAC homebrew自2018/3/31之后弃用homebrew/PHP
By 31st march 2018 we will deprecate and archive the Homebrew/PHP tap. Unfortunately we have been unable to maintain an acceptable, consistent user or contributor experIEnce and CI workload through non-core formula taps in the Homebrew organisation so we are continuing to migrate wIDely used formulae into Homebrew/core and encourage more niche formulae and options to be supported outsIDe the Homebrew organisation.
详细:https://brew.sh/2018/01/19/homebrew-1.5.0/
所以不能再用下面的方法安装xdeBUG了,下面的方法不行!下面的方法不行!下面的方法不行!
brew install PHP<version number>-xdeBUG
所以,安装xdeBUG我们可以手动编译一下,具体步骤如下:
1.首先进入 XdeBUG 官方下载页面:https://xdeBUG.org/download.PHP,下载安装PHP版本支持的xdeBUG的版本
eg.我本地的PHP版本是5.6.38,所以下载了2.5.4的source,一个tgz压缩包
2.在下载xdeBUG的文件夹里打开终端
tar -xzf xdeBUG-2.5.4.tgzcd xdeBUG-2.5.4
也可以在本地直接解压,再进入解压的xdeBUG的文件夹里,打开终端
PHPize
#如果不可以,写PHPize的完整路径
./configure
上面命令执行之后,开始编译
make -j2
编译完成之后,会提示,在modules可找到xdeBUG.so文件
3.将编译之后得到的xdeBUG.so文件可以拷贝到extension_dir规定的文件夹中
注:PHP.ini 中搜索extension_dir
4.在PHP.ini中配置一下参数
[XdeBUG]Zend_extension="/usr/local/lib/PHP/pecl/20131226/xdeBUG.so";自动跟踪,可关闭(关闭后提升性能)xdeBUG.auto_trace=On;性能分析,可关闭(关闭后提升性能)xdeBUG.profiler_enable=OnxdeBUG.var_display_max_children=512xdeBUG.var_display_max_data=2048xdeBUG.var_display_max_depth=8
修改完之后,重启apache,PHPinfo()检测一下安装上了没,应该是没问题了
更多PHP相关知识,请访问php教程! 总结
以上是内存溢出为你收集整理的Mac+Apache+PHP安装Xdebug方法步骤全部内容,希望文章能够帮你解决Mac+Apache+PHP安装Xdebug方法步骤所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
请登录后查看评论内容