phpStudy开发环境PHPStorm下XDebug配置
phpStudy 我用的是php5.5版本 默认XDebug扩展都安装完成了 就不讲怎么安装了 。
成都创新互联始终坚持【策划先行,效果至上】的经营理念,通过多达10年累计超上千家客户的网站建设总结了一套系统有效的网络营销推广解决方案,现已广泛运用于各行各业的客户,其中包括:凿毛机等企业,备受客户好评。
1.打开php.ini文件修改如下:
[XDebug]
xdebug.profiler_append=0
xdebug.profiler_enable=1
xdebug.profiler_enable_trigger=0
xdebug.profiler_output_dir="F:\phpStudy\tmp\xdebug"
xdebug.trace_output_dir="F:\phpStudy\tmp\xdebug"
xdebug.profiler_output_name="cachegrind.out.%t.%p"
xdebug.remote_enable=1
xdebug.remote_handler="dbgp"
xdebug.remote_host="127.0.0.1"
xdebug.remote_port=9000
zend_extension="F:\phpStudy\php55n\ext\xdebug.dll"
xdebug.idekey=PHPSTORM
配置如上
2.修改PHPStorm配置
图1 打开设置
图2 搜索xdebug 端口信息修改 如果是9000 就不用修改
图3 配置host端口 IDE key (注意要与php.ini 保持一致)
图4 配置PHP解释器的路径
打开我的 代码
3常见问题
访问页面准备进入断点时,PHPStorm报错:Cannot accept external Xdebug connection: Cannot evaluate expression'isset($_SERVER['PHP_IDE_CONFIG'])';
导致此问题的一个可能原因是:服务器端的php.ini中配置了:
extension=/path/xdebug.so
应该只保留下面一个:
zend_extension=/path/xdebug.so
参考资料
1 phpStorm+XDebug进行断点调试的配置
http://www.chenxuanyi.cn/xampp-phpstorm-xdebug.html
2利用下面网页中的Start debug按钮在COOKIE中设置Xdebug所需的变量。
http://www.jetbrains.com/phpstorm/marklets/
3 Cannot accept external Xdebug connection:Cannot evaluate expression 'isset($_SERVER['PHP_IDE_CONFIG'])
http://devnet.jetbrains.com/message/5463083?tstart=0
标题名称:phpStudy开发环境PHPStorm下XDebug配置
URL链接:http://ybzwz.com/article/peejhs.html