Corrections to comply with PHP doc standards.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@276420 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Anthony Bedford 2009-02-25 09:55:02 +00:00
parent 3970d30763
commit 41f9e9962d

View file

@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 1.1 $ -->
<!-- $Revision: 1.2 $ -->
<chapter xml:id="mysqli.persistconns" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>The mysqli Extension and Persistent Connections</title>
<para>
Persistent connection support is now present in PHP 5.3 for the
Persistent connection support was introduced in PHP 5.3 for the
<literal>mysqli</literal> extension. Support was already present in PDO
MYSQL and ext/mysql. The idea behind persistent connections is that a
connection between a client process and a database can be reused by a
@ -98,8 +98,8 @@
</para>
<para>
If you want to switch off the automatic cleanup code, you can compile
PHP with <literal>MYSQLI_NO_CHANGE_USER_ON_PCONNECT</literal> defined.
It is possible to switch off the automatic cleanup code, by compiling
PHP with <constant>MYSQLI_NO_CHANGE_USER_ON_PCONNECT</constant> defined.
</para>
</chapter>