无法为 Microsoft SQL Server Debian 8 安装 PHP 驱动程序

Can't Install the PHP drivers for Microsoft SQL Server Debian 8

我正在尝试为 MSSQL Server 安装 PHP 驱动程序,因为出现错误 sqlsrv_connect 未定义

我运行命令sudo pecl install sqlsrv

我得到这个错误输出:

Makefile:181: recipe for target 'conn.lo' failed
make: *** [conn.lo] Error 1
ERROR: `make' failed

我似乎找不到这里出了什么问题。

好的,我找到了解决方案: 问题是我没有 php-pear php7.2-dev 所以 运行 以下命令:

sudo apt-get install php-pear php7.2-dev

然后继续:sudo pecl install sqlsrv

成功了!