gpt4 book ai didi

php - Xdebug 已安装,但未显示在 phpinfo 上

转载 作者:行者123 更新时间:2023-12-04 18:33:22 24 4
gpt4 key购买 nike

我正在尝试在我的 ubuntu linux 系统上安装 xdebug。
正确的.so文件,make install一切都正确,也许是php.ini配置?
我使用安装向导。
Installation Wizard Step by Step
我在第 9 步,在我的 INI 文件中添加了 zend_extension。
在其他 INI 文件上添加了 Zend 扩展命令。
当我 PHP_INFO() 时,xdebug 只是没有出现在列表中。
我用谷歌搜索,似乎其他人的 php.ini 文件有这个

xdebug.remote_enable=true
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.profiler_enable=1
xdebug.profiler_output_dir=/tmp
但我的没有?
所以我将这些添加到我的 php7.4/cli/php.ini
仍然没有显示在我的 phpinfo 上?
我去终端并输入 php info xdebug 似乎在那里。 xdebug 支持 => 启用版本 => 2.9.6
但我创建了一个 testpage.php 并把 phpinfo();
xdebug 没有出现在页面中?
我错过了什么吗?

最佳答案

是的,您需要更新您的 php.ini 文件。下面是我在 php.ini 文件中添加的代码行。

[XDebug]
zend_extension = "path of you extension example /usr/lib/php/xdebub.so"
xdebug.remote_autostart = 1
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
更改 php.ini 文件后必须重新启动服务器。

关于php - Xdebug 已安装,但未显示在 phpinfo 上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63197227/

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