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

php在windows环境下的安装

WBOY
WBOYOriginal
2016-06-06 19:58:10911Durchsuche

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

 

 

 

 

 

 

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn