組態
看看你的 php.ini 配置檔案並啟用 Xdebug,新增以下語句:
[Xdebug]
zend_extension=<full_path_to_xdebug_extension>
xdebug.remote_enable=1
xdebug.remote_host=<the host where PhpStorm is running (e.g. localhost)>
xdebug.remote_port=<the port to which Xdebug tries to connect on the host where PhpStorm is running (default 9000)>
例如,使用 Wamp 配置我有:
; XDEBUG Extension
zend_extension = "d:/wamp/bin/php/php5.5.12/zend_ext/php_xdebug-2.2.5-5.5-vc11.dll"
;
[xdebug]
xdebug.remote_enable = 1
xdebug.profiler_enable = off
xdebug.profiler_enable_trigger = off
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir = "d:/wamp/tmp"
xdebug.show_local_vars=0
xdebug.remote_host=localhost
xdebug.remote_port=9000
重啟 Apache
然後在 shell 中執行此命令以驗證 Xdebug 是否正確執行:
php --version
一旦你的 PHP 建立專案,如果你想除錯它,你必須設定你的 PHP 直譯器和 Xdebug 的的設定 :
https://i.stack.imgur.com/FKh7B.jpg
https://i.stack.imgur.com/OovJH.jpg
https://i.stack.imgur.com/rVkD4.jpg
https://i.stack.imgur.com/uMmrd.jpg
https://i.stack.imgur.com/55XZm.jpg
https://i.stack.imgur.com/3YQ4D.jpg
https://i.stack.imgur.com/qLwL5.jpg
https://i.stack.imgur.com/p03IG.jpg
如果使用 php-fpm,則進行配置調整
如果是,則 Xdebug 埠 9000 與預設的 php-fpm 埠衝突。
你必須在 php-fpm 或 Xdebug 中選擇其他埠。
此外,當使用 php-fpm 時,你必須重新啟動 php-fpm 才能使 php-ini 檔案的任何更改生效。
使用 Xdebug.log 檔案
在某些情況下,你需要記錄伺服器上的日誌。日誌檔案可以幫助你解決問題。
在試圖找出安裝中的損壞時,它可以提供很多幫助。
更多的資訊
官方文件中提供了更多詳細資訊
https://www.jetbrains.com/help/phpstorm/10.0/configuring-xdebug.html