我已将驱动程序包含在扩展文件夹中,并且将该扩展也添加到了php.ini文件中,wampp的版本为5.3。通过PHP连接到SQL Server时,出现以下错误。
<?php
/ ** *连接到SQL SERVER *通过WINDOWS认证连接 * /
/* Specify the server and connection string attributes. */
$serverName = "Wajahat\SQLEXPRESS";
$connectionInfo = array( 'Database'=>'modern_ecommerce');
/* Connect using Windows Authentication. */
$conn = sqlsrv_connect( $serverName, $connectionInfo);
if( $conn === false )
{
echo "Unable to connect.</br>";
die( print_r( sqlsrv_errors(), true));
}
答案 0 :(得分:0)
尝试在连接中添加Integrated Security = true或添加用户名和密码。从错误看来似乎无法建立连接