centos7下安装php sqlserver 扩展

1、安装Microsoft ODBC Driver for SQL Server

首先安装centos的odbc yum源

curl https://packages.microsoft.com/config/centos/7/prod.repo > /etc/yum.repos.d/ms-pred.repo

然后直接使用yum安装

yum install -y msodbcsql17 unixODBC unixODBC-devel


2、安装php扩展

首先去微软的github寻找编译好的so文件

https://github.com/Microsoft/msphpsql/releases

这里需要注意的是 5.7移除了php7.1的支持  5.7移除了对php7.2的支持

因此如果php版本是7.1的话  只能下载 5.6 for PHP Driver for SQL Server

如果php版本是7.2的话 只能下载 5.8 for PHP Driver for SQL Server

你可能感兴趣的:(centos7下安装php sqlserver 扩展)