开发环境是windows下的XAMPP,PHP为5.5.38。
下载地址:
https://www.apachefriends.org/download.html
安装的时候。我这边只选择mysql和PHP
安装完XAMPP后,开始让PHP跑起来,创建一个文件夹,然后在这个文件夹里,创建index.php,
// index.php
<?php phpinfo(); ?>
然后配置Apache虚拟主机,修改Apache配置文件,/xampp/apache/conf/extra/httpd-vhosts.conf
添加:
<VirtualHost *:80>
ServerName www.myphp.com
DocumentRoot "C:/webapp/"
<Directory "C:/webapp/">
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
这边不多做说明。
然后修改:C:\Windows\System32\drivers\etc\hosts
添加:127.0.0.1 www.myphp.com
然后打开浏览器。会看到PHP的信息。XAMPP搭建到这边已经完成。