- Download the Microsoft Drivers for PHP for SQL Server
- Download
- Version information
- Release notes
- Previous releases
- Загрузка драйверов Майкрософт для PHP для SQL Server
- Скачивание
- Сведения о версии
- Заметки о выпуске
- Предыдущие выпуски
- Linux and macOS Installation Tutorial for the Microsoft Drivers for PHP for SQL Server
- Installing on Ubuntu
- Step 1. Install PHP (Ubuntu)
- Step 2. Install prerequisites (Ubuntu)
- Step 3. Install the PHP drivers for Microsoft SQL Server (Ubuntu)
- Step 4. Install Apache and configure driver loading (Ubuntu)
- Step 5. Restart Apache and test the sample script (Ubuntu)
- Installing on Ubuntu with PHP-FPM
- Step 1. Install PHP (Ubuntu with PHP-FPM)
- Step 2. Install prerequisites (Ubuntu with PHP-FPM)
- Step 3. Install the PHP drivers for Microsoft SQL Server (Ubuntu with PHP-FPM)
- Step 4. Install and configure nginx (Ubuntu with PHP-FPM)
- Step 5. Restart nginx and test the sample script (Ubuntu with PHP-FPM)
- Installing on Red Hat
- Step 1. Install PHP (Red Hat)
- Step 2. Install prerequisites (Red Hat)
- Step 3. Install the PHP drivers for Microsoft SQL Server (Red Hat)
- Step 4. Install Apache (Red Hat)
- Step 5. Restart Apache and test the sample script (Red Hat)
- Installing on Debian
- Step 1. Install PHP (Debian)
- Step 2. Install prerequisites (Debian)
- Step 3. Install the PHP drivers for Microsoft SQL Server (Debian)
- Step 4. Install Apache and configure driver loading (Debian)
- Step 5. Restart Apache and test the sample script (Debian)
- Installing on Suse
- Step 1. Install PHP (Suse)
- Step 2. Install prerequisites (Suse)
- Step 3. Install the PHP drivers for Microsoft SQL Server (Suse)
- Step 4. Install Apache and configure driver loading (Suse)
- Step 5. Restart Apache and test the sample script (Suse)
- Installing on Alpine
- Step 1. Install PHP (Alpine)
- Step 2. Install prerequisites (Alpine)
- Step 3. Install the PHP drivers for Microsoft SQL Server (Alpine)
- Step 4. Install Apache and configure driver loading (Alpine)
- Step 5. Restart Apache and test the sample script (Alpine)
- Installing on macOS
- Step 1. Install PHP (macOS)
- Step 2. Install prerequisites (macOS)
- Step 3. Install the PHP drivers for Microsoft SQL Server (macOS)
- Step 4. Install Apache and configure driver loading (macOS)
- Step 5. Restart Apache and test the sample script (macOS)
- Testing Your Installation
- SQLSRV example
- PDO_SQLSRV example
Download the Microsoft Drivers for PHP for SQL Server
The Microsoft Drivers for PHP for SQL Server enable integration with SQL Server for PHP applications. The drivers are PHP extensions that allow the reading and writing of SQL Server data from within PHP scripts. The drivers provide interfaces for accessing data in Azure SQL Database and in all editions of SQL Server 2012 and later (including Express Editions). The drivers make use of PHP features, including PHP streams, to read and write large objects.
On Linux and macOS, the drivers for PHP are easily downloaded and installed using PECL. See the Linux and macOS installation tutorial for details. If you need to download and install the drivers for PHP on Linux and macOS manually, packages for those platforms can be found on the GitHub release tags.
Download
Microsoft Drivers 5.9 for PHP for SQL Server is the latest general availability (GA) version.
Download Microsoft Drivers for PHP for SQL Server (Windows)
GitHub Release Tag v5.9.0 (Linux and macOS packages are available here)
Version information
- Release number: 5.9.0
- Released: January 29, 2021
If you have feedback, the best way to contact the Microsoft Drivers for PHP for SQL Server team is by filing an issue on the GitHub repository.
Release notes
For details about what has changed in this release, see the release notes.
Previous releases
This page is for the latest version of the Microsoft Drivers for PHP only. To download previous versions, see Previous Microsoft Drivers for PHP for SQL Server Releases.
Источник
Загрузка драйверов Майкрософт для PHP для SQL Server
Драйвер SQL Server для PHP обеспечивает надежную и масштабируемую интеграцию приложений PHP с сервером SQL Server. Эти драйверы представляют собой расширения для PHP, которые позволяют считывать и записывать данные SQL Server из скриптов PHP. Драйверы предоставляют интерфейсы для доступа к данным в Базе данных SQL Azure и во всех выпусках SQL Server 2012 и более поздних версий (включая экспресс-выпуски). Драйвер использует функции PHP (в том числе потоки) для чтения и записи крупных объектов.
В Linux и macOS драйверы для PHP легко скачать и установить с помощью PECL. Подробнее см. учебник по установке для Linux и Mac. Если необходимо скачать и установить драйверы для PHP в Linux и macOS вручную, пакеты для этих платформ можно найти в тегах выпуска GitHub.
Скачивание
Microsoft Drivers 5.9 для PHP для SQL Server — это последняя общедоступная версия.
Скачать Microsoft Drivers для PHP для SQL Server (Windows)
Тег выпуска GitHub 5.9.0 (пакеты Linux и macOS доступны здесь)
Сведения о версии
- Номер выпуска: 5.9.0
- Выпущено: 29 января 2021 г.
Если вы хотите оставить отзыв, лучше всего обратиться к команде Microsoft Drivers Майкрософт для PHP для SQL Server, создав проблему в репозитории GitHub.
Заметки о выпуске
См. сведения о новых возможностях в этом выпуске в заметках о выпуске SSMS.
Предыдущие выпуски
Эта страница описывает возможности только последней версии Microsoft Drivers для PHP. Чтобы скачать предыдущие версии, см. страницу с предыдущими выпусками Microsoft Drivers для PHP для SQL Server.
Источник
Linux and macOS Installation Tutorial for the Microsoft Drivers for PHP for SQL Server
The following instructions assume a clean environment and show how to install PHP 8.0, the Microsoft ODBC driver, the Apache web server, and the Microsoft Drivers for PHP for SQL Server on Ubuntu, Red Hat, Debian, Suse, Alpine, and macOS. These instructions advise installing the drivers using PECL, but you can also download the prebuilt binaries from the Microsoft Drivers for PHP for SQL Server GitHub project page and install them following the instructions in Loading the Microsoft Drivers for PHP for SQL Server. For an explanation of extension loading and why we do not add the extensions to php.ini, see the section on loading the drivers.
The following instructions install PHP 8.0 by default using pecl install , if the PHP 8.0 packages are available. You may need to run pecl channel-update pecl.php.net first. Some supported Linux distros default to PHP 7.1 or earlier, which is not supported for the latest version of the PHP drivers for SQL Server. See the notes at the beginning of each section to install PHP 7.4 or 7.3 instead.
Also included are instructions for installing the PHP FastCGI Process Manager, PHP-FPM, on Ubuntu. PHP-FPM is needed if you’re using the nginx web server instead of Apache.
While these instructions contain commands to install both SQLSRV and PDO_SQLSRV drivers, the drivers can be installed and function independently. Users comfortable with customizing their configuration can adjust these instructions to be specific to SQLSRV or PDO_SQLSRV. Both drivers have the same dependencies except where noted below.
Installing on Ubuntu
Ubuntu versions 16.04, 18.04, and 20.04 are supported.
To install PHP 7.4 or 7.3, replace 8.0 with 7.4 or 7.3 in the following commands.
Step 1. Install PHP (Ubuntu)
Step 2. Install prerequisites (Ubuntu)
Install the ODBC driver for Ubuntu by following the instructions on the Install the Microsoft ODBC driver for SQL Server (Linux). Make sure to also install the optional unixodbc-dev package. It’s used by the pecl command to install the PHP drivers.
Step 3. Install the PHP drivers for Microsoft SQL Server (Ubuntu)
If there is only one PHP version in the system, then the last step can be simplified to phpenmod sqlsrv pdo_sqlsrv .
Step 4. Install Apache and configure driver loading (Ubuntu)
Step 5. Restart Apache and test the sample script (Ubuntu)
To test your installation, see Testing your installation at the end of this document.
Installing on Ubuntu with PHP-FPM
Ubuntu versions 16.04, 18.04, and 20.04 are supported.
To install PHP 7.4 or 7.3, replace 8.0 with 7.4 or 7.3 in the following commands.
Step 1. Install PHP (Ubuntu with PHP-FPM)
Verify the status of the PHP-FPM service by running:
Step 2. Install prerequisites (Ubuntu with PHP-FPM)
Install the ODBC driver for Ubuntu by following the instructions on the Install the Microsoft ODBC driver for SQL Server (Linux). Make sure to also install the optional unixodbc-dev package. It’s used by the pecl command to install the PHP drivers.
Step 3. Install the PHP drivers for Microsoft SQL Server (Ubuntu with PHP-FPM)
If there is only one PHP version in the system, then the last step can be simplified to phpenmod sqlsrv pdo_sqlsrv .
Verify that sqlsrv.ini and pdo_sqlsrv.ini are located in /etc/php/8.0/fpm/conf.d/ :
Restart the PHP-FPM service:
Step 4. Install and configure nginx (Ubuntu with PHP-FPM)
To configure nginx, you must edit the /etc/nginx/sites-available/default file. Add index.php to the list below the section that says # Add index.php to the list if you are using PHP :
Next, uncomment, and modify the section following # pass PHP scripts to FastCGI server as follows:
Step 5. Restart nginx and test the sample script (Ubuntu with PHP-FPM)
To test your installation, see Testing your installation at the end of this document.
Installing on Red Hat
Red Hat versions 7 and 8 are supported.
Step 1. Install PHP (Red Hat)
To install PHP on Red Hat 7, run the following commands:
To install PHP 7.4 or 7.3, replace remi-php80 with remi-php74 or remi-php73 respectively in the following commands.
To install PHP on Red Hat 8, run the following commands:
To install PHP 7.4 or 7.3, replace remi-8.0 with remi-7.4 or remi-7.3 respectively in the following commands.
Step 2. Install prerequisites (Red Hat)
Install the ODBC driver for Red Hat 7 or 8 by following the instructions on the Install the Microsoft ODBC driver for SQL Server (Linux). Make sure to also install the optional unixodbc-dev package. It’s used by the pecl command to install the PHP drivers.
Step 3. Install the PHP drivers for Microsoft SQL Server (Red Hat)
You can alternatively install from the Remi repo:
Step 4. Install Apache (Red Hat)
SELinux is installed by default and runs in Enforcing mode. To allow Apache to connect to databases through SELinux, run the following command:
Step 5. Restart Apache and test the sample script (Red Hat)
To test your installation, see Testing your installation at the end of this document.
Installing on Debian
Debian versions 9 and 10 are supported.
To install PHP 7.4 or 7.3, replace 8.0 in the following commands with 7.4 or 7.3.
Step 1. Install PHP (Debian)
Step 2. Install prerequisites (Debian)
Install the ODBC driver for Debian by following the instructions on the Install the Microsoft ODBC driver for SQL Server (Linux). Make sure to also install the optional unixodbc-dev package. It’s used by the pecl command to install the PHP drivers.
You may also need to generate the correct locale to get PHP output to display correctly in a browser. For example, for the en_US UTF-8 locale, run the following commands:
You may need to add /usr/sbin to your $PATH , as the locale-gen executable is located there.
Step 3. Install the PHP drivers for Microsoft SQL Server (Debian)
If there is only one PHP version in the system, then the last step can be simplified to phpenmod sqlsrv pdo_sqlsrv . As with locale-gen , phpenmod is located in /usr/sbin so you may need to add this directory to your $PATH .
Step 4. Install Apache and configure driver loading (Debian)
Step 5. Restart Apache and test the sample script (Debian)
To test your installation, see Testing your installation at the end of this document.
Installing on Suse
Suse Enterprise Linux versions 12 and 15 are supported.
In the following instructions, replace with your version of Suse. If you are using Suse Enterprise Linux 15, it will be SLE_15_SP1 or SLE_15_SP2. For Suse 12, use SLE_12_SP4 (or above if applicable). Not all versions of PHP are available for all versions of Suse Linux. Refer to http://download.opensuse.org/repositories/devel:/languages:/php to see which versions of Suse have the default version of PHP available, or check http://download.opensuse.org/repositories/devel:/languages:/php:/ to see which other versions of PHP are available for which versions of Suse.
Packages for PHP 7.4 or above are not available for Suse 12 and Package for PHP 8.0 is not yet available for Suse 15. To install PHP 7.3, replace the repository URL below with the following URL: https://download.opensuse.org/repositories/devel:/languages:/php:/php73/ /devel:languages:php:php73.repo .
Step 1. Install PHP (Suse)
Step 2. Install prerequisites (Suse)
Install the ODBC driver for Suse by following the instructions on the Install the Microsoft ODBC driver for SQL Server (Linux). Make sure to also install the optional unixodbc-dev package. It’s used by the pecl command to install the PHP drivers.
Step 3. Install the PHP drivers for Microsoft SQL Server (Suse)
If you get an error message saying Connection to ‘pecl.php.net:443’ failed: Unable to find the socket transport «ssl» , edit the pecl script at /usr/bin/pecl and remove the -n switch in the last line. This switch prevents PECL from loading ini files when PHP is called, which prevents the OpenSSL extension from loading.
Step 4. Install Apache and configure driver loading (Suse)
Step 5. Restart Apache and test the sample script (Suse)
To test your installation, see Testing your installation at the end of this document.
Installing on Alpine
Alpine versions 3.11 and 3.12 are supported.
The default version of PHP is 7.3. PHP 7.4 or above may be available from testing or edge repositories for Alpine. You can instead compile PHP from source.
Step 1. Install PHP (Alpine)
PHP packages for Alpine can be found in the edge/community repository. Check Enable Community Repository on their WIKI page. Add the following line to /etc/apk/repositories , replacing with the URL of an Alpine repository mirror:
Step 2. Install prerequisites (Alpine)
Install the ODBC driver for Alpine by following the instructions on the Install the Microsoft ODBC driver for SQL Server (Linux). Make sure to also install the unixodbc-dev package ( sudo apk add unixodbc-dev ). It’s used by the pecl command to install the PHP drivers.
Step 3. Install the PHP drivers for Microsoft SQL Server (Alpine)
Step 4. Install Apache and configure driver loading (Alpine)
Step 5. Restart Apache and test the sample script (Alpine)
To test your installation, see Testing your installation at the end of this document.
Installing on macOS
MacOS versions 10.14 (Mojave), 10.15 (Catalina), and 11.0 (Big Sur) are supported.
If you do not already have it, install brew as follows:
To install PHP 7.4 or 7.3, replace php@8.0 with php@7.4 or php@7.3 respectively in the following commands.
Step 1. Install PHP (macOS)
PHP should now be in your path. Run php -v to verify that you are running the correct version of PHP. If PHP is not in your path or it is not the correct version, run the following commands:
Step 2. Install prerequisites (macOS)
Install the ODBC driver for macOS by following the instructions on the Install the Microsoft ODBC driver for SQL Server (macOS).
In addition, you may need to install the GNU make tools:
Step 3. Install the PHP drivers for Microsoft SQL Server (macOS)
Step 4. Install Apache and configure driver loading (macOS)
To find the Apache configuration file, httpd.conf , for your Apache installation, run:
The following commands append the required configuration to httpd.conf . Be sure to substitute the path returned by the preceding command in place of /usr/local/etc/httpd/httpd.conf :
Step 5. Restart Apache and test the sample script (macOS)
To test your installation, see Testing your installation at the end of this document.
Testing Your Installation
To test this sample script, create a file called testsql.php in your system’s document root. This path is /var/www/html/ on Ubuntu, Debian, and Red Hat, /srv/www/htdocs on SUSE, /var/www/localhost/htdocs on Alpine, or /usr/local/var/www on macOS. Copy the following script to it, replacing the server, database, username, and password as appropriate.
SQLSRV example
PDO_SQLSRV example
Point your browser to https://localhost/testsql.php ( https://localhost:8080/testsql.php on macOS). You should now be able to connect to your SQL Server/Azure SQL database. If you don’t see a success message showing SQL version information, you can do some basic troubleshooting by running the script from the command line:
If running from the command line is successful but nothing shows in your browser, check the Apache log files. For more help, see Support resources for places to go.
Источник