ホームページ >バックエンド開発 >PHPチュートリアル >php连接SQLSERVER 的连接串中实例名的有关问题
php连接SQLSERVER 的连接串中实例名的问题
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> $host='192.168.1.122'; --IP$port=1433; --端口$instanse = 't02'; --实例名$username='sa';$password='passss';if (! $link = mssql_connect($host.':'.$port.$instanse, $username, $password) ) --这样写好像不对