溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Mac+Apache+PHP安裝Xdebug的方法

發(fā)布時間:2020-05-21 14:55:09 來源:億速云 閱讀:245 作者:鴿子 欄目:編程語言

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.tgz
cd xdebug-2.5.4

也可以在本地直接解壓,再進入解壓的xdebug的文件夾里,打開終端

phpize

#如果不可以,寫phpize的完整路徑

./configure

上面命令執(zhí)行之后,開始編譯

make -j2

編譯完成之后,會提示,在modules可找到xdebug.so文件

Mac+Apache+PHP安裝Xdebug的方法

3.將編譯之后得到的xdebug.so文件可以拷貝到extension_dir規(guī)定的文件夾中

注:php.ini 中搜索extension_dir

4.在php.ini中配置一下參數(shù)

[Xdebug]
zend_extension="/usr/local/lib/php/pecl/20131226/xdebug.so"
;自動跟蹤,可關(guān)閉(關(guān)閉后提升性能)
xdebug.auto_trace=On
;性能分析,可關(guān)閉(關(guān)閉后提升性能)
xdebug.profiler_enable=On
xdebug.var_display_max_children=512
xdebug.var_display_max_data=2048
xdebug.var_display_max_depth=8

修改完之后,重啟apache,phpinfo()檢測一下安裝上了沒,應(yīng)該是沒問題了

以上就是Mac+Apache+PHP安裝Xdebug方法步驟的詳細內(nèi)容,更多請關(guān)注億速云其它相關(guān)文章!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI