microsoft/msphpsql
PHP
Captured source
source ↗microsoft/msphpsql
Description: Microsoft Drivers for PHP for SQL Server
Language: PHP
License: MIT
Stars: 1877
Forks: 383
Open issues: 17
Created: 2014-04-22T19:54:12Z
Pushed: 2026-06-15T05:23:28Z
Default branch: dev
Fork: no
Archived: no
README:
Microsoft Drivers for PHP for Microsoft SQL Server
Welcome to the Microsoft Drivers for PHP for Microsoft SQL Server
The [Microsoft Drivers for PHP for Microsoft SQL Server][phpdoc] are PHP extensions that allow for the reading and writing of SQL Server data from within PHP scripts. The SQLSRV extension provides a procedural interface while the PDO_SQLSRV extension implements PHP Data Objects (PDO) for accessing data in all editions of SQL Server 2012 and later (including Azure SQL DB). These drivers rely on the [Microsoft ODBC Driver for SQL Server][odbcdoc] to handle the low-level communication with SQL Server.
This release contains the SQLSRV and PDO_SQLSRV drivers for PHP 8.3+ with improvements on both drivers and some limitations. Upcoming [releases][releases] will contain additional functionalities, bug fixes, and more.
Take our survey
Thank you for taking the time to participate in the sentiment survey. You can continue to help us improve by letting us know how we are doing and how you use [PHP][phpweb]:
**Click here to start the PHP survey**
Status of Most Recent Builds
| Azure Pipelines (Linux) | AppVeyor (Windows) | Coverage (Windows) | |--------------------------|--------------------------|---------------------------------------| | [![az-image][]][az-site] | [![av-image][]][av-site] | [![Coverage Codecov][]][codecov-site] |
[av-image]: https://ci.appveyor.com/api/projects/status/vo4rfei6lxlamrnc?svg=true [av-site]: https://ci.appveyor.com/project/msphpsql/msphpsql/branch/dev [az-site]: https://sqlclientdrivers.visualstudio.com/public/_build/latest?definitionId=1230&branchName=refs%2Fpull%2F1492%2Fmerge [az-image]: https://sqlclientdrivers.visualstudio.com/public/_apis/build/status%2FPHP%2Fmicrosoft.msphpsql?branchName=refs%2Fpull%2F1492%2Fmerge [Coverage Codecov]: https://codecov.io/gh/microsoft/msphpsql/branch/dev/graph/badge.svg [codecov-site]: https://codecov.io/gh/microsoft/msphpsql
Get Started
Please follow the Getting started page.
Announcements
Please follow [SQL Server Drivers][sqldrivers] for announcements.
Prerequisites
For full details on the system requirements for the drivers, see the system requirements on Microsoft Docs.
On the client machine:
- 8.3.x, 8.4.x, 8.5.x
- [Microsoft ODBC Driver 18 or 17][odbcdoc]
- If using a Web server such as Internet Information Services (IIS) or Apache, it must be configured to run PHP
On the server side, Microsoft SQL Server 2012 and above on Windows are supported, as are Microsoft SQL Server 2016 and above on Linux.
Building and Installing the Drivers on Windows
The drivers are distributed as pre-compiled extensions for PHP found on the [releases page][releases]. They are available in thread-safe and non-thread-safe versions, and in 32-bit (Windows only) and 64-bit versions. The source code for the drivers is also available, and you can compile them as thread safe or non-thread-safe versions. The thread safety configuration of your web server will determine which version you need.
If you choose to build the drivers, you must be able to build PHP 8.* without including these extensions. For help building PHP on Windows, see the [official PHP website][phpbuild]. For details on compiling the drivers, see the documentation -- an example buildscript is provided, but you can also compile the drivers manually.
To load the drivers, make sure that the driver is in your PHP extension directory and enable it in your PHP installation's php.ini file by adding extension=php_sqlsrv.dll and/or extension=php_pdo_sqlsrv.dll to the ini file. If necessary, specify the extension directory using extension_dir, for example: extension_dir = "C:\PHP\ext". Note that the precompiled binaries have different names -- substitute accordingly in php.ini. For more details on loading the drivers, see Loading the PHP SQL Driver on Microsoft Docs.
Finally, if running PHP in a Web server, restart the Web server.
Install (UNIX)
For full instructions on installing the drivers on all supported Unix platforms, see [the installation instructions on Microsoft Docs][unixinstructions].
Sample Code
For PHP code samples, please see the sample folder or the code samples on Microsoft Docs. For information on how to use the driver, see [Microsoft Drivers for PHP for Microsoft SQL Server][phpdoc].
Limitations and Known Issues
Please refer to [Releases][releases] for the latest limitations and known issues.
Version number
The version numbers of the PHP drivers follow semantic versioning:
Given a version number MAJOR.MINOR.PATCH,
- MAJOR version is incremented when an incompatible API change is made,
- MINOR version is incremented when functionality is added in a backwards-compatible manner, and
- PATCH version is incremented when backwards-compatible bug fixes are made.
The version number may have trailing pre-release version identifiers to indicate the stability and/or build metadata.
- Pre-release version is denoted by a hyphen followed by
betaorRCfollowed by a number. Production quality releases do not contain the pre-release version.betahas lower precedence thanRC. Note that the PECL package version numbers do not have the hyphen before the pre-release version, owing to restrictions in PECL. An example of a PECL package version is5.9.0beta2. - Build metadata may be denoted by a plus sign followed by a number of digits, such as
5.9.0-beta2+13930. Build metadata does not affect the precedence order.
Future Plans
- Expand SQL Server feature support (example: Azure Active Directory, Always Encrypted, etc.)
- Add more verification/fundamental tests...
Excerpt shown — open the source for the full document.
Notability
notability 1.0/10Routine database driver, not AI lab related.