怎么使用phpstorm调试thinkphp6

后端开发   发布日期:2023年06月18日   浏览次数:320

这篇文章主要介绍“怎么使用phpstorm调试thinkphp6”,在日常操作中,相信很多人在怎么使用phpstorm调试thinkphp6问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”怎么使用phpstorm调试thinkphp6”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

先启动程序

php think run

修改phpini

```
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.remote_autostart=1
xdebug.remote_enable=On
xdebug.ideakey="PHPSTORM"
```

配置服务器 servers

127.0.0.1
8000
xdebug

配置dbgp proxy

idekey PHPSTORM
host localhost
port 9000

配置 php web page

注意

关闭你的代理 走了127.0.0.1 影响调试

以上就是怎么使用phpstorm调试thinkphp6的详细内容,更多关于怎么使用phpstorm调试thinkphp6的资料请关注九品源码其它相关文章!