【发布时间】:2014-01-28 04:01:49
【问题描述】:
我正在尝试启动 XDEBUG,但无法显示 cookie。下面是放在我的 php.ini 文件中的内容。我重新启动了apache。我做了一个 phpinfo() 调用,我确实看到启用了 xdebug 并设置了设置。但是当我执行localhost/?XDEBUG_SESSION_START=1 时,我希望在我的浏览器中看到 Cookie 设置为 1 对吗?
zend_extension ="/usr/lib/php/extensions/no-debug-non-zts-20100525/xdebug.so"
xdebug.remote_enable=1
xdebug.profiler_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.profiler_output_dir="/tmp"
当我运行 php -m 时,我没有看到它,但我在 phpinfo 中看到了它
【问题讨论】:
标签: php apache debugging xdebug