等待与ide键&PHPSTORM的传入连接

时间:2016-12-20 03:07:34

标签: phpstorm xdebug

我买了并安装了PhpStorm。接下来我决定配置xdebug。我设置并看到了这个信息

  

"等待使用ide键的传入连接' PHPSTORM'"

我做了很多,没有什么能帮助我。请帮帮我。

[Xdebug]
zend_extension="%sprogdir%/modules/php/%phpdriver%/ext/php_xdebug.dll"
;xdebug.default_enable = 1
xdebug.auto_trace = 0
xdebug.collect_includes = 1
;xdebug.collect_params = 4
;xdebug.collect_return = 1
;xdebug.collect_assignments = 1
;xdebug.collect_vars = 1
xdebug.dump.REQUEST = *
xdebug.dump.SESSION = *
xdebug.dump.SERVER = REMOTE_ADDR,REQUEST_METHOD
;xdebug.dump.COOKIE =
;xdebug.dump.FILES =
;xdebug.dump.GET =
;xdebug.dump.POST =
xdebug.dump_globals = 1
xdebug.dump_once = 1
xdebug.dump_undefined = 1
xdebug.extended_info = 1
;xdebug.file_link_format = ""
xdebug.idekey = "PHPSTORM"
;xdebug.manual_url = "http://www.php.net"
xdebug.max_nesting_level = 256
xdebug.overload_var_dump = 1
;xdebug.profiler_append = 1
xdebug.profiler_enable = 0
xdebug.profiler_enable_trigger = 1
xdebug.profiler_output_dir="%sprogdir%/userdata/temp/xdebug/"
xdebug.profiler_output_name = "cachegrind.out.%H%R"
xdebug.remote_autostart = on
xdebug.remote_enable = on
xdebug.remote_connect_back = on
;xdebug.remote_autostart = 0
;xdebug.remote_enable = 0
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "localhost"
;xdebug.remote_log = "none"
xdebug.remote_mode = "req"
xdebug.remote_port = 9000
;xdebug.scream = 1
;xdebug.show_exception_trace = 0
;xdebug.show_local_vars = 1
;xdebug.show_mem_delta = 1
;xdebug.trace_format = 1
;xdebug.trace_options = 1
xdebug.trace_output_dir = "%sprogdir%/userdata/temp/xdebug/"
;xdebug.trace_output_name = "trace.%H%R"
xdebug.var_display_max_children = 256
;xdebug.var_display_max_data = 1024
xdebug.var_display_max_depth = 16
;xdebug.remote_cookie_expire_time = 3600

3 个答案:

答案 0 :(得分:0)

您是否在Can accept external connections中启用了“Preferences -> Build, Execution, etc. -> Debugger ?” 还尝试添加远程日志路径

xdebug.remote_log = E:/Server/tmp/xdebug.log

这样您就可以收集xdebug日志并查看它的相关内容。 有关其他帮助,请参阅此So thread

答案 1 :(得分:0)

您可以使用简单的xdebug配置尝试chrome XDEBUG extension。它对我来说很好。

这是我的配置

zend_extension = E:\wamp64\bin\php\php7.0.0\ext\php_xdebug-2.4.0-7.0-vc14-x86_64.dll
xdebug.remote_enable = 1
xdebug.var_display_max_depth = 16
xdebug.remote_port=9000
xdebug.var_display_max_data = 4096
xdebug.overload_var_dump = 1
xdebug.remote_cookie_expire_time=10800
xdebug.remote_host = "127.0.0.1"
xdebug.scream = 1

答案 2 :(得分:0)

昨天我遇到了同样的问题。不幸的是,我在互联网上翻遍了这个问题的所有答案,但对我来说,没有任何效果。但是,今天早上我不小心找到了解决方法。

  1. 操作系统:macOS Catalina 10.15.4
  2. Xdebug:v2.9.6
  3. Phpstorm:2019.3.4(请勿重新安装您的Phpstorm,这将无法工作。)

步骤1:

    [Xdebug]
    zend_extension = "/usr/local/Cellar/php@7.3/7.3.13/pecl/20180731/xdebug.so"
    xdebug.remote_enable = on
    xdebug.remote_host = localhost
    xdebug.remote_port = 9000
    xdebug.idekey= PHPSTORM
    xdebug.remote_autostart = 1

步骤2:

Phpstorm->首选项->语言和框架-> PHP->调试->调试端口:9000

步骤3:

Phpstorm->首选项->语言和框架-> PHP->服务器-> [删除所有配置]如下:

enter image description here

步骤4:

开始侦听PHP调试连接。如下所示:

enter image description here

步骤5:

通过终端上的“ php artisan serve”启动您的PHP项目。 不要忘记添加断点或打开“在PHP脚本的第一行中断”

有效...哇!!!

enter image description here

如果您不想启用调试模式,只需关闭“侦听PHP调试连接”

希望您现在已经解决了这个问题。