php7.0.0在windows下的安装

1、  下载apache2.4.16(最新版)

32位下载,64位下载

下载完成后,解压后进入文件目录下,打开命令提示符,输入httpd.exe  –k install,完成apache的安装。

安装完成后如图所示。


2、  下载php7.0

直接解压到你需要的位置,我的是D:\webserver\www\php7.0.0,然后就可以了。

注意:php7.0和apache2.4.16都必须运行在vc14环境下

3、  下载安装mysql

和一般的安装一样,一般不会出问题。

4、  配置apache

LoadModule区添加下列两句:

PHPIniDir  "D:/webserver/php7.0.0/php.ini"

LoadModule php7_module "D:\webserver\php7.0.0\php7apache2_4.dll"

Addtype区添加下列两句:

AddType application/x-httpd-php .php        

AddType application/x-httpd-php-source .phps

DirectoryIndex后添加 index.php:

DirectoryIndex index.html index.php index.phpsDirectoryIndex index.html index.php index.phps

5、  配置php

将php.ini-production改名php.ini

extension_dir = "D:/webserver/php7.0.0/ext";

打开你所需要的扩展;


配置session存储位置:

session.save_path = "D:\webserver\sessiontemp";

更改时区:

date.timezone = Asia/Shanghai

安装完成。

在htdocs下新建文件phpinfo.php,输出PHPinfo,就可以查看新的php的信息了。

你可能感兴趣的:(php7.0.0在windows下的安装)