Yes, I know that PHP 7.0 removed the extensions needed to connect to MSSQL. FreeTDS was my option prior to PHP 7.0 but now there really is no obvious upgrade path for those
I modified
yum install freetds-dev
vim /etc/freetds.conf
And modify freetds.conf, install php mssql module
yum install php-mssql.x86_64
The sybase of PHP7 contains the pdo_dblib module.
sudo apt install php7.0-sybase
Official MS extension has branch for PHP 7:
There's still lot of things missing, some marked as planned (Linux support is amongst them), nevertheless it could be another solution in the future.
EDIT (09-09-2016): There were already few Linux releases published since March, with CentOS/Ubuntu specific packages and source available. Keep in mind they aren't marked as Production Ready yet.
sudo apt-get install php7.2-pdo-dblib
this worked for me on PHP 7.0 but still, you need to add the extension on
/etc/php/7.0/apache2/php.ini
as well as
/etc/php/7.0/cli/php.ini
I definitely agree with you. I work primarily with SQL Servers at work and do not understand why they are not including default drivers for SQL servers in PHP.
For linux, i'm not too sure what you previously used but I found that the "dblib" driver is the best driver to connect to SQL Servers.
But basically for a linux box you just want to run these few steps to have a sql server driver installed.
apt-get install freetds-dev -y
vim /etc/freetds.conf
Then go ahead and add your connections there and restart apache and you should be good to go!
As per the answer above - the steps output a shared object (*.so) so the php.ini file needs the file extension too.
echo "extension=sqlsrv.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
echo "extension=pdo_sqlsrv.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`