雖說echo和print_r是公認的最實用的調試工具,可是效率真的沒有可視化的直接斷點那麼高。這裏簡單介紹若是安裝及配置xdebug for vscodephp
下載及編譯php,由於我所在的公司php版本是5.4的,因此去xdebug官網上選了相對比較底的版本. 您也能夠根據大家的實際狀況下載相應的xdebug版本:https://xdebug.org/download.phpjson
wget https://xdebug.org/files/xdebug-2.4.1.tgz tar -xvf xdebug-2.4.1.tgz cd xdebug-2.4.1/ phpize ./configure make install
make最終結束輸出:服務器
make install最終結束輸出:ide
這個是個人配置。爲了使得可配性更強。我將xdebug配置寫到: /etc/php.d/xdebug.ini工具
[Xdebug] zend_extension="/usr/lib64/php/modules/xdebug.so" #這裏改爲你在make install後的路徑。 xdebug.remote_enable = true xdebug.remote_host = 10.0.5.176 #改爲你的vscode因此機器的ip地址 #default port 9000 xdebug.remote_port = 9000 #若是9000端口衝突了,能夠換一個。不過相應的vscode配置也要相應的改變 xdebug.profiler_enable = on xdebug.auto_trace = On xdebug.show_exception_trace = On xdebug.remote_autostart = On xdebug.collect_vars = On xdebug.collect_return = On xdebug.remote_handler =dbgp xdebug.max_nesting_level = 10000 xdebug.trace_output_dir = "D:/code/videochat" #我這裏寫的是php代碼所在的路徑
一、使用vscode打開php工程後。安裝php-debug及生成調試配置文件,如圖所示,依次點擊這些按鈕spa
二、以下操做後,會出現以下選項框。選中php便可debug
三、選中後,會出現一個json的配置文件3d
修改此json文件,注意serverSourceRoot改爲你服務器上,php所在的路徑。否則即便斷下來後,會出現找不到文件的異常調試
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "Listen for XDebug", "type": "php", "request": "launch", "port": 9000, "stopOnEntry":false, "localSourceRoot": "${workspaceRoot}", "serverSourceRoot": "/work/videochat" }, { "name": "Launch currently open script", "type": "php", "request": "launch", "program": "${file}", "cwd": "${fileDirname}", "port": 9000 } ] }
最後,在vscode裏斷點好後。按F5,等待請求,便可享受圖形化的調試樂趣code