如何使用SublimeText3配置 PHP IDE環境
首先是安裝好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:\wamp64\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這樣就能在網頁上進行調試瞭
推薦閱讀:
- None Found