|
发表于 2014-3-26 21:34:32
|
显示全部楼层
下载SQLServerDriverForPHP1.1 这个驱动,下载后并解压.
把解压后的文件php_sqlsrv_53_nts_vc9,php_sqlsrv_53_ts_vc9拷贝到C:\Program Files\php\ext里
C:\Program Files\php\php.ini文件打开,找到如下代码:
01.; Windows Extensions
02.; Note that ODBC support is built in, so no dll is needed for it.
03.; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5)
04.; extension folders as well as the separate PECL DLL download (PHP 5).
05.; Be sure to appropriately set the extension_dir directive.
06.;
在上述代码下添加以下2行代码
extension=php_sqlsrv_53_ts_vc9.dll
extension=php_sqlsrv_53_nts_vc9.dll
|
|