通过带有 Windows 身份验证的 odbc 连接从 PHP 连接到 SQL 服务器

Connect to SQL server from PHP via odbc connection with Windows authentication

我正在尝试使用 odbc_connect 从 PHP 脚本连接到本地 SQL 服务器,但我无法登录。

到目前为止,这是我的代码:

$user= "PC_NAME\PC_USER";
$password="";
$dsn = "Driver={SQL Server};Server=MyServer;Database=MyDatabase;Integrated Security=SSPI;Persist Security Info=False;";
$link = odbc_connect("$dsn", $user, $password);

你能看出什么不对吗?

我的 SQL 服务器配置不正确。除了默认 Windows 登录

之外,我还必须允许 SQL 登录