1. 程式人生 > >Sublime Text 3 配置 PHP IDE環境 並使用Xdebug進行除錯

Sublime Text 3 配置 PHP IDE環境 並使用Xdebug進行除錯

sublime大法好

首先是安裝好PHP之後配置環境變數
這裡寫圖片描述這裡寫圖片描述
然後在cmd中輸入php -v 能看到版本號即為配置好了
這裡寫圖片描述

之後在sublime中新建編譯系統,輸入程式碼

{

"cmd": ["php", "$file"],

"file_regex": "^(...*?):([0-9]*):?([0-9]*)",

"selector": "source.php"

}

然後儲存在預設位置,改名字為php.sublime-build 然後就好了,輸入簡單的php語句按Ctrl+B就能看見結果了。

之後進行Xdebug的安裝
我們先去檢視php.ini的內容新建一個php檔案只寫一個phpinfo()函式

<?php
    phpinfo();
?>

然後用瀏覽器執行(wampserver要放到www裡面用localhost/…去訪問)然後可以看到這裡寫圖片描述
然後右鍵檢視原始碼,然後將所有程式碼複製到這裡https://xdebug.org/wizard.php去分析php所對應的xdebug版本
這裡寫圖片描述
最下面會讓你下載對應的版本以及需要將其放到哪裡,修改什麼內容,如果是使用wampserver的可以點左下角的圖示,php裡面的php.ini開啟進行修改,由於wampserver裡面本身會有一些xdebug的配置,我們可以註釋掉,最終的配置如下:

[xdebug]
zend_extension = E:\wamp
64\bin\php\php5.6.19\ext\php_xdebug-2.4.0-5.6-vc11-x86_64.dll xdebug.remote_enable=1 xdebug.remote_handler=dbgp xdebug.remote_host=127.0.0.1 xdebug.remote_port=9000 ;xdebug.remote_enable = off ;xdebug.profiler_enable = off ;xdebug.profiler_enable_trigger = off ;xdebug.profiler_output_name = cachegrind.out.%t.%p
;xdebug.profiler_output_dir ="E:/wamp64/tmp" ;xdebug.show_local_vars=0

之後重啟所有伺服器之後,在sublime中用package conctrol下載xdebug client 然後就可以除錯了

  • Shift+f8: 開啟除錯面板
  • f8:開啟除錯面板快速連線
  • Ctrl+f8: 切換斷點
  • Ctrl+Shift+f5: 執行到下一個斷點
  • Ctrl+Shift+f6: 單步
  • Ctrl+Shift+f7: 步入
  • Ctrl+Shift+f8: 步出

    chrome 上可以安一個xdebug helper這樣就能在網頁上進行除錯了