[PECL-CVS] [pecl-database-pdo_oci] main: Minor formatting to pdo_oci installation instructions in README
[email protected] (Sharad Chandran R via GitHub)
| Newsgroups | php.pecl.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Sharad Chandran R (sharadraju) Committer: GitHub (web-flow) Pusher: sharadraju Date: 2025-12-29T19:55:33+05:30 Commit: https://github.com/php/pecl-database-pdo_oci/commit/45baddb0958e9df46c723d634e5121668ae31d58 Raw diff: https://github.com/php/pecl-database-pdo_oci/commit/45baddb0958e9df46c723d634e5121668ae31d58.diff Minor formatting to pdo_oci installation instructions in README Updated installation instructions for pdo_oci extension to include both Linux and Windows methods. Changed paths: M README.md Diff: diff --git a/README.md b/README.md index a7e52d4..e5012cf 100644 --- a/README.md +++ b/README.md @@ -10,12 +10,15 @@ Use `pecl install pdo_oci` to install for PHP 8.3. For older PHP versions, use php_pdo_oci.dll from the Windows PHP release bundle, or build from the PHP source code by running: +``` +phpize - phpize - ./configure -with-pdo_oci=shared,instantclient,/path/to/instant/client/lib - make install +./configure --with-pdo_oci=shared,instantclient,/path/to/instant/client/lib +make install -To complete installation, add "extension=pdo_oci.so" to your php.ini file. +``` + +To complete installation, add "extension=pdo_oci.so" or "extension=php_pdo_oci.dll" to your php.ini file. PHP is available from https://www.php.net/releases/