http://windows.php.net/downloadphp
URL:http://sourceforge.net/projects/wincache/?source=typ_redirecthtml
https://dev.mysql.com/downloads/windows/installer/5.7.htmlmysql
确保IIS开启FastCGIsql
Window7上配置窗口数据库
Windows 2008 经过上配置窗口:windows
Run> CompMgmtLauncher>Add Roles>Add Role Servicesapp
“添加模块映射”,并填写以下内容ide
并建立测试页面 phpinfo.php,页面内容以下:测试
<html> <head> <title>PHP Test</title> </head> <body> <?php echo '<p>Hello World</p>'; ?> <?php phpinfo(); ?> </body> </html>
会报如下错误:ui
PHP Warning: phpinfo(): It is not safe to rely on the system's timezone settings.You are *required* to use the date.timezone setting or the date_default_timezone_set() function.In case you used any of those methods and you are still getting this warning,you most likely misspelled the timezone identifier.We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone.in **\phpinfo.php on line 7
修改措施:
在PHP的配置文件php.ini 中给定时区便可。修改内容为:
[Date] ; Defines the default timezone used by the date functions ; http://php.net/date.timezone date.timezone =Asia/Shanghai
记得重启IIS哦。
拷贝文件到ext 文件夹下:
在php.ini文件中打开相应配置:
测试页面会输出以下结果:
https://secure.php.net/manual/en/pdo.drivers.php
Driver name | Supported databases |
PDO_MYSQL | MySQL 3.x/4.x/5.x |
PDO_PGSQL | PostgreSQL |
PDO_SQLITE | SQLite 3 and SQLite 2 |
PDO_SQLSRV | Microsoft SQL Server / SQL Azure |
PDO_OCI | Oracle Call Interface |
PDO_ODBC | ODBC v3 (IBM DB2, unixODBC and win32 ODBC) |
PDO and all the major drivers ship with PHP as shared extensions, and simply need to be activated by editing the php.ini file:
extension=php_pdo.dll
Note:
This step is not necessary for PHP 5.3 and above, as a DLL is no longer required for PDO.
Next, choose the other database-specific DLL files and either use dl() to load them at runtime, or enable them in php.ini below php_pdo.dll. For example:
;These DLLs should exist in the system's extension_dir. extension=php_pdo.dll extension=php_pdo_firebird.dll extension=php_pdo_informix.dll extension=php_pdo_mssql.dll extension=php_pdo_mysql.dll extension=php_pdo_oci.dll extension=php_pdo_oci8.dll extension=php_pdo_odbc.dll extension=php_pdo_pgsql.dll extension=php_pdo_sqlite.dll
此处我只用了SQLite,配置以下
;Install SQLite PDO By HQF extension = php_pdo_sqlite.dll
测试页面会输出下面结果:
下载地址:
http://windows.php.net/downloads/pecl/releases/imagick/
待处理
处理Unicode的扩展模块
http://pecl.php.net/package/intl
解压Wiki 包后,按以下步骤安装便可。此处略去。。。
Installation on Windows systems(PHP)https://secure.php.net/manual/en/install.windows.php
PHP: System Timezone Setting error
Install the SQL Server Driver for PHP https://www.iis.net/learn/application-frameworks/install-and-configure-php-on-iis/install-the-sql-server-driver-for-php