phpStorm10斷點除錯

香思人發表於2017-04-27

下載 Xdebug

準備階段

在localhost下新增一個phpinfo.php的檔案

<?php phpinfo(); ?>
在瀏覽器訪問http://localhost/phpinfo.php,顯示如下:

Ctrl+A選擇所有文字,Ctrl+C複製。

Xdebug 官網下載合適的 dll檔案

開啟視窗:http://xdebug.org/wizard.php,把文字新增到輸入框,如圖:

之後如圖:按照Instructions一步一步操作。

設定php.ini

官網文件:https://www.jetbrains.com/phpstorm/help/configuring-xdebug.html

下載Xdebug helper

chrome 網上應用商店 https://chrome.google.com/webstore/detail/xdebug-helper/eadndfjplgieldjbigjakmdgkmoaaaoc?hl=zh-CN

配置,選擇 phpStorm,把網址的域名加入白名單。

之後訪問白名單裡的站點,就可以看到如下:

下載 phpStorm

破解

官網下載:https://www.jetbrains.com/phpstorm/download/#section=windows-version 註冊時選擇 License server,填寫 http://idea.lanyus.com/

配置php環境

配置 debug

保證埠號和php.in中的一致,如果沒有設定埠,預設就是9000。

設定DBGp Proxy

設定 PHP Web Application

設定 server

新增配置,在 phpStorm 右上角,選擇Edit Configurations…,然後配置站點

斷點除錯

Start Listening for PHP Debug Connections

設定斷點

訪問該Action

phpStorm 會自動彈出,我們這樣檢視變數:

大功告成!


相關文章