File tree Expand file tree Collapse file tree 4 files changed +84
-11
lines changed Expand file tree Collapse file tree 4 files changed +84
-11
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<!-- $Revision$ -->
3
- <!-- EN-Revision: 1634a886415d0ab4df195fe49d18a1c150b70758 Maintainer: takagi Status: ready -->
3
+ <!-- EN-Revision: 1a53c22773e4e08ab5b67ba3d4d91cc011047da5 Maintainer: takagi Status: ready -->
4
4
<!-- CREDITS: hirokawa -->
5
-
6
5
<book xml : id =" book.dba" xmlns =" http://docbook.org/ns/docbook" xmlns : xlink =" http://www.w3.org/1999/xlink" >
7
6
<?phpdoc extension-membership =" bundled" ?>
8
7
<title >データベース (dbm 形式) 抽象化レイヤ</title >
9
8
<titleabbrev >DBA</titleabbrev >
10
-
9
+
11
10
<!-- {{{ preface -->
12
11
<preface xml : id =" intro.dba" >
13
12
&reftitle.intro;
22
21
</para >
23
22
</preface >
24
23
<!-- }}} -->
25
-
24
+
26
25
&reference.dba.setup;
27
26
&reference.dba.constants;
28
27
&reference.dba.examples;
28
+
29
+ <!-- Dba\Connection class -->
30
+ &reference.dba.dba.connection;
31
+ <!-- dba_*() functions -->
29
32
&reference.dba.reference;
30
33
31
34
</book >
32
-
33
35
<!-- Keep this comment at the end of the file
34
36
Local variables:
35
37
mode: sgml
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <!-- $Revision$ -->
3
+ <!-- EN-Revision: 44428b04b7b046593e9ab33874eddd1fea7dfab1 Maintainer: Ippey Status: ready -->
4
+ <!-- CREDITS: ippey -->
5
+
6
+ <reference xml : id =" class.dba-connection" role =" class" xmlns =" http://docbook.org/ns/docbook" >
7
+ <title >Dba\Connection クラス</title >
8
+ <titleabbrev >Dba\Connection</titleabbrev >
9
+
10
+ <partintro >
11
+
12
+ <!-- {{{ Dba\Connection intro -->
13
+ <section xml : id =" dba-connection.intro" >
14
+ &reftitle.intro;
15
+ <para >
16
+ PHP 8.4.0 以降、 <literal >dba</literal > リソースを置き換える完全不透明クラスです。
17
+ </para >
18
+ </section >
19
+ <!-- }}} -->
20
+
21
+ <section xml : id =" dba-connection.synopsis" >
22
+ &reftitle.classsynopsis;
23
+
24
+ <!-- {{{ Synopsis -->
25
+ <classsynopsis class =" class" >
26
+ <ooclass >
27
+ <modifier >final</modifier >
28
+ <classname >Dba\Connection</classname >
29
+ </ooclass >
30
+ </classsynopsis >
31
+ <!-- }}} -->
32
+
33
+ </section >
34
+
35
+ </partintro >
36
+
37
+ </reference >
38
+ <!-- Keep this comment at the end of the file
39
+ Local variables:
40
+ mode: sgml
41
+ sgml-omittag:t
42
+ sgml-shorttag:t
43
+ sgml-minimize-attributes:nil
44
+ sgml-always-quote-attributes:t
45
+ sgml-indent-step:1
46
+ sgml-indent-data:t
47
+ indent-tabs-mode:nil
48
+ sgml-parent-document:nil
49
+ sgml-default-dtd-file:"~/.phpdoc/manual.ced"
50
+ sgml-exposed-tags:nil
51
+ sgml-local-catalogs:nil
52
+ sgml-local-ecat-files:nil
53
+ End:
54
+ vim600: syn=xml fen fdm=syntax fdl=2 si
55
+ vim: et tw=78 syn=sgml
56
+ vi: ts=1 sw=1
57
+ -->
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<!-- $Revision$ -->
3
- <!-- EN-Revision: e4faf426c06f29bef4b1fbd7043d56f4756a0a50 Maintainer: mumumu Status: ready -->
3
+ <!-- EN-Revision: 44428b04b7b046593e9ab33874eddd1fea7dfab1 Maintainer: mumumu Status: ready -->
4
4
<refentry xml : id =" function.dba-open" xmlns =" http://docbook.org/ns/docbook" >
5
5
<refnamediv >
6
6
<refname >dba_open</refname >
9
9
<refsect1 role =" description" >
10
10
&reftitle.description;
11
11
<methodsynopsis >
12
- <type class =" union" ><type >resource </type ><type >false</type ></type ><methodname >dba_open</methodname >
12
+ <type class =" union" ><type >Dba\Connection </type ><type >false</type ></type ><methodname >dba_open</methodname >
13
13
<methodparam ><type >string</type ><parameter >path</parameter ></methodparam >
14
14
<methodparam ><type >string</type ><parameter >mode</parameter ></methodparam >
15
15
<methodparam choice =" opt" ><type class =" union" ><type >string</type ><type >null</type ></type ><parameter >handler</parameter ><initializer >&null; </initializer ></methodparam >
217
217
<refsect1 role =" returnvalues" >
218
218
&reftitle.returnvalues;
219
219
<para >
220
- 成功した場合に正のハンドルを返します 。
220
+ 成功した場合に < classname >Dba\Connection</ classname > インスタンスを返します 。
221
221
&return.falseforfailure; 。
222
222
</para >
223
223
</refsect1 >
243
243
</row >
244
244
</thead >
245
245
<tbody >
246
+ <row >
247
+ <entry >8.4.0</entry >
248
+ <entry >
249
+ <classname >Dba\Connection</classname > インスタンスを返すようになりました。
250
+ 以前は &resource; を返していました。
251
+ </entry >
252
+ </row >
246
253
<row >
247
254
<entry >8.2.0</entry >
248
255
<entry >
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<!-- $Revision$ -->
3
- <!-- EN-Revision: 9264401165d31437c4afd80ec936f775ae23d367 Maintainer: mumumu Status: ready -->
3
+ <!-- EN-Revision: 44428b04b7b046593e9ab33874eddd1fea7dfab1 Maintainer: mumumu Status: ready -->
4
4
<refentry xml : id =" function.dba-popen" xmlns =" http://docbook.org/ns/docbook" >
5
5
<refnamediv >
6
6
<refname >dba_popen</refname >
9
9
<refsect1 role =" description" >
10
10
&reftitle.description;
11
11
<methodsynopsis >
12
- <type class =" union" ><type >resource </type ><type >false</type ></type ><methodname >dba_popen</methodname >
12
+ <type class =" union" ><type >Dba\Connection </type ><type >false</type ></type ><methodname >dba_popen</methodname >
13
13
<methodparam ><type >string</type ><parameter >path</parameter ></methodparam >
14
14
<methodparam ><type >string</type ><parameter >mode</parameter ></methodparam >
15
15
<methodparam choice =" opt" ><type class =" union" ><type >string</type ><type >null</type ></type ><parameter >handler</parameter ><initializer >&null; </initializer ></methodparam >
110
110
<refsect1 role =" returnvalues" >
111
111
&reftitle.returnvalues;
112
112
<para >
113
- 成功した場合に正のハンドルを返します 。
113
+ 成功した場合に < classname >Dba\Connection</ classname > インスタンスを返します 。
114
114
&return.falseforfailure; 。
115
115
</para >
116
116
</refsect1 >
136
136
</row >
137
137
</thead >
138
138
<tbody >
139
+ <row >
140
+ <entry >8.4.0</entry >
141
+ <entry >
142
+ <classname >Dba\Connection</classname > インスタンスを返すようになりました。
143
+ 以前は &resource; を返していました。
144
+ </entry >
145
+ </row >
139
146
<row >
140
147
<entry >8.2.0</entry >
141
148
<entry >
You can’t perform that action at this time.
0 commit comments