一种方法是使用 FreeTDS for Windows
我假设你有 PHP >5.3 下载这个http://download.moodle.org/download.php/dblib/php53/DBLIB_TS.zip
将此行添加到您的 php.iniextension=php_dblib.dll
freetds.conf
您还需要在 PHP 安装的根目录中创建一个名为的文件。
它应该看起来像这样:
[global]
host = xxx.xxx.xxx.xxx (host name or ip of the MSSQL server)
port = 1433
client charset = UTF-8
tds version = 8.0
text size = 20971520
重新启动 Apache 并尝试运行此脚本:
<?php
$link = mssql_connect('localhost', 'db_user', 'db_password');
if(!$link) {
echo'Could not connect';
die('Could not connect: ' . mssql_error());
}
echo'Successful connection';
mssql_close($link);
?>
如果这不起作用,请在 fb 上联系我 ;)