#author("2024-03-18T22:18:02+09:00","","") #author("2024-03-18T22:27:16+09:00","","") [[VSCode]] * VSCode - PHP 設定 [#vc80722e] **拡張機能 [#r5cfaf25] -PHP Debug -PHP Intelephense -PHP DocBlocker ** PHP Debug 設定 [#ff7156e0] ※事前に下記インストール済みのこと apt install php-xdebug ※/etc/php/<PHP Version>/cli/php.ini に下記追記する ; For xdebug xdebug.mode=debug xdebug.client_host=localhsot xdebug.cliet_port=9003 xdebug.start_with_request=yes ** PHP Debug 実施 [#t645d8c8] -VSCode の &ref(vscode-debug.png); +VSCode の &ref(vscode-debug.png); ボタンを押下する。 +リンクの launch.json を押下する。 デフォルトで、localhsot, 9003 ポートを使うようになっているかと思います。 変更する場合は、 php.ini も併せて変更のこと。 +次の緑の△を押下する。 &ref(vscode-debug-php.png); +適宜ブレークポイントなどをはり、terminal より、php <phpスクリプト> を実行する。