gpt4 book ai didi

php - sublime text 2 kindari xdebug 插件说明

转载 作者:行者123 更新时间:2023-12-02 07:39:12 24 4
gpt4 key购买 nike

我正在尝试安装 sublime text 2 插件 https://github.com/Kindari/SublimeXdebug/blob/master/README.md .但是我无法让它工作:

到目前为止我有几个问题:

它说:

"settings": {
"xdebug": { "url": "http://your.web.server" }
}

我的本​​地 wamp 服务器是“htp://127-0-0-1”——这是什么意思?

另外,在按照 Xdebug 安装向导进行操作后,PHP.ini 文件如下所示:

zend_extension = \xampp-portable\php\ext\php_xdebug-2.2.1-5.4-vc9.dll
;xdebug.profiler_append = 0
;xdebug.profiler_enable = 1
;xdebug.profiler_enable_trigger = 0
;xdebug.profiler_output_dir = "\xampp-portable\tmp"
;xdebug.profiler_output_name = "cachegrind.out.%t-%s"
;xdebug.remote_enable = 0
;xdebug.remote_handler = "dbgp"
;xdebug.remote_host = "127.0.0.1"
;xdebug.trace_output_dir = "\xampp-portable\tmp"

这是正确的吗?

3) 另外要启动 session ,我是否需要在 URL 中包含 XDEBUG_SESSION_START。我已经在 chrome 中安装了 xdebug helper,并尝试了 htp://127-0-0-1/test1/index?XDEBUG_SESSION_START chrome 的地址栏

非常感谢您。即使回答一两个问题也会有很大帮助

问候,

比尔

嗨,鲍勃 - 感谢您查看此内容。按照你的指示,我有一部分工作了。我会多玩一会儿,然后在接下来的 24-48 小时内提出后续问题 - Bill

最佳答案

  1. sublime text xdebug 插件将使用此路径在服务器上启用和禁用 xdebug session 。该 url 应该与您在浏览器中用于连接到服务器的 url 相同。在这种情况下,这将是 "xdebug": { "url": "http://127.0.0.1"}

    如果您使用的是 Chrome xdebug 帮助程序,则可以跳过配置该部分,但您需要在 Chrome 扩展程序的选项中编辑 IDE key 。只需将下拉列表更改为 Other 并输入 sublime.xdebug 作为值。

  2. 您的 xdebug 设置存在一些问题。首先,指定扩展名时必须使用完整路径。其次,您的所有设置都被 ; 注释掉了。

    这是一个简化的配置,可以帮助您入门。我猜到你的 xdebug dll 的路径是什么,所以如果它没有反射(reflect)你的文件实际所在的位置,请编辑它。

    zend_extension = "C:/xampp-portable/php/ext/php_xdebug-2.2.1-5.4-vc9.dll"
    xdebug.remote_enable = 1
    xdebug.remote_handler = dbgp
    xdebug.remote_host = 127.0.0.1
    xdebug.remote_port = 9000

    编辑并保存 php.ini 文件后,重新启动/重新加载 xampp 并检查 phpinfo() 以确保 xdebug 处于事件状态。

  3. 项目 #1 已经处理了这个。如果您在 .sublime-project 文件中设置 url,它将自动打开您的默认浏览器 http://127.0.0.1/?XDEBUG_SESSION_START=sublime.xdebug。这实际上只是启动和停止调试 session 的便利助手,可以安全地忽略。

    我更喜欢使用 Chrome xdebug 助手。只需单击地址栏中的错误即可启用/禁用调试 session 。

关于php - sublime text 2 kindari xdebug 插件说明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12944348/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com