1. 程式人生 > 程式設計 >PhpStorm2020.1 安裝 debug - Postman 呼叫的詳細教程

PhpStorm2020.1 安裝 debug - Postman 呼叫的詳細教程

一. 準備

1.1 下載 xdebug

我本地用的是 phpStudy 的整合環境, php 版本是 7.2.10

在 Xdebug 下載地址(https://xdebug.org/download/historical)找到合適的版本(這邊包含歷史版本),我選的是 PHP 7.2 VC15 (32 bit)

1.2 配置 PHP

將下載好的檔案放入 php 下的 ext 資料夾內,以我本機為例 (E:\Castle\phpStudy\PHPTutorial\php\php-7.2.1-nts\ext)

php.ini 拉到最下面,加上以下內容

[XDebug]
xdebug.profiler_output_dir="E:\Castle\phpStudy\PHPTutorial\tmp\xdebug"
xdebug.trace_output_dir="E:\Castle\phpStudy\PHPTutorial\tmp\xdebug"
zend_extension="E:\Castle\phpStudy\PHPTutorial\php\php-7.2.1-nts\ext\php_xdebug-2.9.5-7.2-vc15-nts.dll"
xdebug.remote_enable = 1
xdebug.remote_handler = dbgp
xdebug.remote_host = "localhost"
xdebug.remote_mode = req
xdebug.remote_port = 9010
xdebug.idekey="PHPSTORM"
xdebug.remote_autostart = 1

1.3 列印phpinfo() 頁面

看 Xdebug 是不是已經有了,如果沒有一般都是下載的版本錯了

PhpStorm2020.1 安裝 debug - Postman 呼叫的詳細教程

二. PhpStorm 配置

2.1 Settings 處的配置

2.1.1 從 File > Settings,輸入 PHP,紅框處的就是我們需要配置的地方

PhpStorm2020.1 安裝 debug - Postman 呼叫的詳細教程

2.1.2 先配置一下 PHP 的版本(我本地用的 7.2,)

PhpStorm2020.1 安裝 debug - Postman 呼叫的詳細教程

2.1.3 Debug port 這邊的值用之前在 php.ini 裡面新增的值,其它不動

PhpStorm2020.1 安裝 debug - Postman 呼叫的詳細教程

2.1.4 DBGp Proxy 這邊的值也使用之前 php.ini 裡面新增的

PhpStorm2020.1 安裝 debug - Postman 呼叫的詳細教程

2.1.5 配置 Servers (到這邊為止設定裡面就配置完畢了)

PhpStorm2020.1 安裝 debug - Postman 呼叫的詳細教程

2.2 新增 debug 配置

2.2.1從箭頭處進入,選擇PHP Web Page 新建

PhpStorm2020.1 安裝 debug - Postman 呼叫的詳細教程

PhpStorm2020.1 安裝 debug - Postman 呼叫的詳細教程

2.2.2 配置完畢

PhpStorm2020.1 安裝 debug - Postman 呼叫的詳細教程

三. 舉例說明

3.1在前面打上斷點,正常就會出現如下內容啦

PhpStorm2020.1 安裝 debug - Postman 呼叫的詳細教程

3.2 postman 請求 (基本沒有區別,唯一要注意的就是 2.1.5 配置 Servers 這邊的 Host 配置了,你的請求域名是什麼就填什麼就可以了)

總結

到此這篇關於PhpStorm2020.1 安裝 debug - Postman 呼叫的文章就介紹到這了,更多相關PhpStorm2020.1 安裝 debug內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!