Home  >  Article  >  Backend Development  >  Windows PHP的装配

Windows PHP的装配

WBOY
WBOYOriginal
2016-06-13 13:13:021060browse

Windows PHP的安装
1. Windows PHP
1.1. 安装 PHP
(1) 下载php免安装版PHP 5.2.9 zip package,地址为http://cn2.php.net/downloads.php
(2) 解压文件,在解压后的目录中有两个文件,分别是“php.ini-dist”与“php.ini-recommended”,
    php.ini-dist 适合开发时使用;
    php.ini-recommended 拥有较高的安全性设定,适合上线当产品使用;
    根据情况选择一个,复制并重命名为php.ini,位置任意。
1.2. 修改apache的httpd.conf配置文件,添加如下内容:

LoadModule php5_module [php解压路径]/php5apache2_2.dll
PHPIniDir [php.ini所在目录]
AddType application/x-httpd-php .php

1.3. 添加mysql支持:
(1) 将php.ini文件的extension=php_mysql.dll这一行的注释去掉;
(2) 将php.ini文件的extension_dir这一行修改为:extension_dir = "[php安装路径]/ext";
(3) 把libmysql.dll文件复制到C:/windows目录下;
1.4. 添加xdebug支持:
(1)下载xdebug的dll文件(例:php_xdebug-2.0.4-5.2.8.dll),并放到“[php安装路径]/ext”目录;
(2)修改php.ini文件,在文件最后添加如下内容:
[XDebug]
zend_extension_ts = "[php安装路径]/ext/php_xdebug-2.0.4-5.2.8.dll"
xdebug.remote_enable=1
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.profiler_enable=1
xdebug.profiler_output_dir="[php安装路径]/xdebug"

Statement:
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