Home > php教程 > php手册 > PHP学习之环境搭建

PHP学习之环境搭建

WBOY
Release: 2016-06-13 09:42:15
Original
933 people have browsed it

计算机环境 win7  64位

 

搭建  apache-httpd-2.2-win64  +  php-5.3.6-Win32-VC9-x64  +MySQL_5.5.13_winx64开发环境

 

 

安装过程遇到的问题:

 

1.PHP版本问题,必须下载对应apache的版本才会有php5apache2.dll库,(apache去调用php组件需要加载该库);

 

2.注意设置文件访问权限;

 

3.httpd.conf修改后,需要重启apache

 

 

 

另外,搭环境过程要明白这三者之间的关系,apache为提供web服务,添加一下代码,第一行代表了,当客户端通过web访问PHP文件时,apache就会加载该组件对php文件进行输出。第二行代表了对php文件进行解析调用的php。第三行代表了apache在什么情况下去加载php组件。

 

LoadModule php5_module "D:/Server/php-5.3.6-Win32-VC9-x64/php5apache2_2.dll"

 

PHPiniDir "D:/Server/php-5.3.6-Win32-VC9-x64"

 

AddType application/x-httpd-php .html .htm .php

 

而 MySql就比较简单,至少提供数据存储功能,也可以换成其它类型的数据库。当然数据部署的地方可以随意,只要能访问到即可!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template