我正在运行PHP 7.0和PhpStorm 2016.1
我安装了x-debug,这是我的配置:
运行Debug表单PhpStorm时,Debugger选项卡会显示以下错误消息:
等待使用ide键' 13136'
的传入连接
ide键每次都会变化。请帮忙。
答案 0 :(得分:1)
您的问题不完整,因为它缺少xdebug的当前php设置,但看起来您没有配置idekey
(您看到IDE Key被报告为“ No value “ 是因为)。只需添加:
xdebug.idekey = ....
到你的配置。这是我的设置中的工作配置:
xdebug.remote_handler="dbgp"
xdebug.remote_port=9000
xdebug.remote_autostart = on
xdebug.remote_start = on
xdebug.remote_enable = on
xdebug.remote_connect_back = on
xdebug.idekey = "xdebug"
idekey
使用的值可以是您想要的任何字符串,但必须与您在PHPStorm中设置的相同(请参阅Settings
/ Languages
/ PHP
/ {{1 } / Debug
/ DBGp Proxy
)。