xdebug是乙個開源的php偵錯程式,以php模組的形式載入並被使用。
安裝xdebug到php中
拷貝到php安裝目錄下的ext目錄中。
其次,xdebug配置
開啟php.ini
在最後一行加入以下配置**,配置說明已經做好注釋
;載入xdebug
zend_extension_ts="c:/php/ext/php_xdebug.dll"
;xdebug配置
[xdebug]
;開啟自動跟蹤
xdebug.auto_trace = on
;開啟異常跟蹤
xdebug.show_exception_trace = on
;開啟遠端除錯自動啟動
xdebug.remote_autostart = on
;開啟遠端除錯
xdebug.remote_enable = on
;收集變數
xdebug.collect_vars = on
;收集返回值
xdebug.collect_return = on
;收集引數
xdebug.collect_params = on
注意zend_extension_ts後面的路徑要填寫絕對路徑,儲存後重啟伺服器即可。
此時用phpinfo()檢視php配置,如果安裝成功,應該可以看到xdebug的相關資訊。
推薦**:
PHP的xdebug除錯安裝
安裝php對應版本xdebug擴充套件 1 通過phpinfo確定php的擴充套件檔案 architecture x86 是32位的 zend extension build api320160303,nts,vc14是沒有ts的vc14 php 7.1 vc14 32 bit 3 配置php.in...
PHP安裝Xdebug除錯工具
安裝xdebug 2.將它重新命名為php xdebug.dll,並複製到c php5.3 ext目錄下 3.更改php.ini檔案 把下面的內容加入到檔案最後就可以了。xdebug zend extension c php5.3 ext php xdebug.dll xdebug.profiler...
PHP安裝Xdebug除錯工具
安裝xdebug 2.將它重新命名為php xdebug.dll,並複製到c php5.3 ext目錄下 3.更改php.ini檔案 把下面的內容加入到檔案最後就可以了。xdebug zend extension c php5.3 ext php xdebug.dll xdebug.profiler...