时间:2021-05-26
时间:2020年8月15日10:25:47
Xdebug插件安装省略,自己百度安装,win和linux环境安装方式不一样。
注意和php版本匹配
1、phpinfo信息
2、php.ini配置
[xdebug]zend_extension=/usr/lib64/php/modules/xdebug.soxdebug.remote_enable =1xdebug.profiler_enable = Onxdebug.auto_trace=Onxdebug.profiler_enable_trigger = Onxdebug.profiler_output_name = cachegrind.out.%t.%pxdebug.remote_handler ="dbgp"xdebug.remote_host ="172.16.6.44"xdebug.remote_mode ="req"xdebug.remote_port =9000xdebug.idekey = "PHPSTORM"xdebug.remote_autostart = 1;xdebug.remote_connect_back = 1; If openssl.cafile is not specified or if the CA file is not found, the; directory pointed to by openssl.capath is searched for a suitable; certificate. This value must be a correctly hashed certificate directory.; Most users should not specify a value for this directive as PHP will; attempt to use the OS-managed cert stores in its absence. If specified,; this value may still be overridden on a per-stream basis via the "capath"; SSL stream context option.;openssl.capath= ; Local Variables:; tab-width: 4; End: xdebug.var_display_max_children=10240xdebug.var_display_max_data=10240xdebug.var_display_max_depth=102403、当然你的xdebug.so扩展也要安装起来。
4、编辑器phpstorm配置
setting配置
端口和ini中配置的一样
本机IP配置,虚拟机的IP是192.168.99.26
输出窗口信息
代码界面输出
1.首先检查phpstorm的xdebug配置
->这里的debug port要和php.ini里面的 xdebug.remote_port相一致!默认是9000,如果9000端口被占用的话,可以改成其他 端口。
4.开始使用断点调试
-〉开启调试(phpstrom)
1、设置断点
F9跳出
F8下一步
->浏览器增加开启和关闭按钮
https:///phpstorm/marklets/
-〉在代码中打断点,运行访问该页面的url
浏览器开启调试,然后刷新页面即可。
总结
到此这篇关于php开发最强大的IDE编辑的phpstorm 2020.2配置Xdebug调试的文章就介绍到这了,更多相关phpstorm调试配置 Xdebug内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
一、前言zendstadio调试很不方便,php5.3版本之前可使用zenddebuger调试,php5.3以后就需要使用XDebug调试了。下面介绍我配置的经
PHPstorm是一款非常不错的PHP开发工具,有很多需要自己设置。比如,IDE常见的代码自动换行功能需要我们自己去配置才能实现。File->Settings-
XDEBUG配置:1.安装xdebug略了。网上有很多资料。重点写php.ini的配置[XDebug]复制代码代码如下:zend_extension="/usr
一、安装配置 1、下载PHP的XDebug扩展,网址:http://xdebug.org/ 2、在Linux下编译安装XDebug引用tar-xzfxdeb
开发的时候我都是使用XDebug在本地调试,但是最近加入一些项目中去,环境太复杂了,要在本地搭建一个开发环境真的太麻烦了,那么我们怎么使用xdebug来远程调试