Hi Team,
I have created an Azure App Service Linux PHP 8.1 app and I checked the installed extensions with php -m.
I noticed that sqlsrv and pdo_sqlsrv which were previously pre-installed in PHP8.0 image are missing. I had manually installed and in an SSH session with
su
curl https://packages.microsoft.com/config/debian/10/prod.list > /etc/apt/sources.list.d/mssql-release.list
pecl install sqlsrv
And then moved the downloaded sqlsrv.io in /home/site/ext, enabled this extension in /home/site/ini/extensions.ini and added the app setting PHP_INI_SCAN_DIR = /usr/local/etc/php/conf.d:/home/site/ini.
I would like to know if these two extensions will be pre-installed in the later updates in PHP 8.1 blessed image.
Many thanks!