LMPX.COM |
Home | Linux | Mysql | PHP | XML | ||
|
|
|||
From: TAKAGI Masahiro Date: Thu Aug 21 20:07:48 2008 Subject: cvs: phpdoc-ja /appendices reserved.xml /reference/filesystem/functions fileatime.xml filectime.xml filemtime.xml stat.xml touch.xml
/reference/image/functions imagecolorat.xml imagedashedline.xml imagepsfreefont.xml imagesavealpha.xml /reference/info ini.xml
takagi Fri Aug 22 02:07:48 2008 UTC
Modified files:
/phpdoc-ja/reference/info ini.xml
/phpdoc-ja/reference/image/functions imagesavealpha.xml
imagepsfreefont.xml
imagedashedline.xml
imagecolorat.xml
/phpdoc-ja/reference/filesystem/functions touch.xml stat.xml
filemtime.xml
filectime.xml
fileatime.xml
/phpdoc-ja/appendices reserved.xml
Log:
sync with en.
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/info/ini.xml?r1=1.14&r2=1.15&diff_format=u
Index: phpdoc-ja/reference/info/ini.xml
diff -u phpdoc-ja/reference/info/ini.xml:1.14 phpdoc-ja/reference/info/ini.xml:1.15
--- phpdoc-ja/reference/info/ini.xml:1.14 Sat May 17 06:16:33 2008
+++ phpdoc-ja/reference/info/ini.xml Fri Aug 22 02:07:48 2008
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.14 $ -->
-<!-- EN-Revision: 1.22 Maintainer: hirokawa Status: ready -->
+<!-- $Revision: 1.15 $ -->
+<!-- EN-Revision: 1.23 Maintainer: hirokawa Status: ready -->
<!-- CREDITS: takagi -->
<section xml:id="info.configuration" xmlns="http://docbook.org/ns/docbook">
&reftitle.runtime;
@@ -193,6 +193,9 @@
時間を秒単位で指定します。この命令は、いい加減に書かれた
スクリプトがサーバーの負荷を上げることを防止するのに役立ちます。
デフォルトでは、<literal>30</literal> に設定されています。
+ PHP を <link linkend="features.commandline">コマンドライン
+ </link> から実行する場合のデフォルト設定は <literal>0</literal>
+ です。
</para>
<para>
最大実行時間は、システムコール、ストリーム操作等の
@@ -205,7 +208,8 @@
あるいは &php.ini; 上で制限時間を変えるしかありません。
</para>
<para>
- Web サーバによっては、別の設定項目があるかもしれません。たとえば、
+ Web サーバ側でもタイムアウトの設定項目を持ち、
+ その設定で PHP の実行が中断されることもあります。
Apache には <literal>Timeout</literal> ディレクティブ、IIS には
CGI タイムアウト関数があり、どちらもデフォルトで 300 秒に設定されています。
これらの意味については、Web サーバのドキュメントを参照ください。
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/image/functions/imagesavealpha.xml?r1=1.6&r2=1.7&diff_format=u
Index: phpdoc-ja/reference/image/functions/imagesavealpha.xml
diff -u phpdoc-ja/reference/image/functions/imagesavealpha.xml:1.6 phpdoc-ja/reference/image/functions/imagesavealpha.xml:1.7
--- phpdoc-ja/reference/image/functions/imagesavealpha.xml:1.6 Wed Aug 6 20:30:58 2008
+++ phpdoc-ja/reference/image/functions/imagesavealpha.xml Fri Aug 22 02:07:48 2008
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.6 $ -->
-<!-- EN-Revision: 1.14 Maintainer: takagi Status: ready -->
+<!-- $Revision: 1.7 $ -->
+<!-- EN-Revision: 1.15 Maintainer: takagi Status: ready -->
<refentry xml:id="function.imagesavealpha" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>imagesavealpha</refname>
@@ -53,6 +53,34 @@
&return.success;
</para>
</refsect1>
+ <refsect1 role="examples">
+ &reftitle.examples;
+ <para>
+ <example>
+ <title><function>imagesavealpha</function> の例</title>
+ <programlisting role="php">
+<![CDATA[
+<?php
+// アルファチャネルつきの png 画像を読み込みます
+$png = imagecreatefrompng('./alphachannel_example.png');
+
+// 何らかの操作を行います
+
+// アルファブレンディングを無効にし、アルファフラグを設定します
+imagealphablending($png, false);
+imagesavealpha($png, true);
+
+// 画像をブラウザに出力します
+header('Content-Type: image/png');
+
+imagepng($png);
+imagedestroy($png);
+?>
+]]>
+ </programlisting>
+ </example>
+ </para>
+ </refsect1>
<refsect1 role="notes">
&reftitle.notes;
¬e.gd.2;
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/image/functions/imagepsfreefont.xml?r1=1.9&r2=1.10&diff_format=u
Index: phpdoc-ja/reference/image/functions/imagepsfreefont.xml
diff -u phpdoc-ja/reference/image/functions/imagepsfreefont.xml:1.9 phpdoc-ja/reference/image/functions/imagepsfreefont.xml:1.10
--- phpdoc-ja/reference/image/functions/imagepsfreefont.xml:1.9 Wed Aug 6 20:30:58 2008
+++ phpdoc-ja/reference/image/functions/imagepsfreefont.xml Fri Aug 22 02:07:48 2008
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.9 $ -->
-<!-- EN-Revision: 1.12 Maintainer: hirokawa Status: ready -->
+<!-- $Revision: 1.10 $ -->
+<!-- EN-Revision: 1.13 Maintainer: hirokawa Status: ready -->
<!-- CREDITS: shimooka -->
<refentry xml:id="function.imagepsfreefont" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -39,6 +39,27 @@
&return.success;
</para>
</refsect1>
+ <refsect1 role="examples">
+ &reftitle.examples;
+ <para>
+ <example>
+ <title><function>imagepsfreefont</function> の例</title>
+ <programlisting role="php">
+<![CDATA[
+<?php
+// .pfb フォントファイルを読み込みます
+$font = imagepsloadfont('./bchbi.pfb');
+
+// ここでフォントに対してなんらかの操作を行います
+
+// フォントをメモリから開放します
+imagepsfreefont($font);
+?>
+]]>
+ </programlisting>
+ </example>
+ </para>
+ </refsect1>
<refsect1 role="notes">
&reftitle.notes;
¬e.config.t1lib;
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/image/functions/imagedashedline.xml?r1=1.12&r2=1.13&diff_format=u
Index: phpdoc-ja/reference/image/functions/imagedashedline.xml
diff -u phpdoc-ja/reference/image/functions/imagedashedline.xml:1.12 phpdoc-ja/reference/image/functions/imagedashedline.xml:1.13
--- phpdoc-ja/reference/image/functions/imagedashedline.xml:1.12 Wed Aug 20 20:49:08 2008
+++ phpdoc-ja/reference/image/functions/imagedashedline.xml Fri Aug 22 02:07:48 2008
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.12 $ -->
-<!-- EN-Revision: 1.11 Maintainer: hirokawa Status: ready -->
+<!-- $Revision: 1.13 $ -->
+<!-- EN-Revision: 1.12 Maintainer: hirokawa Status: ready -->
<!-- CREDITS: shimooka -->
<refentry xml:id="function.imagedashedline" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
@@ -126,7 +126,7 @@
IMG_COLOR_TRANSPARENT,
IMG_COLOR_TRANSPARENT,
IMG_COLOR_TRANSPARENT
- )
+ );
imagesetstyle($im, $style);
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/image/functions/imagecolorat.xml?r1=1.7&r2=1.8&diff_format=u
Index: phpdoc-ja/reference/image/functions/imagecolorat.xml
diff -u phpdoc-ja/reference/image/functions/imagecolorat.xml:1.7 phpdoc-ja/reference/image/functions/imagecolorat.xml:1.8
--- phpdoc-ja/reference/image/functions/imagecolorat.xml:1.7 Wed Aug 6 20:30:59 2008
+++ phpdoc-ja/reference/image/functions/imagecolorat.xml Fri Aug 22 02:07:48 2008
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.7 $ -->
-<!-- EN-Revision: 1.9 Maintainer: hirokawa Status: ready -->
+<!-- $Revision: 1.8 $ -->
+<!-- EN-Revision: 1.10 Maintainer: hirokawa Status: ready -->
<refentry xml:id="function.imagecolorat" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>imagecolorat</refname>
@@ -67,6 +67,8 @@
$r = ($rgb >> 16) & 0xFF;
$g = ($rgb >> 8) & 0xFF;
$b = $rgb & 0xFF;
+
+var_dump($r, $g, $b);
?>
]]>
</programlisting>
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/filesystem/functions/touch.xml?r1=1.10&r2=1.11&diff_format=u
Index: phpdoc-ja/reference/filesystem/functions/touch.xml
diff -u phpdoc-ja/reference/filesystem/functions/touch.xml:1.10 phpdoc-ja/reference/filesystem/functions/touch.xml:1.11
--- phpdoc-ja/reference/filesystem/functions/touch.xml:1.10 Wed Aug 20 20:49:08 2008
+++ phpdoc-ja/reference/filesystem/functions/touch.xml Fri Aug 22 02:07:48 2008
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.10 $ -->
-<!-- EN-Revision: 1.15 Maintainer: hirokawa Status: ready -->
+<!-- $Revision: 1.11 $ -->
+<!-- EN-Revision: 1.16 Maintainer: hirokawa Status: ready -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.touch">
<refnamediv>
<refname>touch</refname>
@@ -115,6 +115,11 @@
<refsect1 role="notes">
&reftitle.notes;
+ <note>
+ <para>
+ 時刻の精度は、ファイルシステムによって異なることがあります。
+ </para>
+ </note>
<warning>
<para>
PHP 5.3.0 より前のバージョンでは、Windows 環境のもとでは
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/filesystem/functions/stat.xml?r1=1.13&r2=1.14&diff_format=u
Index: phpdoc-ja/reference/filesystem/functions/stat.xml
diff -u phpdoc-ja/reference/filesystem/functions/stat.xml:1.13 phpdoc-ja/reference/filesystem/functions/stat.xml:1.14
--- phpdoc-ja/reference/filesystem/functions/stat.xml:1.13 Wed Aug 20 20:49:08 2008
+++ phpdoc-ja/reference/filesystem/functions/stat.xml Fri Aug 22 02:07:48 2008
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.13 $ -->
-<!-- EN-Revision: 1.19 Maintainer: hirokawa Status: ready -->
+<!-- $Revision: 1.14 $ -->
+<!-- EN-Revision: 1.20 Maintainer: hirokawa Status: ready -->
<!-- CREDITS: shimooka -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.stat">
<refnamediv>
@@ -171,6 +171,11 @@
<refsect1 role="notes">
&reftitle.notes;
+ <note>
+ <para>
+ 時刻の精度は、ファイルシステムによって異なることがあります。
+ </para>
+ </note>
¬e.clearstatcache;
&tip.fopen-wrapper.stat;
</refsect1>
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/filesystem/functions/filemtime.xml?r1=1.10&r2=1.11&diff_format=u
Index: phpdoc-ja/reference/filesystem/functions/filemtime.xml
diff -u phpdoc-ja/reference/filesystem/functions/filemtime.xml:1.10 phpdoc-ja/reference/filesystem/functions/filemtime.xml:1.11
--- phpdoc-ja/reference/filesystem/functions/filemtime.xml:1.10 Sat Jul 28 20:51:51 2007
+++ phpdoc-ja/reference/filesystem/functions/filemtime.xml Fri Aug 22 02:07:48 2008
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.10 $ -->
-<!-- EN-Revision: 1.8 Maintainer: hirokawa Status: ready -->
+<!-- $Revision: 1.11 $ -->
+<!-- EN-Revision: 1.9 Maintainer: hirokawa Status: ready -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.filemtime">
<refnamediv>
<refname>filemtime</refname>
@@ -67,6 +67,11 @@
<refsect1 role="notes">
&reftitle.notes;
+ <note>
+ <para>
+ 時刻の精度は、ファイルシステムによって異なることがあります。
+ </para>
+ </note>
¬e.clearstatcache;
&tip.fopen-wrapper.stat;
</refsect1>
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/filesystem/functions/filectime.xml?r1=1.9&r2=1.10&diff_format=u
Index: phpdoc-ja/reference/filesystem/functions/filectime.xml
diff -u phpdoc-ja/reference/filesystem/functions/filectime.xml:1.9 phpdoc-ja/reference/filesystem/functions/filectime.xml:1.10
--- phpdoc-ja/reference/filesystem/functions/filectime.xml:1.9 Sat Jul 28 20:51:51 2007
+++ phpdoc-ja/reference/filesystem/functions/filectime.xml Fri Aug 22 02:07:48 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 xmlns="http://docbook.org/ns/docbook" xml:id="function.filectime">
<refnamediv>
@@ -85,6 +85,11 @@
Unix ファイルの作成時間は存在しません。
</para>
</note>
+ <note>
+ <para>
+ 時刻の精度は、ファイルシステムによって異なることがあります。
+ </para>
+ </note>
¬e.clearstatcache;
&tip.fopen-wrapper.stat;
</refsect1>
http://cvs.php.net/viewvc.cgi/phpdoc-ja/reference/filesystem/functions/fileatime.xml?r1=1.9&r2=1.10&diff_format=u
Index: phpdoc-ja/reference/filesystem/functions/fileatime.xml
diff -u phpdoc-ja/reference/filesystem/functions/fileatime.xml:1.9 phpdoc-ja/reference/filesystem/functions/fileatime.xml:1.10
--- phpdoc-ja/reference/filesystem/functions/fileatime.xml:1.9 Sat Jul 28 20:51:51 2007
+++ phpdoc-ja/reference/filesystem/functions/fileatime.xml Fri Aug 22 02:07:48 2008
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.9 $ -->
-<!-- EN-Revision: 1.10 Maintainer: hirokawa Status: ready -->
+<!-- $Revision: 1.10 $ -->
+<!-- EN-Revision: 1.11 Maintainer: hirokawa Status: ready -->
<!-- CREDITS: shimooka -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.fileatime">
<refnamediv>
@@ -83,6 +83,11 @@
このようなファイルシステムでは、この関数は使用できません。
</para>
</note>
+ <note>
+ <para>
+ 時刻の精度は、ファイルシステムによって異なることがあります。
+ </para>
+ </note>
¬e.clearstatcache;
&tip.fopen-wrapper.stat;
</refsect1>
http://cvs.php.net/viewvc.cgi/phpdoc-ja/appendices/reserved.xml?r1=1.35&r2=1.36&diff_format=u
Index: phpdoc-ja/appendices/reserved.xml
diff -u phpdoc-ja/appendices/reserved.xml:1.35 phpdoc-ja/appendices/reserved.xml:1.36
--- phpdoc-ja/appendices/reserved.xml:1.35 Wed Aug 20 20:49:09 2008
+++ phpdoc-ja/appendices/reserved.xml Fri Aug 22 02:07:48 2008
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.35 $ -->
-<!-- EN-Revision: 1.75 Maintainer: hirokawa Status: ready -->
+<!-- $Revision: 1.36 $ -->
+<!-- EN-Revision: 1.77 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>
@@ -29,46 +29,40 @@
<tbody>
<row>
<entry>
- <link linkend="language.operators.logical">and</link>
- </entry>
- <entry>
- <link linkend="language.operators.logical">or</link>
+ <link linkend="language.oop5.abstract">abstract</link> (PHP 5 以降)
</entry>
<entry>
- <link linkend="language.operators.logical">xor</link>
+ <link linkend="language.operators.logical">and</link>
</entry>
<entry>
- <link linkend="language.constants.predefined">__FILE__</link>
+ <function>array</function>
</entry>
<entry>
- <link linkend="reserved.classes.php5">exception</link> (PHP 5)
+ <link linkend="control-structures.foreach">as</link>
</entry>
<entry>
- <link linkend="reserved.classes.php5">php_user_filter</link>
+ <link linkend="control-structures.break">break</link>
</entry>
</row>
<row>
<entry>
- <link linkend="language.constants.predefined">__LINE__</link>
+ <link linkend="control-structures.switch">case</link>
</entry>
<entry>
- <function>array</function>
+ <link linkend="language.exceptions">catch</link> (PHP 5 以降)
</entry>
<entry>
- <link linkend="control-structures.foreach">as</link>
+ cfunction (PHP 4 のみ)
</entry>
<entry>
- <link linkend="control-structures.break">break</link>
+ <link linkend="keyword.class">class</link>
</entry>
<entry>
- <link linkend="control-structures.switch">case</link>
+ <link linkend="language.oop5.cloning">clone</link> (PHP 5 以降)
</entry>
</row>
<row>
<entry>
- <link linkend="keyword.class">class</link>
- </entry>
- <entry>
<link linkend="language.oop5.constants">const</link>
</entry>
<entry>
@@ -80,28 +74,17 @@
<entry>
<link linkend="control-structures.switch">default</link>
</entry>
- </row>
- <row>
- <entry>
- <function>die</function>
- </entry>
<entry>
<link linkend="control-structures.do.while">do</link>
</entry>
- <entry>
- <function>echo</function>
- </entry>
+ </row>
+ <row>
<entry>
<link linkend="control-structures.else">else</link>
</entry>
<entry>
<link linkend="control-structures.elseif">elseif</link>
</entry>
- </row>
- <row>
- <entry>
- <function>empty</function>
- </entry>
<entry>
<link linkend="control-structures.declare">enddeclare</link>
</entry>
@@ -111,11 +94,11 @@
<entry>
<link linkend="control-structures.alternative-syntax">endforeach</link>
</entry>
+ </row>
+ <row>
<entry>
<link linkend="control-structures.alternative-syntax">endif</link>
</entry>
- </row>
- <row>
<entry>
<link linkend="control-structures.alternative-syntax">endswitch</link>
</entry>
@@ -123,13 +106,10 @@
<link linkend="control-structures.alternative-syntax">endwhile</link>
</entry>
<entry>
- <function>eval</function>
- </entry>
- <entry>
- <function>exit</function>
+ <link linkend="keyword.class">extends</link>
</entry>
<entry>
- <link linkend="keyword.class">extends</link>
+ <link linkend="language.oop5.final">final</link> (PHP 5 以降)
</entry>
</row>
<row>
@@ -146,49 +126,63 @@
<link linkend="language.variables.scope">global</link>
</entry>
<entry>
- <link linkend="control-structures.if">if</link>
+ goto (PHP 5.3 以降)
</entry>
</row>
<row>
<entry>
- <function>include</function>
+ <link linkend="control-structures.if">if</link>
</entry>
<entry>
- <function>include_once</function>
+ <link linkend="language.oop5.interfaces">implements</link> (PHP 5 以降)
</entry>
<entry>
- <function>isset</function>
+ <link linkend="language.oop5.interfaces">interface</link> (PHP 5 以降)
</entry>
<entry>
- <function>list</function>
+ <link linkend="language.operators.type">instanceof</link> (PHP 5 以降)
+ </entry>
+ </row>
+ <row>
+ <entry>
+ <link linkend="language.namespaces">namespace</link> (PHP 5.3 以降)
</entry>
<entry>
<link linkend="keyword.class">new</link>
</entry>
+ <entry>
+ old_function (PHP 4 のみ)
+ </entry>
+ <entry>
+ <link linkend="language.operators.logical">or</link>
+ </entry>
+ <entry>
+ <link linkend="language.oop5.visibility">private</link> (PHP 5 以降)
+ </entry>
</row>
<row>
<entry>
- <function>print</function>
+ <link linkend="language.oop5.visibility">protected</link> (PHP 5 以降)
</entry>
<entry>
- <function>require</function>
+ <link linkend="language.oop5.visibility">public</link> (PHP 5 以降)
</entry>
<entry>
- <function>require_once</function>
+ <link linkend="language.variables.scope">static</link>
</entry>
<entry>
- <function>return</function>
+ <link linkend="control-structures.switch">switch</link>
</entry>
<entry>
- <link linkend="language.variables.scope">static</link>
+ <link linkend="keyword.class">this</link> (PHP 5 以降)
</entry>
</row>
<row>
<entry>
- <link linkend="control-structures.switch">switch</link>
+ <link linkend="language.exceptions">throw</link> (PHP 5 以降)
</entry>
<entry>
- <function>unset</function>
+ <link linkend="language.exceptions">try</link> (PHP 5 以降)
</entry>
<entry>
<link linkend="language.namespaces">use</link>
@@ -202,83 +196,109 @@
</row>
<row>
<entry>
- <link linkend="language.constants.predefined">__FUNCTION__</link>
+ <link linkend="language.operators.logical">xor</link>
</entry>
<entry>
+ </entry>
+ <entry>
+ </entry>
+ <entry>
+ </entry>
+ <entry>
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ <table>
+ <title>コンパイル時の定数</title>
+ <tgroup cols="5">
+ <tbody>
+ <row>
+ <entry>
<link linkend="language.constants.predefined">__CLASS__</link>
</entry>
+ <entry>
+ <link linkend="language.constants.predefined">__DIR__</link> (PHP 5.3 以降)
+ </entry>
<entry>
- <link linkend="language.constants.predefined">__METHOD__</link>
+ <link linkend="language.constants.predefined">__FILE__</link>
</entry>
<entry>
- <link linkend="language.oop5.final">final</link> (PHP 5 以降)
+ <link linkend="language.constants.predefined">__FUNCTION__</link>
</entry>
<entry>
- <link linkend="reserved.classes.php5">php_user_filter</link> (PHP 5 以降)
+ <link linkend="language.constants.predefined">__METHOD__</link>
</entry>
</row>
<row>
<entry>
- <link linkend="language.oop5.interfaces">interface</link> (PHP 5 以降)
+ <link linkend="language.namespaces">__NAMESPACE__</link> (PHP 5.3 以降)
</entry>
<entry>
- <link linkend="language.oop5.interfaces">implements</link> (PHP 5 以降)
</entry>
<entry>
- <link linkend="language.operators.type">instanceof</link> (PHP 5 以降)
</entry>
<entry>
- <link linkend="language.oop5.visibility">public</link> (PHP 5 以降)
</entry>
<entry>
- <link linkend="language.oop5.visibility">private</link> (PHP 5 以降)
</entry>
</row>
+ </tbody>
+ </tgroup>
+ </table>
+ <table>
+ <title>言語の定数</title>
+ <tgroup cols="5">
+ <tbody>
<row>
<entry>
- <link linkend="language.oop5.visibility">protected</link> (PHP 5 以降)
+ <function>die</function>
</entry>
<entry>
- <link linkend="language.oop5.abstract">abstract</link> (PHP 5 以降)
+ <function>echo</function>
</entry>
<entry>
- <link linkend="language.oop5.cloning">clone</link> (PHP 5 以降)
+ <function>empty</function>
</entry>
<entry>
- <link linkend="language.exceptions">try</link> (PHP 5 以降)
+ <function>exit</function>
</entry>
<entry>
- <link linkend="language.exceptions">catch</link> (PHP 5 以降)
+ <function>eval</function>
</entry>
</row>
<row>
<entry>
- <link linkend="language.exceptions">throw</link> (PHP 5 以降)
+ <function>include</function>
</entry>
<entry>
- cfunction (PHP 4 のみ)
+ <function>include_once</function>
</entry>
<entry>
- old_function (PHP 4 のみ)
+ <function>isset</function>
</entry>
<entry>
- <link linkend="keyword.class">this</link> (PHP 5 以降)
+ <function>list</function>
</entry>
- <entry>
- <link linkend="language.constants.predefined">__DIR__</link> (PHP 5.3 以降)
+ <entry>
+ <function>require</function>
</entry>
</row>
<row>
<entry>
- <link linkend="language.namespaces">__NAMESPACE__</link> (PHP 5.3 以降)
+ <function>require_once</function>
</entry>
<entry>
- <link linkend="language.namespaces">namespace</link> (PHP 5.3 以降)
+ <function>return</function>
</entry>
<entry>
- goto (PHP 5.3 以降)
+ <function>print</function>
</entry>
- <entry>
+ <entry>
+ <function>unset</function>
+ </entry>
+ <entry>
</entry>
</row>
</tbody>
| 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 |