Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
因此,当我单击运行时,PHPstorm 在其控制台中运行 php 代码很好,这很好,但我想在浏览器中看到它。
所以我在 PHPstorm 中创建了一个新的 PHP Web 应用程序,将服务器设置为“localhost:8000”。
现在,当我单击 RUN 时,它会打开浏览器,但我收到一条错误消息:“糟糕!Google Chrome 无法连接到 localhost:8000”
我究竟做错了什么??
谢谢!
您必须首先为您的项目配置运行配置。
转到Run -> Edit Configurations,单击“PHP 内置 Web 服务器”,然后按“+”。您应该看到如下内容:
Run -> Edit Configurations
保存设置后,您可以通过 运行 Web 服务器Run -> Run '<project-name>'。它现在应该将页面提供给您的浏览器。
Run -> Run '<project-name>'