mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Update
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@147247 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
b4d08dab75
commit
fd70bee799
3 changed files with 53 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.8 $ -->
|
||||
<!-- $Revision: 1.9 $ -->
|
||||
<section id="dba.installation">
|
||||
&reftitle.install;
|
||||
<para>
|
||||
|
@ -24,6 +24,13 @@
|
|||
<entry>
|
||||
To enable support for dbm add
|
||||
<option role="configure">--with-dbm[=DIR]</option>.
|
||||
<note>
|
||||
<para>
|
||||
dbm normally is a wrapper which often results in failures.
|
||||
This means you should only use dbm if you are sure it works
|
||||
and if you really need this format.
|
||||
</para>
|
||||
</note>
|
||||
</entry>
|
||||
</row>
|
||||
|
||||
|
@ -32,6 +39,13 @@
|
|||
<entry>
|
||||
To enable support for ndbm add
|
||||
<option role="configure">--with-ndbm[=DIR]</option>.
|
||||
<note>
|
||||
<para>
|
||||
ndbm normally is a wrapper which often results in failures.
|
||||
This means you should only use ndbm if you are sure it works
|
||||
and if you really need this format.
|
||||
</para>
|
||||
</note>
|
||||
</entry>
|
||||
</row>
|
||||
|
||||
|
@ -135,6 +149,26 @@
|
|||
</note>
|
||||
</entry>
|
||||
</row>
|
||||
|
||||
<row>
|
||||
<entry><literal>qdbm</literal></entry>
|
||||
<entry>
|
||||
To enable support for qdbm add
|
||||
<option role="configure">--with-qdbm[=DIR]</option>.
|
||||
<note>
|
||||
<para>
|
||||
qdbm conflicts with dbm and gdbm.
|
||||
</para>
|
||||
</note>
|
||||
<note>
|
||||
<para>
|
||||
This was added in PHP 5.0.0. The qdbm library can be loaded from
|
||||
<ulink url="http://qdbm.sourceforge.net">http://qdbm.sourceforge.net</ulink>.
|
||||
</para>
|
||||
</note>
|
||||
</entry>
|
||||
</row>
|
||||
|
||||
</tbody>
|
||||
</tgroup>
|
||||
</table>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.9 $ -->
|
||||
<!-- $Revision: 1.10 $ -->
|
||||
<!-- splitted from ./en/functions/dba.xml, last change in rev 1.2 -->
|
||||
<refentry id="function.dba-open">
|
||||
<refnamediv>
|
||||
|
@ -154,6 +154,14 @@
|
|||
GDBM. See <link linkend="ref.sem">System V semaphore support</link>.
|
||||
</para>
|
||||
</note>
|
||||
<note>
|
||||
<para>
|
||||
Up to PHP 4.3.5 open mode 'c' is broken for several internal handlers and
|
||||
truncates the database instead of appending data to an existant database.
|
||||
Also dbm and ndbm fail on mode 'c' in typical configurations (this cannot
|
||||
be fixed).
|
||||
</para>
|
||||
</note>
|
||||
<para>
|
||||
See also:
|
||||
<function>dba_popen</function>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.17 $ -->
|
||||
<!-- $Revision: 1.18 $ -->
|
||||
<reference id="ref.dba">
|
||||
<title>Database (dbm-style) abstraction layer functions</title>
|
||||
<titleabbrev>dba</titleabbrev>
|
||||
|
@ -136,6 +136,14 @@
|
|||
</entry>
|
||||
</row>
|
||||
|
||||
<row>
|
||||
<entry><literal>qdbm</literal></entry>
|
||||
<entry>
|
||||
This is available since PHP 5.0.0. The qdbm library can be loaded from
|
||||
<ulink url="http://qdbm.sourceforge.net">http://qdbm.sourceforge.net</ulink>.
|
||||
</entry>
|
||||
</row>
|
||||
|
||||
</tbody>
|
||||
</tgroup>
|
||||
</table>
|
||||
|
|
Loading…
Reference in a new issue