ホームページ  >  記事  >  開発ツール  >  PhpStormのデバッグ設定

PhpStormのデバッグ設定

(*-*)浩
(*-*)浩オリジナル
2020-01-03 14:17:004698ブラウズ

PhpStormのデバッグ設定

php環境でxdebugが開きます ##php.ini に移動して、 xdebug 構成情報を表示します

[xdebug]
zend_extension ="c:/wamp64/bin/php/php5.6.35/zend_ext/php_xdebug-2.5.5-5.6-vc11-x86_64.dll"
;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 ="c:/wamp64/tmp"
xdebug.show_local_vars=0
xdebug.remote_autostart = 1    # 这里加上远程自动开启,可以省去在浏览器中加载xdebug插件的步骤

xdebug.idekey=phpstorm
xdebug.remote_enable = On
xdebug.remote_host=localhost
;xdebug.remote_port默认值为9000,这里需要跟phpstorm配置一致,下面有说明
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.auto_trace = On

PhpStorm 構成デバッグ設定PhpStormのデバッグ設定

[言語とフレームワーク] > [PHP] > [デバッグ] (チェックボックスをオンにして削除します。ポートのデフォルトは 9000)

##言語とフレームワーク > PHP > デバッグ > サーバー (デバッグ可能な複数のアドレスを追加)

PhpStormのデバッグ設定

有効にする接続を監視するための PhpStorm デバッグ

以上がPhpStormのデバッグ設定の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。