PHP开发环境的搭建——XAMPP的安装与配置(Windows)
(https://blog.csdn.net/aoshilang2249/article/details/46934419)
[windows下安装配置Xampp]
(https://www.cnblogs.com/quicksnow/p/3465905.html)
- 然后直接next ->finish就得
打开Interij IDEA,安装一个插件
1.我们需要下载PHP 插件,然后重启
File->Settings…->Plugins->Install JetBrains plugin..
下载 Oro PHPStorm Plugin 与 PHP插件
创建PHP项目
1.选择创建项目
2.选择PHP项目
3.按步骤选择创建项目和选择PHP语言版本
选择 CLL Interpreter时没有这么办,新建:
如果安装wampserver,不需要重写安装PHP,wampserver是一个集成包,不用担心。选择PHP路径:
xdebugger扩展路径选择
完成选择
创建test.php,完成后点击右上角浏览器图标运行
在浏览器中运行结果,正确!
3、我如何配置默认的开始页面?
如果您在浏览器中访问类似 http://localhost/xampp/ 的文件夹,Apache 服务器会自动返回一个默认的开始页面。Apache 会自动寻找已存在的类似 index.php 的索引页。httpd.conf 中的“DirectoryIndex”指令负责这个功能。在这里您可以定义默认开始页面的名字和协议。XAMPP 在默认状态下,“DirectoryIndex”指令的列表如下:
index.php index.php4 index.php3 index.cgi index.pl index.html index.htm index.html.varindex.phtml
把Service.php复制到C:\xampp\htdocs目录下才能运行PHP文件
打开浏览器输入(http://localhost/Service.php)