1. 程式人生 > 程式設計 >php開發最強大的IDE編輯的phpstorm 2020.2配置Xdebug除錯的詳細教程

php開發最強大的IDE編輯的phpstorm 2020.2配置Xdebug除錯的詳細教程

時間:2020年8月15日10:25:47

Xdebug外掛安裝省略,自己百度安裝,win和linux環境安裝方式不一樣。

注意和php版本匹配

1、phpinfo資訊

php開發最強大的IDE編輯的phpstorm 2020.2配置Xdebug除錯的詳細教程

2、php.ini配置

[xdebug]
zend_extension=/usr/lib64/php/modules/xdebug.so
xdebug.remote_enable =1
xdebug.profiler_enable = On
xdebug.auto_trace=On
xdebug.profiler_enable_trigger = On
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.remote_handler ="dbgp"
xdebug.remote_host ="172.16.6.44"
xdebug.remote_mode ="req"
xdebug.remote_port =9000
xdebug.idekey = "PHPSTORM"
xdebug.remote_autostart = 1
;xdebug.remote_connect_back = 1
; If openssl.cafile is not specified or if the CA file is not found,the
; directory pointed to by openssl.capath is searched for a suitable
; certificate. This value must be a correctly hashed certificate directory.
; Most users should not specify a value for this directive as PHP will
; attempt to use the OS-managed cert stores in its absence. If specified,; this value may still be overridden on a per-stream basis via the "capath"
; SSL stream context option.
;openssl.capath=
 
; Local Variables:
; tab-width: 4
; End:
 
xdebug.var_display_max_children=10240
xdebug.var_display_max_data=10240
xdebug.var_display_max_depth=10240

3、當然你的xdebug.so擴充套件也要安裝起來。

php開發最強大的IDE編輯的phpstorm 2020.2配置Xdebug除錯的詳細教程

4、編輯器phpstorm配置

php開發最強大的IDE編輯的phpstorm 2020.2配置Xdebug除錯的詳細教程

setting配置

php開發最強大的IDE編輯的phpstorm 2020.2配置Xdebug除錯的詳細教程

埠和ini中配置的一樣

php開發最強大的IDE編輯的phpstorm 2020.2配置Xdebug除錯的詳細教程

本機IP配置,虛擬機器的IP是192.168.99.26

php開發最強大的IDE編輯的phpstorm 2020.2配置Xdebug除錯的詳細教程

php開發最強大的IDE編輯的phpstorm 2020.2配置Xdebug除錯的詳細教程

輸出視窗資訊

php開發最強大的IDE編輯的phpstorm 2020.2配置Xdebug除錯的詳細教程

程式碼介面輸出

php開發最強大的IDE編輯的phpstorm 2020.2配置Xdebug除錯的詳細教程

php開發最強大的IDE編輯的phpstorm 2020.2配置Xdebug除錯的詳細教程

1.首先檢查phpstorm的xdebug配置

->這裡的debug port要和php.ini裡面的 xdebug.remote_port相一致!預設是9000,如果9000埠被佔用的話,可以改成其他 埠。

4.開始使用斷點除錯

-〉開啟除錯(phpstrom)

1、設定斷點

php開發最強大的IDE編輯的phpstorm 2020.2配置Xdebug除錯的詳細教程

F9跳出

F8下一步

->瀏覽器增加開啟和關閉按鈕

https://www.jetbrains.com/phpstorm/marklets/

php開發最強大的IDE編輯的phpstorm 2020.2配置Xdebug除錯的詳細教程

-〉在程式碼中打斷點,執行訪問該頁面的url

瀏覽器開啟除錯,然後重新整理頁面即可。

總結

到此這篇關於php開發最強大的IDE編輯的phpstorm 2020.2配置Xdebug除錯的文章就介紹到這了,更多相關phpstorm除錯配置 Xdebug內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!