MacOS下postman和phpstorm斷點除錯
阿新 • • 發佈:2018-12-29
MacOS下postman和phpstorm斷點除錯
MacOS下postman和phpstorm斷點除錯
一、安裝xdebug
- 下載 xdebug檔案
將phpinfo()的在瀏覽器中輸出的原始碼複製到文字框中,xdebug會提示如何配置和下載哪個版本 的xdebug。
附:全部下載地址
二、修改PHP配置檔案
- 在php.ini末尾加上如下程式碼
[xdebug]
zend_extension="/file_path/xdebug.so" #file_path是指具體路徑
xdebug.auto_trace=on #啟用程式碼自動跟蹤
xdebug.collect_params=on #允許收集傳遞給函式的引數變數
xdebug.collect_return=on #允許收集函式呼叫的返回值
xdebug.trace_output_dir="/path/xdebug" #指定堆疊跟蹤檔案的存放目錄
xdebug.profiler_enable= on #是否啟用Xdebug的效能分析,並建立效能資訊檔案
xdebug.profiler_output_dir="/path/xdebug" #指定效能分析資訊檔案的輸出目錄
xdebug.remote_enable = On #是否開啟遠端除錯
xdebug.remote_handler = "dbgp" #指定遠端除錯的處理協議
xdebug.remote_mode = "req"
xdebug.remote_host = "localhost" #指定遠端除錯的主機名
xdebug.remote_port = 9000 #指定遠端除錯的埠號
xdebug.idekey = PHPSTORM #指定傳遞給DBGp偵錯程式處理程式的IDE Key
三、配置PHPStorm
-
開啟PHPStrom->Preferences->Languages & Frameworks->PHP
-
開啟PHPStrom->Preferences->Languages & Frameworks->PHP- >Debug
-
開啟PHPStrom->Preferences->Languages & Frameworks->PHP- >Debug->DBGp Proxy
-
開啟PHPStrom->Preferences->Languages & Frameworks->PHP- >Server
-
設定運⾏行行配置(Run → Edit Configuration)
-
新建一個PHP Web Application
四、配置chrome
- 安裝外掛xdebug helper
- 安裝成功後右擊外掛圖示->選項
- 配置完畢後,開啟xdebug
五、配置Postman
- 安裝Postman , ⾕谷歌瀏覽器器中開啟應⽤用商店,搜尋postman,兩個都安裝
- postman設定,開啟攔截
六、除錯
注意!!!
使⽤用Postman除錯時
需在請求的API引數中加⼊入⼀一個 XDEBUG_SESSION_START = PHPSTORM
這是為了了告知 你的請求需要觸發斷點除錯