modified ReadMe (#348)

This commit is contained in:
Jenny Tam 2017-03-29 12:22:02 -07:00 committed by ulvii
parent c2f57d11ab
commit 9e73b35c7d

View file

@ -161,7 +161,7 @@ Following instructions shows how to install PHP 7.x, Microsoft ODBC driver, apac
*Note: Restart the terminal if PHP(`php -v`) is not updated. *Note: Restart the terminal if PHP(`php -v`) is not updated.
### Step 2: Install pre-requisites ### Step 2: Install Prerequisites
**Ubuntu 15.10** **Ubuntu 15.10**
@ -213,7 +213,7 @@ Following instructions shows how to install PHP 7.x, Microsoft ODBC driver, apac
brew install llvm --with-clang --with-clang-extra-tools brew install llvm --with-clang --with-clang-extra-tools
brew install autoconf brew install autoconf
*Note: You need to make sure you install PHP 7 before you proceed to step 3. The Microsoft PHP Drivers for SQL Server will only work for PHP 7+. *Note: You need to make sure you install PHP 7+ before you proceed to step 3. The Microsoft PHP Drivers for SQL Server will only work for PHP 7+.
### Step 3: Install the Microsoft PHP Drivers for SQL Server ### Step 3: Install the Microsoft PHP Drivers for SQL Server
@ -221,8 +221,8 @@ Following instructions shows how to install PHP 7.x, Microsoft ODBC driver, apac
sudo pecl install sqlsrv sudo pecl install sqlsrv
sudo pecl install pdo_sqlsrv sudo pecl install pdo_sqlsrv
*Note: it installs the stable version, for specific version you should set the version. For example, do `sudo pecl search sqlsrv` to search for the latest releases and `sudo pecl install sqlsrv-[version]` to install a specific version. *Note: it installs the stable version, for specific version you should specify the version. For example, do `sudo pecl search sqlsrv` to search for the latest releases and `sudo pecl install sqlsrv-[version]` to install a specific version.
Drivers are Mac-compatible starting from 4.1.7preview release. Drivers are Mac-compatible starting from `4.1.7preview` release.
### Step 4: Install and Configure Apache ### Step 4: Install and Configure Apache
@ -335,7 +335,7 @@ You should be able to connect to your SQL Server/Azure SQL Database.
The drivers are distributed as shared binary extensions for PHP. They are available in thread safe (*_ts.so) and-non thread safe (*_nts.so) versions. The source code for the drivers is also available, and you can choose whether to compile them as thread safe or non-thread safe versions. The thread safety configuration of your web server will determine which version you need. The drivers are distributed as shared binary extensions for PHP. They are available in thread safe (*_ts.so) and-non thread safe (*_nts.so) versions. The source code for the drivers is also available, and you can choose whether to compile them as thread safe or non-thread safe versions. The thread safety configuration of your web server will determine which version you need.
## Sample Code ## Sample Code
For samples, please see the sample folder. For setup instructions, see [here] [phpazure] For samples, please see the sample folder. For setup instructions, see [here](https://docs.microsoft.com/en-us/azure/sql-database/sql-database-develop-php-simple).
## Limitations ## Limitations