microsoft sql server drivers for php for sql server
Загрузка драйверов Майкрософт для PHP для SQL Server
Скачать драйвер PHP
Эта статья содержит инструкции по загрузке Драйверы Microsoft SQL Server для PHP в пространство процессов PHP.
Предварительно созданные драйверы для платформы можно загрузить на странице драйверов Майкрософт для PHP в SQL Server на сайте GitHub. Каждый пакет установки содержит файлы драйверов SQLSRV и PDO_SQLSRV в потоковых и отдельных вариантах. В Windows они также доступны в 32-разрядных и 64-разрядных версиях. Список файлов драйверов, содержащихся в каждом пакете, см. в статье System Requirements for the Microsoft Drivers for PHP for SQL Server (Системные требования драйверов Майкрософт для PHP для SQL Server). Файл драйвера должен соответствовать версии PHP, архитектуре и потоковости среды PHP.
В Linux и macOS драйверы можно также установить с помощью PECL, как описано в учебнике по установке.
Перемещение файла драйвера в каталог расширения
Загрузка драйвера при запуске PHP
Чтобы загружать драйвер SQLSRV при запуске PHP, сначала поместите файл драйвера в свой каталог расширений. Затем выполните следующие действия:
Чтобы включить драйвер SQLSRV, добавьте в файле php.ini следующую строку в раздел расширения и измените имя файла соответствующим образом:
В Linux, если вы скачали предварительно созданные двоичные файлы для вашего дистрибутива, запустите следующий код:
Если вы выполнили компиляцию двоичного файла SQLSRV из источника или с помощью PECL, файл получит имя sqlsrv.so:
Чтобы включить драйвер PDO_SQLSRV, расширение PHP Data Objects (PDO) должно быть доступно либо как встроенное расширение, либо как динамически загружаемое.
В Linux, если вы установили PHP с помощью диспетчера пакетов системы, PDO, скорее всего, установится как динамически загруженное расширение с именем pdo.so. Расширение PDO нужно загрузить перед расширением PDO_SQLSRV, иначе загрузка завершится ошибкой. Расширения обычно загружаются с использованием отдельных INI-файлов, и эти файлы считываются после файла php.ini. Таким образом, если файл pdo.so загружается с использованием собственного INI-файла, то после PDO понадобится отдельный файл, загружающий драйвер PDO_SQLSRV.
Как и в случае с SQLSRV, если вы выполнили компиляцию двоичного файла PDO_SQLSRV из источника или с помощью PECL, файл получит имя pdo_sqlsrv.so:
Скопируйте этот файл в каталог, содержащий другие INI-файлы.
Если вы скомпилировали PHP из источника со встроенной поддержкой PDO, то отдельный INI-файл не требуется и можно добавить в файл php.ini соответствующую указанную выше строку.
Чтобы проверить, загружен ли драйвер, запустите сценарий, который вызывает phpinfo().
Дополнительные сведения о директивах php.ini см. в статье Описание встроенных директив php.ini.
См. также:
Getting Started with the Microsoft Drivers for PHP for SQL Server (Начало работы с драйверами Майкрософт для PHP для SQL Server)
Install the SQL Server Driver for PHP
Introduction
The Microsoft Drivers for PHP for SQL Server are designed to enable reliable, scalable integration with SQL Server for PHP applications on Windows, Linux, and macOS platforms. The drivers are PHP extensions that allow reading from and writing to SQL Server databases in all editions of SQL Server (including Express editions) within PHP scripts. Two drivers are available: The SQLSRV driver provides a procedural interface for interacting with SQL Server. The PDO_SQLSRV driver implements PHP’s object-oriented PDO interface for working with databases.
The drivers’ application programming interface (API) includes support for Active Directory authentication, transactions, parameter binding, streaming, metadata access, Unicode data handling, and error handling. The drivers rely on the Microsoft ODBC Driver for SQL Server to communicate with SQL Server. The drivers also support Microsoft SQL Azure Database, enabling developers to build PHP applications with relational capabilities using SQL Azure Database.
The Microsoft Drivers for PHP for SQL Server download is freely available to all SQL Server users. Releases and source code for the drivers are available from the Github project page. Full documentation for the drivers is available on Microsoft Docs; what follows is a brief overview of installation and configuration on Windows and IIS.
System Requirements
Full details on the system requirements for all supported versions of the driver can be found on the system requirements page. The following software is required:
Install the Drivers
The Microsoft Drivers for PHP for SQL Server can be installed using the Web Platform Installer. To download and install the drivers manually instead, perform the following steps:
Download and run the installation package from the appropriate link on the download page.
Enter a directory to extract the package into when prompted.
Open the directory you chose in step 3 and copy the required dll libraries to your PHP extension directory. The filenames indicate which PHP version, threadedness, and architecture each dll file is for. For example, php_sqlsrv_73_ts_x64.dll is the 64-bit SQLSRV driver for thread-safe (ts) PHP 7.3.
Download and install the Microsoft ODBC Driver for SQL Server from the appropriate link on the ODBC download page.
Edit your php.ini file to add the following lines in the Extensions section:
Substitute the names of the files you copied to your PHP extension directory as required. Full instructions for loading the drivers can be found here.
Start a command prompt as administrator and run iisreset to restart your IIS server.
Configure the Drivers
Retrieve the current configuration settings for the SQLSRV driver using the sqlsrv_get_config function, or for the PDO_SQLSRV driver using the PDO::getAttribute function.
Change the configuration settings for the SQLSRV driver using the sqlsrv_configure function, or for the PDO_SQLSRV driver using the PDO::setAttribute function.
Ensure that the drivers are loaded and verify the configuration settings by running a script that calls the phpinfo() function:
Open a text file, and copy the following code into it:
Save the file as info.php in the IIS root directory.
Scroll down the resulting page to find the sqlsrv and pdo_sqlsrv sections. Confirm that the drivers are loaded and the configuration settings are set to the default values (see Figure 1).
Figure 1: SQL Server configuration settings page
Create a Connection to the Database
When using the SQLSRV driver, the sqlsrv_connect() function is used to establish a connection to the server. When using the PDO_SQLSRV driver, the PDO::__construct function is used to establish a connection to the server.
Connections can be made using Windows authentication, SQL Server authentication, or Azure Active Directory authentication. The default is to use Windows authentication. In most scenarios, this means that the Web server’s process identity or thread identity (if the Web server is using impersonation) is used to connect to the server, not a user’s identity.
System requirements for the Microsoft Drivers for PHP for SQL Server
Download PHP Driver
This article lists the components that must be installed on your system to access data in a SQL Server or Azure SQL Database using the Microsoft Drivers for PHP for SQL Server.
Versions 4.0 and later of the Microsoft PHP Drivers for SQL Server are officially supported. For full details on support lifecycles and requirements of the PHP drivers, see the support matrix.
For information about how to download and install the latest stable PHP binaries, see the PHP web site. The Microsoft Drivers for PHP for SQL Server require the right versions of PHP as detailed in PHP Version support.
The correct version of the driver file must be enabled with its corresponding PHP version. See Driver Versions for information about the different driver files. To download the drivers, see Download the Microsoft Drivers for PHP for SQL Server. For information on configuring the driver for the PHP, see Loading the Microsoft Drivers for PHP for SQL Server.
A Web server is required. Your Web server must be configured to run PHP. For information about hosting PHP applications with IIS, see the tutorial on PHP’s web site.
The Microsoft Drivers for PHP for SQL Server has been tested using IIS 10 with FastCGI.
Microsoft provides support only for IIS.
ODBC driver
The correct version of the Microsoft ODBC Driver for SQL Server is required on the computer on which PHP is running. You can download all supported versions of the driver for supported platforms on this page.
If you’re downloading the Windows version of the driver on a 64-bit version of Windows, the ODBC 64-bit installer installs both 32-bit and 64-bit ODBC drivers. If you use a 32-bit version of Windows, use the ODBC x86 installer. On non-Windows platforms, only 64-bit versions of the driver are available.
PHP driver version → ↓ ODBC driver version | 5.9 | 5.8 | 5.6 | 5.3 | 5.2 | 4.3 | 4.0 | 3.2 |
---|---|---|---|---|---|---|---|---|
ODBC Driver 17+ | Yes | Yes | Yes | Yes | Yes | |||
ODBC Driver 13.1 | Yes | Yes | Yes | Yes | Yes | Yes | Yes | |
ODBC Driver 13 | Yes | |||||||
ODBC Driver 11 | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
If you’re using the SQLSRV driver, sqlsrv_client_info returns information about which version of SQL Server Microsoft ODBC Driver for SQL Server is being used by the Microsoft Drivers for PHP for SQL Server. If you’re using the PDO_SQLSRV driver, you can use PDO::getAttribute to discover the version.
SQL Server
See the supported database versions for details on which SQL Server versions are supported.
Operating systems
See the supported operating systems for details on which operating systems are supported.
Driver versions
This section lists the driver files that are included with each version of the Microsoft Drivers for PHP for SQL Server. Each installation package contains SQLSRV and PDO_SQLSRV driver files in threaded and non-threaded variants. On Windows, they’re also available in 32-bit and 64-bit variants. To configure the driver for use with the PHP runtime, follow the installation instructions in Loading the Microsoft Drivers for PHP for SQL Server.
On supported versions of Linux and macOS, the appropriate drivers can be installed using PHP’s PECL package system, following the Linux and macOS installation instructions. Instead, you can download prebuilt binaries for your platform from the Microsoft Drivers for PHP for SQL Server GitHub project page. The tables below list the files found in the prebuilt binary packages.
Microsoft Drivers 5.9 for PHP for SQL Server:
On Windows, the following driver files are provided:
On Linux, the following driver files are provided:
Driver file | PHP version | Thread safe? |
---|---|---|
php_sqlsrv_73_nts.so php_pdo_sqlsrv_73_nts.so | 7.3 | no |
php_sqlsrv_73_ts.so php_pdo_sqlsrv_73_ts.so | 7.3 | yes |
php_sqlsrv_74_nts.so php_pdo_sqlsrv_74_nts.so | 7.4 | no |
php_sqlsrv_74_ts.so php_pdo_sqlsrv_74_ts.so | 7.4 | yes |
php_sqlsrv_80_nts.so php_pdo_sqlsrv_80_nts.so | 8.0 | no |
php_sqlsrv_80_ts.so php_pdo_sqlsrv_80_ts.so | 8.0 | yes |
Microsoft Drivers 5.8 for PHP for SQL Server:
On Windows, the following versions of the driver are included:
On Linux, the following versions of the driver are included:
Driver file | PHP version | Thread safe? |
---|---|---|
php_sqlsrv_72_nts.so php_pdo_sqlsrv_72_nts.so | 7.2 | no |
php_sqlsrv_72_ts.so php_pdo_sqlsrv_72_ts.so | 7.2 | yes |
php_sqlsrv_73_nts.so php_pdo_sqlsrv_73_nts.so | 7.3 | no |
php_sqlsrv_73_ts.so php_pdo_sqlsrv_73_ts.so | 7.3 | yes |
php_sqlsrv_74_nts.so php_pdo_sqlsrv_74_nts.so | 7.4 | no |
php_sqlsrv_74_ts.so php_pdo_sqlsrv_74_ts.so | 7.4 | yes |
Microsoft Drivers 5.6 for PHP for SQL Server:
On Windows, the following versions of the driver are included:
On Linux, the following versions of the driver are included:
Driver file | PHP version | Thread safe? |
---|---|---|
php_sqlsrv_71_nts.so php_pdo_sqlsrv_71_nts.so | 7.1 | no |
php_sqlsrv_71_ts.so php_pdo_sqlsrv_71_ts.so | 7.1 | yes |
php_sqlsrv_72_nts.so php_pdo_sqlsrv_72_nts.so | 7.2 | no |
php_sqlsrv_72_ts.so php_pdo_sqlsrv_72_ts.so | 7.2 | yes |
php_sqlsrv_73_nts.so php_pdo_sqlsrv_73_nts.so | 7.3 | no |
php_sqlsrv_73_ts.so php_pdo_sqlsrv_73_ts.so | 7.3 | yes |
Microsoft Drivers 5.3 for PHP for SQL Server:
On Windows, the following versions of the driver are included:
On Linux, the following versions of the driver are included:
Driver file | PHP version | Thread safe? |
---|---|---|
php_sqlsrv_7_nts.so php_pdo_sqlsrv_7_nts.so | 7.0 | no |
php_sqlsrv_7_ts.so php_pdo_sqlsrv_7_ts.so | 7.0 | yes |
php_sqlsrv_71_nts.so php_pdo_sqlsrv_71_nts.so | 7.1 | no |
php_sqlsrv_71_ts.so php_pdo_sqlsrv_71_ts.so | 7.1 | yes |
php_sqlsrv_72_nts.so php_pdo_sqlsrv_72_nts.so | 7.2 | no |
php_sqlsrv_72_ts.so php_pdo_sqlsrv_72_ts.so | 7.2 | yes |
Microsoft Drivers 5.2 for PHP for SQL Server:
On Windows, the following versions of the driver are included:
On Linux, the following versions of the driver are included:
Driver file | PHP version | Thread safe? |
---|---|---|
php_sqlsrv_7_nts.so php_pdo_sqlsrv_7_nts.so | 7.0 | no |
php_sqlsrv_7_ts.so php_pdo_sqlsrv_7_ts.so | 7.0 | yes |
php_sqlsrv_71_nts.so php_pdo_sqlsrv_71_nts.so | 7.1 | no |
php_sqlsrv_71_ts.so php_pdo_sqlsrv_71_ts.so | 7.1 | yes |
php_sqlsrv_72_nts.so php_pdo_sqlsrv_72_nts.so | 7.2 | no |
php_sqlsrv_72_ts.so php_pdo_sqlsrv_72_ts.so | 7.2 | yes |
Microsoft Drivers 4.3 for PHP for SQL Server:
On Windows, the following versions of the driver are included:
On Linux, the following versions of the driver are included:
Driver file | PHP version | Thread safe? |
---|---|---|
php_sqlsrv_7_nts.so php_pdo_sqlsrv_7_nts.so | 7.0 | no |
php_sqlsrv_7_ts.so php_pdo_sqlsrv_7_ts.so | 7.0 | yes |
php_sqlsrv_71_nts.so php_pdo_sqlsrv_71_nts.so | 7.1 | no |
php_sqlsrv_71_ts.so php_pdo_sqlsrv_71_ts.so | 7.1 | yes |
Microsoft Drivers 4.0 for PHP for SQL Server:
On Windows, the following versions of the driver are included:
On Linux, the following versions of the driver are included:
Driver file | PHP version | Thread safe? |
---|---|---|
php_sqlsrv_7_nts.so php_pdo_sqlsrv_7_nts.so | 7.0 | no |
php_sqlsrv_7_ts.so php_pdo_sqlsrv_7_ts.so | 7.0 | yes |
Microsoft Drivers 3.2 for PHP for SQL Server:
On Windows, the following versions of the driver are included:
Loading the Microsoft Drivers for PHP for SQL Server
Download PHP Driver
This page provides instructions for loading the Microsoft Drivers for PHP for SQL Server into the PHP process space.
You can download the prebuilt drivers for your platform from the Microsoft Drivers for PHP for SQL Server GitHub project page. Each installation package contains SQLSRV and PDO_SQLSRV driver files in threaded and non-threaded variants. On Windows, they are also available in 32-bit and 64-bit variants. See System Requirements for the Microsoft Drivers for PHP for SQL Server for a list of the driver files that are contained in each package. The driver file must match the PHP version, architecture, and threadedness of your PHP environment.
On Linux and macOS, the drivers can alternatively be installed using PECL, as found in the installation tutorial.
Moving the Driver File into Your Extension Directory
Loading the Driver at PHP Startup
To load the SQLSRV driver when PHP is started, first move a driver file into your extension directory. Then, follow these steps:
To enable the SQLSRV driver, modify php.ini by adding the following line to the extension section, changing the filename as appropriate:
On Linux, if you have downloaded the prebuilt binaries for your distribution:
If you have compiled the SQLSRV binary from source or with PECL, it will instead be named sqlsrv.so:
To enable the PDO_SQLSRV driver, the PHP Data Objects (PDO) extension must be available, either as a built-in extension, or as a dynamically loaded extension.
As with SQLSRV, if you have compiled the PDO_SQLSRV binary from source or with PECL, it will instead be named pdo_sqlsrv.so:
Restart the Web server.
To determine whether the driver has been successfully loaded, run a script that calls phpinfo().
Матрицы поддержки драйверов для PHP (Майкрософт) для SQL Server
Скачать драйвер PHP
В этой статье приведены матрица и политика жизненного цикла поддержки для драйвера Microsoft PHP Driver for SQL Server.
Матрица и политика жизненного цикла поддержки для драйвера Microsoft PHP
Политика жизненного цикла поддержки Майкрософт (MSL) предоставляет понятную и предсказуемую информацию о жизненном цикле поддержки продуктов Майкрософт. Основная фаза поддержки драйверов PHP версий 3.x, 4.x и 5.x длится пять лет с даты выпуска соответствующей версии. Основная фаза поддержки определена на веб-сайте жизненного цикла поддержки Майкрософт.
Возможность расширенной или настраиваемой поддержки драйвера PHP не предусмотрена.
Перечисленные ниже версии драйверов Microsoft PHP будут поддерживаться до указанной даты окончания поддержки.
Имя драйвера | Версия пакета драйвера | Окончание основной фазы поддержки |
---|---|---|
Драйверы Microsoft PHP версии 5.9 для SQL Server | 5.9 | 29 января 2026 г. |
Драйверы Microsoft PHP версии 5.8 для SQL Server | 5.8 | 31 января 2025 г. |
Драйверы Microsoft PHP версии 5.6 для SQL Server | 5.6 | 21 февраля 2024 г. |
Драйверы Microsoft PHP версии 5.3 для SQL Server | 5,3 | 20 июля 2023 г. |
Драйверы Microsoft PHP версии 5.2 для SQL Server | 5,2 | 9 февраля 2023 г. |
Драйверы Microsoft PHP версии 4.3 для SQL Server | 4.3 | 6 июля 2022 г. |
Драйверы Microsoft PHP версии 4.0 для SQL Server | 4,0 | 11 июля 2021 г. |
Следующие драйверы Microsoft PHP больше не поддерживаются.
Имя драйвера | Версия пакета драйвера | Окончание основной фазы поддержки |
---|---|---|
Драйверы Microsoft PHP версии 3.2 для SQL Server | 3.2 | 9 марта 2020 г. |
Драйверы Microsoft PHP версии 3.1 для SQL Server | 3.1 | 12 декабря 2019 г. |
Драйверы Microsoft PHP версии 3.0 для SQL Server | 3.0 | 6 марта 2017 г. |
Драйверы Microsoft PHP версии 2.0 для SQL Server | 2.0 | 10 августа 2015 г. |
Драйверы Microsoft PHP версии 1.0 для SQL Server | 1.0 | 28 апреля 2014 г. |
Совместимость с сертифицированной версией SQL Server
В следующей таблице перечислены версии баз данных, протестированные и признанны совместимыми с соответствующей версией драйвера. Мы стремимся поддерживать обратную совместимость с предыдущими версиями драйверов, однако по мере выхода SQL Server с ее новыми версиями тестируется и сертифицируется только последний поддерживаемый драйвер.
Версия драйвера → ↓ Версия базы данных | 5.9 | 5.8 | 5.6 | 5,3 | 5,2 | 4.3 | 4,0 | 3.2 |
---|---|---|---|---|---|---|---|---|
База данных SQL Azure | Да | Да | Да | Да | Да | Да | ||
Управляемый экземпляр SQL Azure | да | Да | Да | Да | Да | Да | ||
Azure Synapse Analytics | Да | Да | Да | Да | Да | Да | ||
SQL Server 2019 | Да | Да | ||||||
SQL Server 2017 | Да | Да | Да | Да | Да | Да | ||
SQL Server 2016 | Да | Да | Да | Да | Да | Да | Да | |
SQL Server 2014 | Да | Да | Да | Да | Да | Да | Да | Да |
SQL Server 2012 | Да | Да | Да | Да | Да | Да | Да | Да |
SQL Server 2008 R2 | Да | Да | Да | Да | Да | Да | ||
SQL Server 2008 | Да | Да |
Сведения об использовании PHP с Базой данных SQL Azure см. в этой статье.
Поддерживаемые версии PHP
В перечисленных версиях драйверов Microsoft PHP поддерживаются следующие версии PHP:
Версия драйвера → ↓ версия PHP | 5.9 | 5.8 | 5.6 | 5,3 | 5,2 | 4.3 | 4,0 | 3.2 |
---|---|---|---|---|---|---|---|---|
8.0 | 8.0.0+ | |||||||
7.4 | 7.4.0+ | 7.4.0+ | ||||||
7.3 | 7.3.0+ | 7.3.0+ | 7.3.0+ | |||||
7.2 | 7.2+ 1 | 7.2+ 1 | 7.2+ 1 | 7.2+ 1 | ||||
7.1 | 7.1.0+ | 7.1.0+ | 7.1.0+ | 7.1.0+ | ||||
7.0 | 7.0.0+ | 7.0.0+ | 7.0.0+ | 7.0.0+ | ||||
5.6 | 5.6.4+ | |||||||
5.5 | 5.5.16+ | |||||||
5.4 | 5.4.32 |
1 Версии 7.2.1 и более поздние поддерживаются в Windows, а 7.2.0 и более поздние — в Linux и macOS.
Поддерживаемые операционные системы
В перечисленных версиях драйверов Microsoft PHP поддерживаются следующие версии ОС Windows:
Версия драйвера → ↓ операционная система | 5.9 | 5.8 | 5.6 | 5,3 | 5,2 | 4.3 | 4,0 | 3.2 |
---|---|---|---|---|---|---|---|---|
Windows Server 2019 | Да | Да | Да | |||||
Windows Server 2016 | Да | Да | Да | Да | Да | Да | ||
Windows Server 2012 R2 | Да | Да | Да | Да | Да | Да | Да | Да |
Windows Server 2012 | Да | Да | Да | Да | Да | Да | Да | Да |
Windows Server 2008 R2 с пакетом обновления 1 (SP1) | Да | Да | ||||||
Windows Server 2008 R2 | ||||||||
Windows Server 2008 с пакетом обновления 2 (SP2) | Да | Да | ||||||
Windows 10 | Да | Да | Да | Да | Да | Да | Да | |
Windows 8.1 | Да | Да | Да | Да | Да | Да | Да | Да |
Windows 8 | Да | Да | Да | |||||
Windows 7 с пакетом обновления 1 (SP1) | Да | Да | ||||||
Windows Vista SP2 | Да | Да |
В перечисленных версиях драйверов Microsoft PHP поддерживаются следующие версии ОС Linux и macOS (только 64-разрядные версии).
Версия драйвера → ↓ операционная система | 5.9 | 5.8 | 5.6 | 5,3 | 5,2 | 4.3 | 4,0 | 3.2 |
---|---|---|---|---|---|---|---|---|
Ubuntu 20.10 (64-разрядная версия) | Да | |||||||
Ubuntu 20.04 (64-разрядная версия) | Да | Да | ||||||
Ubuntu 19.10 (64-разрядная версия) | Да | |||||||
Ubuntu 18.10 (64-разрядная версия) | Да | |||||||
Ubuntu 18.04 (64-разрядная версия) | Да | Да | Да | Да | ||||
Ubuntu 17.10 (64-разрядная версия) | Да | Да | ||||||
Ubuntu 16.04 (64-разрядная версия) | Да | Да | Да | Да | Да | Да | Да | |
Ubuntu 15.10 (64-разрядная версия) | Да | |||||||
Ubuntu 15.04 (64-разрядная версия) | Да | |||||||
Debian 10 (64-разрядная версия) | Да | Да | ||||||
Debian 9 (64-разрядная версия) | Да | Да | Да | Да | Да | |||
Debian 8 (64-разрядная версия) | Да | Да | Да | Да | Да | |||
Red Hat Enterprise Linux 8 (64-разрядная версия) | Да | Да | ||||||
Red Hat Enterprise Linux 7 (64-разрядная версия) | Да | Да | Да | Да | Да | Да | Да | |
Suse Enterprise Linux 15 (64-разрядная версия) | Да | Да | Да | |||||
Suse Enterprise Linux 12 (64-разрядная версия) | Да | Да | Да | Да | Да | |||
Alpine Linux 3.12 (64-разрядная версия) | Да | |||||||
Alpine Linux 3.11 (64-разрядная версия) | Да | Да 1 | ||||||
macOS Big Sur (64-разрядная версия) | Да | |||||||
macOS Catalina (64-разрядная версия) | Да | Да | ||||||
macOS Mojave (64-разрядная версия) | Да | Да | Да | |||||
macOS High Sierra (64-разрядная версия) | Да | Да | Да | |||||
macOS Sierra (64-разрядная версия) | Да | Да | Да | Да | ||||
macOS El Capitan (64-разрядная версия) | Да | Да | Да |
1 Поддержка Alpine Linux является экспериментальной для версии 5.8.0. Версия 5.8.1 вводит поддержку в рабочей среде.