[DOC-CVS] [doc-en] master: Modernize PDO installation documentation (#5277)
[email protected] (Louis-Arnaud via GitHub)
| Newsgroups | php.doc.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Louis-Arnaud (lacatoire)
Committer: GitHub (web-flow)
Pusher: lacatoire
Date: 2026-08-28T14:26:09+02:00
Commit: https://github.com/php/doc-en/commit/6e58d11156926ea75109693d63306092320b63fe
Raw diff: https://github.com/php/doc-en/commit/6e58d11156926ea75109693d63306092320b63fe.diff
Modernize PDO installation documentation (#5277)
Fixes #3377
Changed paths:
M reference/pdo/configure.xml
Diff:
diff --git a/reference/pdo/configure.xml b/reference/pdo/configure.xml
index e6510fc046c0..2ae67735cd76 100644
--- a/reference/pdo/configure.xml
+++ b/reference/pdo/configure.xml
@@ -47,11 +47,11 @@ extension=pdo
<step>
<para>
PDO is enabled by default.
- Choose the other database-specific DLL files and either use
- <function>dl</function> to load them at runtime, or enable them in
- &php.ini;. For example, this loads the
+ Enable the database-specific drivers in &php.ini; as needed.
+ For example, this loads the
<link linkend="ref.pdo-sqlite">PDO_SQLITE</link> driver but
- leaves the <link linkend="ref.pdo-odbc">PDO_ODBC</link> driver commented out:
+ leaves the <link linkend="ref.pdo-odbc">PDO_ODBC</link> driver
+ commented out:
<screen>
<![CDATA[
;extension=pdo_odbc
@@ -59,10 +59,10 @@ extension=pdo_sqlite
]]>
</screen>
</para>
- <para>
- These DLLs should exist in the system's
+ <simpara>
+ The corresponding extension files should exist in the
<link linkend="ini.extension-dir">extension_dir</link>.
- </para>
+ </simpara>
</step>
</procedure>
<note>