增加php mssql擴充的方法:1.下載freetds及php源碼包;2、安裝freetds;3、解壓縮php源碼包,並進入mssql擴充目錄;4、產生configure;5、編輯php. ini文件,加入mssql擴充即可。
本文操作環境:linux5.9.8系統、php-5.2.17版、DELL G3電腦
怎麼增加php mssql擴充?
php安裝mssql擴充功能
關於freetds編譯時with-tdsver參數
在FreeTDS 1.1版本之後,可以設定為auto,版本之前需要手動指定。
以前寫過mssql模組安裝,這次只是補充編譯freetds時指定with-tdsver參數
1、下載freetds及php源碼包
[root@VM_0_11_centos ~]# wget -c ftp://ftp.freetds.org/pub/freetds/stable/freetds-1.1.21.tar.gz [root@VM_0_11_centos ~]# wget -c http://museum.php.net/php5/php-5.2.17.tar.gz
2、安裝freetds
# 解壓縮freetds原始碼套件
[root@VM_0_11_centos ~]# tar zxvf freetds-1.1.21.tar.gz [root@VM_0_11_centos ~]# cd freetds-1.1.21/
# 開始編譯安裝
[root@VM_0_11_centos ~]# ./configure --prefix=/usr/local/freetds --with-tdsver=7.3 --enable-msdblib [root@VM_0_11_centos ~]# make && make install
3、編譯mssql模組
# 解壓縮php原始碼套件
[root@VM_0_11_centos ~]# tar zxvf php-5.2.17.tar.gz
# 進入mssql擴展目錄
[root@VM_0_11_centos ~]# cd php-5.2.17/ext/mssql/
# 產生configure
[root@VM_0_11_centos mssql]# /www/server/php/52/bin/phpize
# 開始編譯
[root@VM_0_11_centos php-5.2.17]# ./configure --with-php-config=/www/server/php/52/bin/php-config --with-mssql=/usr/local/freetds [root@VM_0_11_centos php-5.2.17]# make && make install
4、編輯php.ini文件,加入mssql擴展,在491 行下面新增(如果不會用vi編輯器,可直接將檔案下載改完再傳上去)
[root@VM_0_11_centos ~]# vi /www/server/php/52/etc/php.ini extension_dir = "/www/server/php/52/lib/php/extensions/no-debug-non-zts-20060613/" extension = mssql.so # 新增行
儲存退出,重新啟動php或重新啟動伺服器。
推薦學習:《PHP影片教學》
以上是怎麼增加php mssql擴展的詳細內容。更多資訊請關注PHP中文網其他相關文章!