推薦程式碼除錯工具 Xdebug

yzf01發表於2021-09-09

寫程式碼總繞不過需要除錯,除了 UnitTest 外,我們還是需要藉助 Xdebug 進行除錯。

所以今天來說說如何基於本地 Docker 環境下,使用 Xdebug。

這裡的使用,是分別整合到 VS Code 和 PHPStorm 下。

圖片描述

安裝 Xdebug

還是基於神級武器 —— Laradock。我們先看看 Laradock 官網是怎麼安裝 Xdebug。

Install xDebug#

1 - First install xDebug in the Workspace and the PHP-FPM Containers:

a) open the .env file
b) search for the WORKSPACE_INSTALL_XDEBUG argument under the Workspace Container
c) set it to true
d) search for the PHP_FPM_INSTALL_XDEBUG argument under the PHP-FPM Container
e) set it to true

2 - Re-build the containers docker-compose build workspace php-fpm

參考:https://laradock.io/documentation/#install-xdebug

我們修改對應的地方,然後 build,如果出現下面的錯誤提示:

圖片描述

嘗試新增國內源試試:

RUN  sed -i s@/archive.ubuntu.com/@/mirrors.aliyun.com/@g /etc/apt/sources.list

重新 docker-compose up -d nginx 後,在 Windows / Mac 下用命令 ./php-fpm/xdebug status 檢視安裝狀態:

圖片描述

配置 Xdebug

目前開發使用 IDE,個人覺得普遍用的最多的就是 VS Code 和 PHPStorm。所以下面就利用這兩個 IDE,分別說說如何使用 Xdebug 的。

VS Code

在 VS Code 下,如果沒安裝 Xdebug 外掛,直接搜尋安裝即可:

圖片描述

安裝後,增加 Xdebug 環境配置:

圖片描述

這樣就會專案的 .vscode 資料夾下多了一個 Xdebug 配置檔案 launch.json,我們配置埠號與 php-fpm 下的 Xdebug 一致,我們再配置 pathMappingsdocker 下的專案路徑與本地專案路徑關聯。具體如下:

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "XDebug listening to Laradock",
            "log": true,
            "type": "php",
            "request": "launch",
            "port": 9000,
            "pathMappings": {
                "/var/www/myrss": "${workspaceFolder}",
            }
        },
        {
            "name": "Launch currently open script",
            "type": "php",
            "request": "launch",
            "program": "${file}",
            "cwd": "${fileDirname}",
            "port": 9000
        }
    ]
}

好了,我們啟動 XDebug,列印出如下內容,即表示等待請求:

圖片描述

我們寫個 Demo,並設定斷點:

Artisan::command('hello', function () {
    $i = 0;
    $i++;

    return "hello".$i;
});

圖片描述

然後啟動 Xdebug,並執行命令:

php artisan hello

我們可以看到很多輸入、輸出、斷點等資訊:
圖片描述

其中我們也能看到此時的變數 $i 處於未初始狀態:

圖片描述

我們在這斷點繼續往下執行:

圖片描述

圖片描述

PHPStorm

在 Mac 或者 Windows 10 下 Docker 的預設 ip 為:10.0.75.1,

我們先增加一個 Server,其中:

  • Name:laradock
  • Host: 10.0.75.1
  • mappings,等同於上文 VS Code 配置的 pathMappings

圖片描述

然後,可以新建 PHP Remote Debug,其中:

  • Server:關聯到我們上面建的 laradock
  • IDE key:和 Laradock‘s php-fpm 中配置的保持一致即可

圖片描述

好了,我們可以使用 demo,建立斷點,執行 Debug 等待請求::

圖片描述

一樣的,執行命令:php artisan hello

圖片描述

我們繼續往下走:

圖片描述

總結

用好 Xdebug,更加直觀的瞭解方法中每個變數的動態變化,能提高我們跟蹤和排查程式碼的問題所在。至於下一步如何更好的使用 Xdebug,就看各自的實際專案和開發需要了。

參考

  1. Setting up xDebug with PHPUnit using Docker for Mac and PHPStorm

  2. Laradock + XDebug + MS Code? No problem https://medium.com/full-stack-development/laradock-xdebug-ms-code-no-problem-35a4338deb3f

  3. Laradock的xdebug在vscode上使用的配置

  4. 如何設定VSCode XDebug在laradock環境上 https://blog.scottchayaa.com/post/2018/10/16/vscode-phpunit-on-laradock/

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2334/viewspace-2816447/,如需轉載,請註明出處,否則將追究法律責任。

相關文章