File tree Expand file tree Collapse file tree 6 files changed +22
-19
lines changed Expand file tree Collapse file tree 6 files changed +22
-19
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: d4482ec29dde1aee6cb22a8b0909e30b6353de72 Maintainer: hirokawa Status: ready -->
3
+ <!-- EN-Revision: 1bda9b3cbf999b652b283a71b3ee01d1a6089dcf Maintainer: hirokawa Status: ready -->
4
4
<!-- Credits: haruki,shimooka,takagi -->
5
5
6
6
<!ENTITY changelog.randomseed '<row xmlns =" http://docbook.org/ns/docbook" ><entry >4.2.0</entry ><entry >
@@ -105,10 +105,9 @@ PHP コミュニティは、ユーザがこのディレクティブの設定に
105
105
詳細な情報については、マニュアルの &link.superglobals;
106
106
のセクションを参照してください。</para ></note >'>
107
107
108
- <!ENTITY note.uses-ob '<note xmlns =" http://docbook.org/ns/docbook" ><para >この関数は、
109
- このパラメータに対して内部的に出力バッファリングを使用しています。
110
- そのため、<function >ob_start</function >
111
- コールバック関数の中で使用することはできません。</para ></note >'>
108
+ <!ENTITY note.uses-ob '<note xmlns =" http://docbook.org/ns/docbook" ><para >
109
+ <parameter >return</parameter > パラメータを使う場合、この関数は内部的に出力バッファリングを使います。
110
+ そのため、<function >ob_start</function > コールバック関数の中では使えません。</para ></note >'>
112
111
113
112
<!ENTITY note.filesystem-time-res '<note xmlns =" http://docbook.org/ns/docbook" ><para >時刻の精度は、
114
113
ファイルシステムによって異なることがあります。</para ></note >'>
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: 9491eaf09cf62617ebf3921a42e51e5291010b6d Maintainer: hirokawa Status: ready -->
3
+ <!-- EN-Revision: 84fee8e038581781a81abd8a20809d913700c840 Maintainer: hirokawa Status: ready -->
4
4
<!-- CREDITS: takagi -->
5
5
6
6
<sect1 xml : id =" language.oop5.visibility" xmlns =" http://docbook.org/ns/docbook" >
20
20
<para >
21
21
クラスのプロパティは、public, private, または protected
22
22
として定義しなくてはなりません。<emphasis >var</emphasis >
23
- を使ってアクセス権を明示せずに宣言した場合 、
23
+ を使って宣言した場合 、
24
24
そのプロパティは public として定義されます。
25
25
</para >
26
26
<para >
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: 96c9d88bad9a7d7d44bfb7f26c226df7ee9ddf26 Maintainer: hirokawa Status: ready -->
3
+ <!-- EN-Revision: 654099b8c658dad8d53388144603932e252907e4 Maintainer: hirokawa Status: ready -->
4
4
<!-- CREDITS: takagi -->
5
5
<refentry xml : id =" function.mysql-db-name" xmlns =" http://docbook.org/ns/docbook" >
6
6
<refnamediv >
7
7
<refname >mysql_db_name</refname >
8
- <refpurpose >データベース名を得る </refpurpose >
8
+ <refpurpose >< function >mysql_list_dbs</ function > のコール結果からデータベース名を取得する </refpurpose >
9
9
</refnamediv >
10
10
11
11
<refsect1 role =" description" >
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: 96c9d88bad9a7d7d44bfb7f26c226df7ee9ddf26 Maintainer: hirokawa Status: ready -->
3
+ <!-- EN-Revision: 654099b8c658dad8d53388144603932e252907e4 Maintainer: hirokawa Status: ready -->
4
4
<!-- CREDITS: takagi -->
5
5
<refentry xml : id =" function.mysql-db-query" xmlns =" http://docbook.org/ns/docbook" >
6
6
<refnamediv >
7
7
<refname >mysql_db_query</refname >
8
- <refpurpose >MySQL クエリーを送信する </refpurpose >
8
+ <refpurpose >データベースを選択し、そこでクエリーを実行する </refpurpose >
9
9
</refnamediv >
10
10
11
11
<refsect1 role =" description" >
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: 96c9d88bad9a7d7d44bfb7f26c226df7ee9ddf26 Maintainer: hirokawa Status: ready -->
3
+ <!-- EN-Revision: 789048eb9d663f9af8228e84e9843b95e76d2dbb Maintainer: hirokawa Status: ready -->
4
4
<!-- CREDITS: takagi -->
5
5
<refentry xml : id =" function.mysql-field-name" xmlns =" http://docbook.org/ns/docbook" >
6
6
<refnamediv >
47
47
<![CDATA[
48
48
<?php
49
49
/* users テーブルには以下の 3 つのフィールドがある
50
- * user_id
51
- * username
52
- * password.
53
- */
54
- $link = @ mysql_connect('localhost', 'mysql_user', 'mysql_password');
50
+ * user_id
51
+ * username
52
+ * password.
53
+ */
54
+ $link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
55
55
if (!$link) {
56
56
die('Could not connect to MySQL server: ' . mysql_error());
57
57
}
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<!-- $Revision$ -->
3
3
<!-- splitted from ./en/functions/var.xml, last change in rev 1.6 -->
4
- <!-- EN-Revision: 96c9d88bad9a7d7d44bfb7f26c226df7ee9ddf26 Maintainer: hirokawa Status: ready -->
4
+ <!-- EN-Revision: 1bda9b3cbf999b652b283a71b3ee01d1a6089dcf Maintainer: hirokawa Status: ready -->
5
5
<!-- CREDITS: shimooka -->
6
6
<refentry xml : id =" function.var-export" xmlns =" http://docbook.org/ns/docbook" >
7
7
<refnamediv >
45
45
使用されかつ &true; に設定された場合、<function >var_export</function >
46
46
は変数表現を出力する代わりに返します。
47
47
</para >
48
- ¬e.uses-ob;
49
48
</listitem >
50
49
</varlistentry >
51
50
</variablelist >
60
59
</para >
61
60
</refsect1 >
62
61
62
+ <refsect1 role =" notes" >
63
+ &reftitle.notes;
64
+ ¬e.uses-ob;
65
+ </refsect1 >
66
+
63
67
<refsect1 role =" changelog" >
64
68
&reftitle.changelog;
65
69
<para >
You can’t perform that action at this time.
0 commit comments