XAMPP(v1.83)中的PHP(v5.5.15)訪問SQLServer2014

來源:互聯網
上載者:User

標籤:

驅動安裝:

1. 下載SQLServer的微軟官方PHP驅動,http://msdn.microsoft.com/en-us/sqlserver/ff657782.aspx

2. 安裝SQLSRV31.EXE檔案,也就是解壓縮3. 將檔案(安全執行緒)php_pdo_sqlsrv_55_ts.dll和php_sqlsrv_55_ts.dll拷貝到\xampp\php\ext中4. 修改\xampp\php\php.ini檔案,在[PHP]下增加    extension=php_pdo_sqlsrv_55_ts.dll    extension=php_sqlsrv_55_ts.dll5. 重啟動電腦(可能非必需)  SQLSRV 函數 編碼轉換:網頁編碼UTF-8方法一:串連時指定字元集   $conInfo=array(‘Database‘=>$database,‘UID‘=>$uid,‘PWD‘=>$pwd,  ‘CharacterSet‘=>‘UTF-8‘);     $link=sqlsrv_connect($serverName,$conInfo);   方法二:訪問時使用iconv手動轉換  寫入SQL Server時轉換編碼到GB2312      iconv(‘utf-8‘, ‘GB2312//IGNORE‘, ‘要寫入資料庫的字串‘));  讀取SQL Server字串時轉換編碼到UTF-8      iconv(‘GB2312‘, ‘utf-8//IGNORE‘, ‘資料庫返回來的字串‘));  PDO 函數 編碼轉換:網頁編碼UTF-8,無需轉換, PDO::SQLSRV_ENCODING_UTF8為預設編碼資料庫連接樣本:$c = new PDO("sqlsrv:Server=localhost;Database=testdb", "UserName", "Password");$c = new PDO("sqlsrv:Server=localhost,1521;Database=testdb", "UserName", "Password");connect to a MS SQL Server database on a specified port 1521。   和MySQL比速度慢很多

XAMPP(v1.83)中的PHP(v5.5.15)訪問SQLServer2014

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.