Home > php教程 > php手册 > php在windows环境下的安装

php在windows环境下的安装

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-06 19:58:10
Original
941 people have browsed it

php在windows环境下的安装 php5.3 配合IIS 一般情况下,我们是在windows2003下安装,也就是与IIS6.0配合使用 使用ISAPI 使用ISAPI的话,就直接将php5.2.x版本解压至某个目录,然后在IIS中设置ISAPI的映射 1.ISAPI筛选器 3. 使用FastCGI 记录在操作系统-IIS-I

php在windows环境下的安装

 

php5.3

 


配合IIS

一般情况下,我们是在windows2003下安装,也就是与IIS6.0配合使用

使用ISAPI
使用ISAPI的话,就直接将php5.2.x版本解压至某个目录,然后在IIS中设置ISAPI的映射
1.ISAPI筛选器

3.


使用FastCGI
记录在操作系统-IIS-IIS6下

版本说明

5.2版本才有操作mssql的库,5.3版本没有mssql的库,只能使用微软的SQLServerDriverForPHP 目前最新版本是:2.0的rtm版本
特别注意:用微软的驱动,需要在程序中注意大小写(并非PHP关键字,可能是SQL)

安装微软的驱动如下:
SQLSRV20.EXE - 解压,将相应的驱动文件复制到php目录下的ext目录中,并且在扩展处添加引用
sqlncli.msi - ODBC的驱动,一定要安装

 

5.3安装后,php.ini的设置有以下几个需要注意的地方:

首先设置windows下的PATH,然后设置:
default_charset = "utf-8"
extension_dir = "d:/php/ext/"

启用如下扩展:
extension=php_gd2.dll
extension=php_mbstring.dll
extension=php_mysql.dll
extension=php_mysqli.dll
extension=php_pdo_mysql.dll
extension=php_pdo_sqlite.dll
extension=php_sockets.dll
extension=php_sqlite.dll

其他根据需要启用即可

此处设置成:
date.timezone = PRC

 

 

 

 

 

 

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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template