LMPX.COM |
Home | Linux | Mysql | PHP | XML | ||
|
|
|||
From: TAKAGI Masahiro Date: Wed Aug 20 14:49:09 2008 Subject: cvs: phpdoc-ja / language-snippets.ent /appendices migration5.xml migration51.xml migration52.xml reserved.xml /install/windows index.xml
/language/types float.xml string.xml /reference/array/functions each.xml /reference/classobj/functions property-exists.xml
/reference/filesystem/functions stat.xml touch.xml /reference/image/functions imagecolortransparent.xml imagedashedline.xml imagefilledrectangle.xml
imagettfbbox.xml /reference/mysqli/mysqli connect.xml /reference/sphinx book.xml configure.xml constants.xml examples.xml reference.xml setup.xml
sphinxclient.xml
takagi Wed Aug 20 20:49:09 2008 UTC
Added files:
/phpdoc-ja/reference/sphinx sphinxclient.xml setup.xml
reference.xml examples.xml
constants.xml configure.xml book.xml
Modified files:
/phpdoc-ja/reference/mysqli/mysqli connect.xml
/phpdoc-ja/reference/image/functions imagettfbbox.xml
imagefilledrectangle.xml
imagedashedline.xml
imagecolortransparent.xml
/phpdoc-ja/reference/filesystem/functions touch.xml stat.xml
/phpdoc-ja/reference/classobj/functions property-exists.xml
/phpdoc-ja/reference/array/functions each.xml
/phpdoc-ja/language/types string.xml float.xml
/phpdoc-ja/install/windows index.xml
/phpdoc-ja/appendices reserved.xml migration52.xml migration51.xml
migration5.xml
/phpdoc-ja language-snippets.ent
Log:
sync with en.
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/mysqli/mysqli/connect.xml?r1=1.1&r2=1.2&diff_format=u
Index: phpdoc-ja/reference/mysqli/mysqli/connect.xml
diff -u phpdoc-ja/reference/mysqli/mysqli/connect.xml:1.1 phpdoc-ja/reference/mysqli/mysqli/connect.xml:1.2
--- phpdoc-ja/reference/mysqli/mysqli/connect.xml:1.1 Thu Jan 3 02:12:42 2008
+++ phpdoc-ja/reference/mysqli/mysqli/connect.xml Wed Aug 20 20:49:08 2008
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.1 $ -->
-<!-- EN-Revision: 1.2 Maintainer: takagi Status: ready -->
+<!-- $Revision: 1.2 $ -->
+<!-- EN-Revision: 1.3 Maintainer: takagi Status: ready -->
<!-- CREDITS: hirokawa -->
<refentry xml:id="mysqli.connect" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -108,8 +108,7 @@
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
- MySQL サーバへの接続を表すオブジェクトを返します。接続に失敗した場合には
- &false; を返します。
+ MySQL サーバへの接続を表すオブジェクトを返します。
</para>
</refsect1>
@@ -122,8 +121,8 @@
<?php
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");
-/* 接続の状況をチェックします */
-if (mysqli_connect_errno()) {
+/* 接続の状況をチェックします */
+if ($mysqli->connect_error) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
@@ -169,6 +168,15 @@
&reftitle.notes;
<note>
<para>
+ オブジェクト指向の構文に関する注意:
+ 接続に失敗した場合にもオブジェクトが返されます。
+ 接続が失敗したかどうかを確かめるには、上の例のように <link
+ linkend="mysqli.connect-error">mysqli->connect_error</link>
+ プロパティを使用しましょう。
+ </para>
+ </note>
+ <note>
+ <para>
エラー "Can't create TCP/IP socket (10106)" が発生するのは、たいていは <link
linkend="ini.variables-order">variables_order</link> 設定ディレクティブに
<literal>E</literal> が含まれていない場合です。
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/image/functions/imagettfbbox.xml?r1=1.9&r2=1.10&diff_format=u
Index: phpdoc-ja/reference/image/functions/imagettfbbox.xml
diff -u phpdoc-ja/reference/image/functions/imagettfbbox.xml:1.9 phpdoc-ja/reference/image/functions/imagettfbbox.xml:1.10
--- phpdoc-ja/reference/image/functions/imagettfbbox.xml:1.9 Wed Aug 6 20:30:58 2008
+++ phpdoc-ja/reference/image/functions/imagettfbbox.xml Wed Aug 20 20:49:08 2008
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.9 $ -->
-<!-- EN-Revision: 1.11 Maintainer: hirokawa Status: ready -->
+<!-- $Revision: 1.10 $ -->
+<!-- EN-Revision: 1.12 Maintainer: hirokawa Status: ready -->
<!-- CREDITS: shimooka -->
<refentry xml:id="function.imagettfbbox" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
@@ -29,7 +29,8 @@
<term><parameter>size</parameter></term>
<listitem>
<para>
- ピクセル単位のフォントの大きさ。
+ フォントの大きさ。GD のバージョンによって、これはピクセル単位
+ (GD1) あるいはポイント数 (GD2) のいずれかとなります。
</para>
</listitem>
</varlistentry>
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/image/functions/imagefilledrectangle.xml?r1=1.8&r2=1.9&diff_format=u
Index: phpdoc-ja/reference/image/functions/imagefilledrectangle.xml
diff -u phpdoc-ja/reference/image/functions/imagefilledrectangle.xml:1.8 phpdoc-ja/reference/image/functions/imagefilledrectangle.xml:1.9
--- phpdoc-ja/reference/image/functions/imagefilledrectangle.xml:1.8 Wed Aug 6 20:30:58 2008
+++ phpdoc-ja/reference/image/functions/imagefilledrectangle.xml Wed Aug 20 20:49:08 2008
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.8 $ -->
-<!-- EN-Revision: 1.9 Maintainer: hirokawa Status: ready -->
+<!-- $Revision: 1.9 $ -->
+<!-- EN-Revision: 1.10 Maintainer: hirokawa Status: ready -->
<!-- CREDITS: shimooka -->
<refentry xml:id="function.imagefilledrectangle" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -81,6 +81,36 @@
&return.success;
</para>
</refsect1>
+ <refsect1 role="examples">
+ &reftitle.examples;
+ <para>
+ <example>
+ <title><function>imagefilledrectangle</function> の例</title>
+ <programlisting role="php">
+<![CDATA[
+<?php
+// 55x30 の画像を作成します
+$im = imagecreatetruecolor(55, 30);
+$white = imagecolorallocate($im, 255, 255, 255);
+
+// 白の矩形を描画します
+imagefilledrectangle($im, 4, 4, 50, 25, $white);
+
+// 画像を保存します
+imagepng($im, './imagefilledrectangle.png');
+imagedestroy($im);
+?>
+]]>
+ </programlisting>
+ &example.outputs.similar;
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="figures/image.imagefilledrectangle.png"/>
+ </imageobject>
+ </mediaobject>
+ </example>
+ </para>
+ </refsect1>
</refentry>
<!-- Keep this comment at the end of the file
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/image/functions/imagedashedline.xml?r1=1.11&r2=1.12&diff_format=u
Index: phpdoc-ja/reference/image/functions/imagedashedline.xml
diff -u phpdoc-ja/reference/image/functions/imagedashedline.xml:1.11 phpdoc-ja/reference/image/functions/imagedashedline.xml:1.12
--- phpdoc-ja/reference/image/functions/imagedashedline.xml:1.11 Fri Aug 15 21:30:39 2008
+++ phpdoc-ja/reference/image/functions/imagedashedline.xml Wed Aug 20 20:49:08 2008
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.11 $ -->
-<!-- EN-Revision: 1.10 Maintainer: hirokawa Status: ready -->
+<!-- $Revision: 1.12 $ -->
+<!-- EN-Revision: 1.11 Maintainer: hirokawa Status: ready -->
<!-- CREDITS: shimooka -->
<refentry xml:id="function.imagedashedline" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -102,10 +102,44 @@
&example.outputs.similar;
<mediaobject>
<imageobject>
- <imagedata fileref="figures/image.dashedline.png"/>
+ <imagedata fileref="figures/image.imagedashedline.png"/>
</imageobject>
</mediaobject>
</example>
+ <example>
+ <title><function>imagedashedline</function> のもうひとつの使用法</title>
+ <programlisting role="php">
+<![CDATA[
+<?php
+// 100x100 の画像を作成します
+$im = imagecreatetruecolor(100, 100);
+$white = imagecolorallocate($im, 0xFF, 0xFF, 0xFF);
+
+// 独自のスタイルの作成: 最初の 4 ピクセルを白色、
+// 次の 4 ピクセルを透明とし、破線風の効果を作成します
+$style = Array(
+ $white,
+ $white,
+ $white,
+ $white,
+ IMG_COLOR_TRANSPARENT,
+ IMG_COLOR_TRANSPARENT,
+ IMG_COLOR_TRANSPARENT,
+ IMG_COLOR_TRANSPARENT
+ )
+
+imagesetstyle($im, $style);
+
+// 破線を描画します
+imageline($im, 50, 25, 50, 75, IMG_COLOR_STYLED);
+
+// 画像を保存します
+imagepng($im, './imageline.png');
+imagedestroy($im);
+?>
+]]>
+ </programlisting>
+ </example>
</para>
</refsect1>
<refsect1 role="seealso">
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/image/functions/imagecolortransparent.xml?r1=1.9&r2=1.10&diff_format=u
Index: phpdoc-ja/reference/image/functions/imagecolortransparent.xml
diff -u phpdoc-ja/reference/image/functions/imagecolortransparent.xml:1.9 phpdoc-ja/reference/image/functions/imagecolortransparent.xml:1.10
--- phpdoc-ja/reference/image/functions/imagecolortransparent.xml:1.9 Wed Aug 6 20:30:59 2008
+++ phpdoc-ja/reference/image/functions/imagecolortransparent.xml Wed Aug 20 20:49:08 2008
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.9 $ -->
-<!-- EN-Revision: 1.11 Maintainer: hirokawa Status: ready -->
+<!-- $Revision: 1.10 $ -->
+<!-- EN-Revision: 1.12 Maintainer: hirokawa Status: ready -->
<!-- CREDITS: shimooka -->
<refentry xml:id="function.imagecolortransparent" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -42,6 +42,40 @@
を返します。
</para>
</refsect1>
+ <refsect1 role="examples">
+ &reftitle.examples;
+ <para>
+ <example>
+ <title><function>imagecolortransparent</function> の例</title>
+ <programlisting role="php">
+<![CDATA[
+<?php
+// 55x30 の画像を作成します
+$im = imagecreatetruecolor(55, 30);
+$red = imagecolorallocate($im, 255, 0, 0);
+$black = imagecolorallocate($im, 0, 0, 0);
+
+// 背景を透明にします
+imagecolortransparent($im, $black);
+
+// 赤い矩形を描画します
+imagefilledrectangle($im, 4, 4, 50, 25, $red);
+
+// 画像を保存します
+imagepng($im, './imagecolortransparent.png');
+imagedestroy($im);
+?>
+]]>
+ </programlisting>
+ &example.outputs.similar;
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="figures/image.imagecolortransparent.png"/>
+ </imageobject>
+ </mediaobject>
+ </example>
+ </para>
+ </refsect1>
<refsect1 role="notes">
&reftitle.notes;
<note>
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/filesystem/functions/touch.xml?r1=1.9&r2=1.10&diff_format=u
Index: phpdoc-ja/reference/filesystem/functions/touch.xml
diff -u phpdoc-ja/reference/filesystem/functions/touch.xml:1.9 phpdoc-ja/reference/filesystem/functions/touch.xml:1.10
--- phpdoc-ja/reference/filesystem/functions/touch.xml:1.9 Mon Sep 17 00:38:24 2007
+++ phpdoc-ja/reference/filesystem/functions/touch.xml Wed Aug 20 20:49:08 2008
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.9 $ -->
-<!-- EN-Revision: 1.14 Maintainer: hirokawa Status: ready -->
+<!-- $Revision: 1.10 $ -->
+<!-- EN-Revision: 1.15 Maintainer: hirokawa Status: ready -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.touch">
<refnamediv>
<refname>touch</refname>
@@ -69,6 +69,30 @@
</para>
</refsect1>
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>5.3.0</entry>
+ <entry>
+ Windows 環境でディレクトリの最終更新日が変更できるようになりました。
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
+
<refsect1 role="examples">
&reftitle.examples;
<para>
@@ -93,8 +117,8 @@
&reftitle.notes;
<warning>
<para>
- 現在は、Windows 環境のもとでは
- この関数によってディレクトリの最終更新日を変更することはできません。
+ PHP 5.3.0 より前のバージョンでは、Windows 環境のもとでは
+ この関数によってディレクトリの最終更新日を変更することはできませんでした。
</para>
</warning>
</refsect1>
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/filesystem/functions/stat.xml?r1=1.12&r2=1.13&diff_format=u
Index: phpdoc-ja/reference/filesystem/functions/stat.xml
diff -u phpdoc-ja/reference/filesystem/functions/stat.xml:1.12 phpdoc-ja/reference/filesystem/functions/stat.xml:1.13
--- phpdoc-ja/reference/filesystem/functions/stat.xml:1.12 Fri Jul 11 23:39:31 2008
+++ phpdoc-ja/reference/filesystem/functions/stat.xml Wed Aug 20 20:49:08 2008
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.12 $ -->
-<!-- EN-Revision: 1.18 Maintainer: hirokawa Status: ready -->
+<!-- $Revision: 1.13 $ -->
+<!-- EN-Revision: 1.19 Maintainer: hirokawa Status: ready -->
<!-- CREDITS: shimooka -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.stat">
<refnamediv>
@@ -66,7 +66,7 @@
<row>
<entry>1</entry>
<entry>ino</entry>
- <entry>inode 番号</entry>
+ <entry>inode 番号(*)</entry>
</row>
<row>
<entry>2</entry>
@@ -81,12 +81,12 @@
<row>
<entry>4</entry>
<entry>uid</entry>
- <entry>所有者のユーザ ID</entry>
+ <entry>所有者のユーザ ID(*)</entry>
</row>
<row>
<entry>5</entry>
<entry>gid</entry>
- <entry>所有者のグループ ID</entry>
+ <entry>所有者のグループ ID(*)</entry>
</row>
<row>
<entry>6</entry>
@@ -116,17 +116,20 @@
<row>
<entry>11</entry>
<entry>blksize</entry>
- <entry>ファイル IO のブロックサイズ(*)</entry>
+ <entry>ファイル IO のブロックサイズ(**)</entry>
</row>
<row>
<entry>12</entry>
<entry>blocks</entry>
- <entry>ブロックの確保数(*)</entry>
+ <entry>ブロックの確保数(**)</entry>
</row>
</tbody>
</tgroup>
</table>
- * st_blksize タイプをサポートするシステムでのみ有効です。
+ * Windows では常に 0 となります。
+ </para>
+ <para>
+ ** st_blksize タイプをサポートするシステムでのみ有効です。
その他のシステム(例えば Windows)では -1 を返します。
</para>
<para>
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/classobj/functions/property-exists.xml?r1=1.5&r2=1.6&diff_format=u
Index: phpdoc-ja/reference/classobj/functions/property-exists.xml
diff -u phpdoc-ja/reference/classobj/functions/property-exists.xml:1.5 phpdoc-ja/reference/classobj/functions/property-exists.xml:1.6
--- phpdoc-ja/reference/classobj/functions/property-exists.xml:1.5 Fri Jun 22 14:31:39 2007
+++ phpdoc-ja/reference/classobj/functions/property-exists.xml Wed Aug 20 20:49:08 2008
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
-<!-- $Revision: 1.5 $ -->
-<!-- EN-Revision: 1.7 Maintainer: shimooka Status: ready -->
+<!-- $Revision: 1.6 $ -->
+<!-- EN-Revision: 1.9 Maintainer: shimooka Status: ready -->
<!-- CREDITS: takagi -->
<refentry xml:id="function.property-exists" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -18,8 +18,7 @@
</methodsynopsis>
<para>
この関数は、与えられたプロパティ <parameter>property</parameter> が
- 指定されたクラスに存在するかどうか
- (かつ現在のスコープからアクセス可能かどうか) を確認します。
+ 指定されたクラスに存在するかどうかを確認します。
</para>
<note>
<para>
@@ -59,6 +58,29 @@
エラー時には &null; を返します。
</para>
</refsect1>
+ <refsect1 role="changelog">
+ &reftitle.changelog;
+ <para>
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>&Version;</entry>
+ <entry>&Description;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>5.3.0</entry>
+ <entry>
+ この関数は、アクセス権に依存せずにプロパティの存在確認を行うようになりました。
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </para>
+ </refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
@@ -71,15 +93,18 @@
class myClass {
public $mine;
private $xpto;
+ static protected $test;
static function test() {
- var_dump(property_exists('myClass', 'xpto')); // ここからアクセス可能なので true
+ var_dump(property_exists('myClass', 'xpto')); //true
}
}
var_dump(property_exists('myClass', 'mine')); //true
var_dump(property_exists(new myClass, 'mine')); //true
-var_dump(property_exists('myClass', 'xpto')); //public でないので false
+var_dump(property_exists('myClass', 'xpto')); //PHP 5.3.0 以降では true
+var_dump(property_exists('myClass', 'bar')); //false
+var_dump(property_exists('myClass', 'test')); //PHP 5.3.0 以降では true
myClass::test();
?>
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/array/functions/each.xml?r1=1.9&r2=1.10&diff_format=u
Index: phpdoc-ja/reference/array/functions/each.xml
diff -u phpdoc-ja/reference/array/functions/each.xml:1.9 phpdoc-ja/reference/array/functions/each.xml:1.10
--- phpdoc-ja/reference/array/functions/each.xml:1.9 Mon Dec 31 08:26:02 2007
+++ phpdoc-ja/reference/array/functions/each.xml Wed Aug 20 20:49:09 2008
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.9 $ -->
-<!-- EN-Revision: 1.20 Maintainer: hirokawa Status: ready -->
+<!-- $Revision: 1.10 $ -->
+<!-- EN-Revision: 1.22 Maintainer: hirokawa Status: ready -->
<!-- CREDITS: shimooka -->
<refentry xml:id="function.each" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -146,6 +146,14 @@
を他の変数に代入すると、無限ループを引き起こしてしまいます。
</para>
</caution>
+ <warning>
+ <para>
+ <function>each</function> をオブジェクトに対して使用することもできますが、
+ 予期せぬ結果を返すことになるかもしれません。
+ オブジェクトのプロパティを <function>each</function>
+ で反復処理することはおすすめしません。
+ </para>
+ </warning>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
@@ -158,6 +166,7 @@
<member><function>next</function></member>
<member><function>prev</function></member>
<member><link linkend="control-structures.foreach">foreach</link></member>
+ <member><link linkend="language.oop5.iterations">オブジェクトのイタレーション</link></member>
</simplelist>
</para>
</refsect1>
http://cvs.php.net/viewvc.cgi/phpdoc-ja/language/types/string.xml?r1=1.6&r2=1.7&diff_format=u
Index: phpdoc-ja/language/types/string.xml
diff -u phpdoc-ja/language/types/string.xml:1.6 phpdoc-ja/language/types/string.xml:1.7
--- phpdoc-ja/language/types/string.xml:1.6 Wed Aug 6 20:30:59 2008
+++ phpdoc-ja/language/types/string.xml Wed Aug 20 20:49:09 2008
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.6 $ -->
-<!-- EN-Revision: 1.12 Maintainer: takagi Status: ready -->
+<!-- $Revision: 1.7 $ -->
+<!-- EN-Revision: 1.13 Maintainer: takagi Status: ready -->
<!-- CREDITS: hirokawa,shimooka -->
<sect1 xml:id="language.types.string">
<title>文字列</title>
@@ -298,7 +298,27 @@
<![CDATA[
My name is "MyName". I am printing some Foo.
Now, I am printing some Bar2.
-This should print a capital 'A': A]]></screen>
+This should print a capital 'A': A]]>
+ </screen>
+
+ <para>
+ ヒアドキュメント構文を用いて、
+ 関数の引数にデータを渡すこともできます。
+ </para>
+
+ <example>
+ <title>ヒアドキュメントを引数に使用する例</title>
+ <programlisting role="php">
+<![CDATA[
+<?php
+var_dump(array(<<<EOD
+foobar!
+EOD
+));
+?>
+]]>
+ </programlisting>
+ </example>
<note>
<para>
http://cvs.php.net/viewvc.cgi/phpdoc-ja/language/types/float.xml?r1=1.2&r2=1.3&diff_format=u
Index: phpdoc-ja/language/types/float.xml
diff -u phpdoc-ja/language/types/float.xml:1.2 phpdoc-ja/language/types/float.xml:1.3
--- phpdoc-ja/language/types/float.xml:1.2 Sat Feb 23 02:59:19 2008
+++ phpdoc-ja/language/types/float.xml Wed Aug 20 20:49:09 2008
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.2 $ -->
-<!-- EN-Revision: 1.4 Maintainer: takagi Status: ready -->
+<!-- $Revision: 1.3 $ -->
+<!-- EN-Revision: 1.5 Maintainer: takagi Status: ready -->
<!-- CREDITS: hirokawa,shimooka -->
<sect1 xml:id="language.types.float">
<title>浮動小数点数</title>
@@ -30,7 +30,7 @@
<![CDATA[
LNUM [0-9]+
DNUM ([0-9]*[\.]{LNUM}) | ({LNUM}[\.][0-9]*)
-EXPONENT_DNUM ( ({LNUM} | {DNUM}) [eE][+-]? {LNUM})
+EXPONENT_DNUM [+-]?(({LNUM} | {DNUM}) [eE][+-]? {LNUM})
]]>
</programlisting>
</informalexample>
http://cvs.php.net/viewvc.cgi/phpdoc-ja/install/windows/index.xml?r1=1.7&r2=1.8&diff_format=u
Index: phpdoc-ja/install/windows/index.xml
diff -u phpdoc-ja/install/windows/index.xml:1.7 phpdoc-ja/install/windows/index.xml:1.8
--- phpdoc-ja/install/windows/index.xml:1.7 Tue Jul 1 20:27:03 2008
+++ phpdoc-ja/install/windows/index.xml Wed Aug 20 20:49:09 2008
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!-- $Revision: 1.7 $ -->
-<!-- EN-Revision: 1.20 Maintainer: haruki Status: ready -->
+<!-- $Revision: 1.8 $ -->
+<!-- EN-Revision: 1.21 Maintainer: haruki Status: ready -->
<!-- CREDITS: fujimoto, hirokawa, yuw, haruki -->
<chapter xml:id="install.windows" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Windows システムへのインストール</title>
@@ -12,7 +12,7 @@
</para>
<note>
<para>
- Windows 98 は、PHP 5.3.0 以降サポートされなくなりました。
+ Windows 98/ME/NT4 は、PHP 5.3.0 以降サポートされなくなりました。
</para>
</note>
<note>
http://cvs.php.net/viewvc.cgi/phpdoc-ja/appendices/reserved.xml?r1=1.34&r2=1.35&diff_format=u
Index: phpdoc-ja/appendices/reserved.xml
diff -u phpdoc-ja/appendices/reserved.xml:1.34 phpdoc-ja/appendices/reserved.xml:1.35
--- phpdoc-ja/appendices/reserved.xml:1.34 Mon Aug 18 19:52:33 2008
+++ phpdoc-ja/appendices/reserved.xml Wed Aug 20 20:49:09 2008
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.34 $ -->
-<!-- EN-Revision: 1.74 Maintainer: hirokawa Status: ready -->
+<!-- $Revision: 1.35 $ -->
+<!-- EN-Revision: 1.75 Maintainer: hirokawa Status: ready -->
<!-- CREDITS: takagi -->
<appendix xml:id="reserved" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>予約語の一覧</title>
@@ -264,8 +264,8 @@
<entry>
<link linkend="keyword.class">this</link> (PHP 5 以降)
</entry>
- <entry>
- <link linkend="language.oop5.final">final</link> (PHP 5 以降)
+ <entry>
+ <link linkend="language.constants.predefined">__DIR__</link> (PHP 5.3 以降)
</entry>
</row>
<row>
@@ -278,9 +278,6 @@
<entry>
goto (PHP 5.3 以降)
</entry>
- <entry>
- <link linkend="language.constants.predefined">__DIR__</link> (PHP 5.3 以降)
- </entry>
<entry>
</entry>
</row>
http://cvs.php.net/viewvc.cgi/phpdoc-ja/appendices/migration52.xml?r1=1.12&r2=1.13&diff_format=u
Index: phpdoc-ja/appendices/migration52.xml
diff -u phpdoc-ja/appendices/migration52.xml:1.12 phpdoc-ja/appendices/migration52.xml:1.13
--- phpdoc-ja/appendices/migration52.xml:1.12 Thu Apr 3 22:11:09 2008
+++ phpdoc-ja/appendices/migration52.xml Wed Aug 20 20:49:09 2008
@@ -1,8 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.12 $ -->
-<!-- EN-Revision: 1.34 Maintainer: takagi Status: ready -->
+<!-- $Revision: 1.13 $ -->
+<!-- EN-Revision: 1.35 Maintainer: takagi Status: ready -->
<appendix xml:id="migration52" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>PHP 5.1.x から PHP 5.2.x への移行</title>
+ <para>
+ &manual.migration.seealso;
+ <link linkend="migration5">5.0.x</link> および
+ <link linkend="migration51">5.1.x</link> も参照ください。
+ </para>
<section xml:id="migration52.changes">
<title>PHP 5.2.x における変更点</title>
http://cvs.php.net/viewvc.cgi/phpdoc-ja/appendices/migration51.xml?r1=1.6&r2=1.7&diff_format=u
Index: phpdoc-ja/appendices/migration51.xml
diff -u phpdoc-ja/appendices/migration51.xml:1.6 phpdoc-ja/appendices/migration51.xml:1.7
--- phpdoc-ja/appendices/migration51.xml:1.6 Thu Mar 20 05:28:26 2008
+++ phpdoc-ja/appendices/migration51.xml Wed Aug 20 20:49:09 2008
@@ -1,8 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.6 $ -->
-<!-- EN-Revision: 1.11 Maintainer: takagi Status: ready -->
+<!-- $Revision: 1.7 $ -->
+<!-- EN-Revision: 1.12 Maintainer: takagi Status: ready -->
<appendix xml:id="migration51" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>PHP 5.0.x から PHP 5.1.x への移行</title>
+ <para>
+ &manual.migration.seealso;
+ <link linkend="migration5">5.0.x</link> および
+ <link linkend="migration52">5.2.x</link> も参照ください。
+ </para>
<section xml:id="migration51.changes">
<title>PHP 5.1.x における変更点</title>
http://cvs.php.net/viewvc.cgi/phpdoc-ja/appendices/migration5.xml?r1=1.24&r2=1.25&diff_format=u
Index: phpdoc-ja/appendices/migration5.xml
diff -u phpdoc-ja/appendices/migration5.xml:1.24 phpdoc-ja/appendices/migration5.xml:1.25
--- phpdoc-ja/appendices/migration5.xml:1.24 Thu Aug 30 18:19:13 2007
+++ phpdoc-ja/appendices/migration5.xml Wed Aug 20 20:49:09 2008
@@ -1,12 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.24 $ -->
-<!-- EN-Revision: 1.56 Maintainer: hirokawa Status: ready -->
+<!-- $Revision: 1.25 $ -->
+<!-- EN-Revision: 1.57 Maintainer: hirokawa Status: ready -->
<!-- CREDITS: takagi -->
<appendix xml:id="migration5" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
- <title>PHP 4 から PHP 5 への移行</title>
+ <title>PHP 4 から PHP 5.0.x への移行</title>
+ <para>
+ &manual.migration.seealso;
+ <link linkend="migration51">5.1.x</link> および
+ <link linkend="migration52">5.2.x</link> も参照ください。
+ </para>
<section xml:id='migration5.changes'>
- <title>PHP 5における変更点</title>
+ <title>PHP 5.0.x における変更点</title>
<para>
PHP 5 および PHP 5 に組み込まれた Zend Engine 2 は、
PHP の性能と機能を著しく向上させました。
http://cvs.php.net/viewvc.cgi/phpdoc-ja/language-snippets.ent?r1=1.106&r2=1.107&diff_format=u
Index: phpdoc-ja/language-snippets.ent
diff -u phpdoc-ja/language-snippets.ent:1.106 phpdoc-ja/language-snippets.ent:1.107
--- phpdoc-ja/language-snippets.ent:1.106 Fri Jun 20 03:35:18 2008
+++ phpdoc-ja/language-snippets.ent Wed Aug 20 20:49:09 2008
@@ -1,5 +1,5 @@
-<!-- $Revision: 1.106 $ -->
-<!-- EN-Revision: 1.227 Maintainer: hirokawa Status: ready -->
+<!-- $Revision: 1.107 $ -->
+<!-- EN-Revision: 1.228 Maintainer: hirokawa Status: ready -->
<!-- Credits: haruki,shimooka,takagi -->
<!-- Notes -->
@@ -228,6 +228,8 @@
<emphasis>この拡張モジュールを使用するには、以下のファイルが
<literal>PATH</literal> の通った場所にある必要があります。</emphasis> '>
+<!ENTITY manual.migration.seealso 'PHP のバージョン移行ガイド'>
+
<!-- Returns -->
<!ENTITY return.success '成功した場合に &true; を、失敗した場合に &false; を返します。'>
@@ -590,11 +592,6 @@
<function>fbsql_db_query</function> が返す結果 ID。</para></listitem></varlistentry>'>
<!-- GMP Notes -->
-<!ENTITY gmp.return 'A GMP number <type>resource</type>.'>
-<!ENTITY gmp.parameter '<para>It can be either a GMP number <type>resource</type>, or a
-numeric string given that it is possible to convert the latter to a number.</para>'>
-
-<!-- GMP Notes -->
<!ENTITY gmp.return 'GMP 数リソースを返します。'>
<!ENTITY gmp.parameter '<para>GMP 数リソース、
あるいは数値に変換可能な数値形式の文字列。</para>'>
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/sphinx/sphinxclient.xml?view=markup&rev=1.1
Index: phpdoc-ja/reference/sphinx/sphinxclient.xml
+++ phpdoc-ja/reference/sphinx/sphinxclient.xml
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 1.1 $ -->
<!-- EN-Revision: 1.1 Maintainer: takagi Status: ready -->
<reference xml:id="class.sphinxclient" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>SphinxClient クラス</title>
<titleabbrev>SphinxClient</titleabbrev>
<partintro>
<!-- {{{ SphinxClient intro -->
<section xml:id="sphinxclient.intro">
&reftitle.intro;
<para>
SphinxClient クラスは、Sphinx へのオブジェクト指向のインターフェイスを提供します。
</para>
</section>
<!-- }}} -->
<section xml:id="sphinxclient.synopsis">
&reftitle.classsynopsis;
<!-- {{{ Synopsis -->
<classsynopsis>
<ooclass><classname>SphinxClient</classname></ooclass>
<!-- {{{ Class synopsis -->
<classsynopsisinfo>
<ooclass>
<classname>SphinxClient</classname>
</ooclass>
</classsynopsisinfo>
<!-- }}} -->
<classsynopsisinfo role="comment">メソッド</classsynopsisinfo>
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.sphinxclient')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[1])" />
</classsynopsis>
<!-- }}} -->
</section>
</partintro>
&reference.sphinx.entities.sphinxclient;
</reference>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/sphinx/setup.xml?view=markup&rev=1.1
Index: phpdoc-ja/reference/sphinx/setup.xml
+++ phpdoc-ja/reference/sphinx/setup.xml
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 1.1 $ -->
<!-- EN-Revision: 1.2 Maintainer: takagi Status: ready -->
<chapter xml:id="sphinx.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup;
<section xml:id="sphinx.requirements">
&reftitle.required;
<para>
PECL/sphinx は PHP 5.1.3 以降を必要とします。
</para>
</section>
<!-- {{{ Installation -->
&reference.sphinx.configure;
<!-- }}} -->
<!-- {{{ Configuration -->
<section xml:id="sphinx.configuration">
&reftitle.runtime;
&no.config;
</section>
<!-- }}} -->
<section xml:id="sphinx.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/sphinx/reference.xml?view=markup&rev=1.1
Index: phpdoc-ja/reference/sphinx/reference.xml
+++ phpdoc-ja/reference/sphinx/reference.xml
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 1.1 $ -->
<!-- EN-Revision: 1.1 Maintainer: takagi Status: ready -->
<reference xml:id="ref.sphinx" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Sphinx &Functions;</title>
&reference.sphinx.entities.functions;
</reference>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/sphinx/examples.xml?view=markup&rev=1.1
Index: phpdoc-ja/reference/sphinx/examples.xml
+++ phpdoc-ja/reference/sphinx/examples.xml
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 1.1 $ -->
<!-- EN-Revision: 1.1 Maintainer: takagi Status: ready -->
<chapter xml:id="sphinx.examples" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.examples;
<example>
<title>基本的な使用例</title>
<programlisting role="php">
<![CDATA[
<?php
$s = new SphinxClient;
$s->setServer("localhost", 6712);
$s->setMatchMode(SPH_MATCH_ANY);
$s->setMaxQueryTime(3);
$result = $s->query("test");
var_dump($result);
?>
]]>
</programlisting>
&example.outputs.similar;
<screen>
<![CDATA[
array(10) {
["error"]=>
string(0) ""
["warning"]=>
string(0) ""
["status"]=>
int(0)
["fields"]=>
array(3) {
[0]=>
string(7) "subject"
[1]=>
string(4) "body"
[2]=>
string(6) "author"
}
["attrs"]=>
array(0) {
}
["matches"]=>
array(1) {
[3]=>
array(2) {
["weight"]=>
int(1)
["attrs"]=>
array(0) {
}
}
}
["total"]=>
int(1)
["total_found"]=>
int(1)
["time"]=>
float(0)
["words"]=>
array(1) {
["to"]=>
array(2) {
["docs"]=>
int(1)
["hits"]=>
int(1)
}
}
}
]]>
</screen>
</example>
</chapter>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/sphinx/constants.xml?view=markup&rev=1.1
Index: phpdoc-ja/reference/sphinx/constants.xml
+++ phpdoc-ja/reference/sphinx/constants.xml
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 1.1 $ -->
<!-- EN-Revision: 1.1 Maintainer: takagi Status: ready -->
<appendix xml:id="sphinx.constants" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.constants;
&extension.constants;
<para>
<variablelist>
<varlistentry>
<term>
<constant>SEARCHD_OK</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SEARCHD_ERROR</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SEARCHD_RETRY</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SEARCHD_WARNING</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_MATCH_ALL</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_MATCH_ANY</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_MATCH_PHRASE</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_MATCH_BOOLEAN</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_MATCH_EXTENDED</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_MATCH_FULLSCAN</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_MATCH_EXTENDED2</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_RANK_PROXIMITY_BM25</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_RANK_BM25</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_RANK_NONE</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_RANK_WORDCOUNT</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_SORT_RELEVANCE</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_SORT_ATTR_DESC</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_SORT_ATTR_ASC</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_SORT_TIME_SEGMENTS</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_SORT_EXTENDED</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_SORT_EXPR</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_FILTER_VALUES</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_FILTER_RANGE</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_FILTER_FLOATRANGE</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_ATTR_INTEGER</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_ATTR_TIMESTAMP</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_ATTR_ORDINAL</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_ATTR_BOOL</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_ATTR_FLOAT</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_ATTR_MULTI</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_GROUPBY_DAY</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_GROUPBY_WEEK</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_GROUPBY_MONTH</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_GROUPBY_YEAR</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_GROUPBY_ATTR</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>
<constant>SPH_GROUPBY_ATTRPAIR</constant>
(<type>integer</type>)
</term>
<listitem>
<simpara>
</simpara>
</listitem>
</varlistentry>
</variablelist>
</para>
</appendix>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/sphinx/configure.xml?view=markup&rev=1.1
Index: phpdoc-ja/reference/sphinx/configure.xml
+++ phpdoc-ja/reference/sphinx/configure.xml
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 1.1 $ -->
<!-- EN-Revision: 1.1 Maintainer: takagi Status: ready -->
<section xml:id="sphinx.installation" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.install;
<para>
&pecl.info;
<link
xlink:href="http://pecl.php.net/package/sphinx">http://pecl.php.net/package/sphinx</link>
</para>
<para>
<filename>./configure</filename> で
libsphinxclient のファイルをうまく見つけられない場合
(標準の場所以外にインストールした場合など) は、
<userinput>./configure
--with-sphinx=$PREFIX</userinput> のように指定しましょう。
$PREFIX は、libsphinxclient のインストール先です。
</para>
</section>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/sphinx/book.xml?view=markup&rev=1.1
Index: phpdoc-ja/reference/sphinx/book.xml
+++ phpdoc-ja/reference/sphinx/book.xml
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 1.1 $ -->
<!-- EN-Revision: 1.1 Maintainer: takagi Status: ready -->
<book xml:id="book.sphinx" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Sphinx クライアント</title>
<titleabbrev>Sphinx</titleabbrev>
<preface xml:id="intro.sphinx">
&reftitle.intro;
<para>
この拡張モジュールは、Sphinx サーチクライアントライブラリ用のバインディングです。
Sphinx はスタンドアロンのサーチエンジンです。
高速で動作し、大きなサイズにも対応した全文検索機能を他のアプリケーションに提供します。
Sphinx は、特に SQL データベースやスクリプト言語との親和性を考慮した設計となっています。
Sphinx およびそのクライアントライブラリは、どちらも
<link xlink:href="&url.sphinx;">公式サイト</link>
から取得できます。
</para>
</preface>
&reference.sphinx.setup;
&reference.sphinx.constants;
&reference.sphinx.examples;
&reference.sphinx.sphinxclient;
</book>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->
| Navigate in group php.doc.ja at sever news.php.net | |
| Previous | Next |
| No Copyright You are free to use Anything |
Site Maintained by PHP Developer
Powered By PHP Consultants |