当前位置 : 主页 > 网络编程 > PHP >

怎么使用phpstorm调试thinkphp6

来源:互联网 收集:自由互联 发布时间:2023-08-07
先启动程序 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 8

先启动程序

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 影响调试

上一篇:如何使用Whoops调试ThinkPHP6的异常?
下一篇:没有了
网友评论