php sql server连接字符串..不同的端口

时间:2015-03-18 09:09:00

标签: php string connection xampp sqlsrv

在此连接失败后,我将xampp端口号80更改为8012。

$serverName = "test"; 
$connectionInfo = array("Database"=>"db_test", 
   "UID"=>"user_test", 
   "PWD"=>"test_pass"
); 
$conn = sqlsrv_connect($serverName,$connectionInfo);

我该如何解决?

1 个答案:

答案 0 :(得分:0)

您必须将服务器添加为

$serverName = "serverName\sqlexpress, 8012";

在官方网站上解释:

http://php.net/manual/en/function.sqlsrv-connect.php