直接在 PhpStorm 中运行 PHP 脚本
- 如何在 PhpStorm 中立即运行当前的 PHP 文件?
- 如何像 PyCharm 一样在 PHPstorm 中执行 PHP 命令?
- How can I instantly run the current PHP file in PhpStorm?
- How can I execute PHP command in PHPstorm like PyCharm?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在编辑器中右键单击,选择运行(或按 ctrl+shift+f10)以执行命令行脚本。如果您想在网络服务器上测试它,请使用同一菜单中的在浏览器中打开(您必须拥有正确配置映射的浏览器和服务器)。
Right click in the editor, choose Run (or press ctrl+shift+f10) for command line script execution. If you want to test it on a web server, use Open in Browser from the same menu (you must have browser and server with mappings properly configured for this).
除了 @CrazyCoder 的解决方案之外,在 2016.3 版本中,我遇到了这个问题,我只看到了 2 个这样的图标,
< img src="https://i.sstatic.net/qqlx9.png" alt="运行对话框">
你应该点击第二个!
如果您点击第二个(像我一样),我知道它会在浏览器选项卡中打开。它是在嵌入式 Web 服务器中打开的配置。
所以我想删除这个配置并开始一个新的。因此,我在右上角找到了通过此下拉菜单的条目,
在选择“编辑配置”时,我可以更改测试配置。
希望这对像我这样的人有帮助,尽管显然不是最初的海报。
干杯
On top of @CrazyCoder's solution, in version 2016.3 I came across this issue where I just saw 2 icons like this,
You should hit the 2nd one!
IF you hit the 2nd (like me) next thing I know, it opened in a browser tab. It is a configuration to open in an embeded web server.
So I wanted to delete this configuration and start a new one. So, I found the entry to through this drop down in the top right corner,
While picking Edit Configuration, I could change the test configuration.
Hope that helps someone like me, although clearly not the initial poster.
Cheers