1
0
mirror of https://github.com/php/doc-ja.git synced 2026-04-24 08:28:13 +02:00
Files
archived-doc-ja/reference/http/configuration.xml
T
TAKAGI Masahiro 2052edc414 sync with en.
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@323731 c90b9560-bf6c-de11-be94-00142212c4b1
2012-03-01 21:06:20 +00:00

264 lines
8.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: f052ac1bd73549125c3fc3dc68a36d4b0608a16d Maintainer: takagi Status: ready -->
<section xml:id="http.configuration" xmlns="http://docbook.org/ns/docbook">
&reftitle.runtime;
&extension.runtime;
<para>
<table>
<title>HTTP 設定オプション</title>
<tgroup cols="4">
<thead>
<row>
<entry>&Name;</entry>
<entry>&Default;</entry>
<entry>&Changeable;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
<row xml:id="http.configuration.etag.mode">
<entry>http.etag.mode</entry>
<entry>"MD5"</entry>
<entry>PHP_INI_ALL</entry>
<entry>
ETag の生成に使用するハッシュアルゴリズム。MD5、SHA1 および CRC32
が常に使用可能です。<link linkend="ref.hash">hash</link>
拡張モジュールが有効な場合は、この拡張モジュールがサポートする
任意のハッシュアルゴリズムを使用可能です。
</entry>
</row>
<row xml:id="http.configuration.log.cache">
<entry>http.log.cache</entry>
<entry>""</entry>
<entry>PHP_INI_ALL</entry>
<entry>
ログファイルへのパス (あるいはストリームラッパーの url)。
キャッシュにヒットした場合にここに書き込みます。
</entry>
</row>
<row xml:id="http.configuration.log.redirect">
<entry>http.log.redirect</entry>
<entry>""</entry>
<entry>PHP_INI_ALL</entry>
<entry>
ログファイルへのパス (あるいはストリームラッパーの url)。
リダイレクトした場合にここに書き込みます。
</entry>
</row>
<row xml:id="http.configuration.log.not-found">
<entry>http.log.not_found</entry>
<entry>""</entry>
<entry>PHP_INI_ALL</entry>
<entry>
ログファイルへのパス (あるいはストリームラッパーの url)。
"file not found" エラーが発生した場合にここに書き込みます。
</entry>
</row>
<row xml:id="http.configuration.log.allowed-methods">
<entry>http.log.allowed_methods</entry>
<entry>""</entry>
<entry>PHP_INI_ALL</entry>
<entry>
ログファイルへのパス (あるいはストリームラッパーの url)。
"allowed methods" に違反した場合にここに書き込みます。
</entry>
</row>
<row xml:id="http.configuration.log.composite">
<entry>http.log.composite</entry>
<entry>""</entry>
<entry>PHP_INI_ALL</entry>
<entry>
ログファイルへのパス (あるいはストリームラッパーの url)。
すべてのイベントをここに書き込みます。
</entry>
</row>
<row xml:id="http.configuration.request.methods.allowed">
<entry>http.request.methods.allowed</entry>
<entry>""</entry>
<entry>PHP_INI_ALL</entry>
<entry>
許可するリクエストメソッド。ここに挙げた以外のリクエストメソッドを
クライアントが発行した場合は、ステータス "405 Method not allowed"
で PHP が終了します。
&see.http.configuration.force_exit;
</entry>
</row>
<row xml:id="http.configuration.request.methods.custom">
<entry>http.request.methods.custom</entry>
<entry>""</entry>
<entry>PHP_INI_PERDIR|PHP_INI_SYSTEM</entry>
<entry>
独自のリクエストメソッド。非標準のリクエストメソッドを使用したい場合は、
これを INI 設定あるいは <function>http_request_method_register</function>
で指定します。
</entry>
</row>
<row xml:id="http.configuration.request.datashare.cookie">
<entry>http.request.datashare.cookie</entry>
<entry>"0"</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry>
グローバルの <classname>HttpRequestDataShare</classname>
がデフォルトでクッキー情報を共有するかどうか。
</entry>
</row>
<row xml:id="http.configuration.request.datashare.dns">
<entry>http.request.datashare.dns</entry>
<entry>"1"</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry>
グローバルの <classname>HttpRequestDataShare</classname>
がデフォルトで名前解決情報を共有するかどうか。
</entry>
</row>
<row xml:id="http.configuration.request.datashare.ssl">
<entry>http.request.datashare.ssl</entry>
<entry>"0"</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry>
グローバルの <classname>HttpRequestDataShare</classname>
がデフォルトで SSL セッション情報を共有するかどうか。
これは、まだ libcurl で実装されていません。
</entry>
</row>
<row xml:id="http.configuration.request.datashare.connect">
<entry>http.request.datashare.connect</entry>
<entry>"0"</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry>
グローバルの <classname>HttpRequestDataShare</classname>
がデフォルトで接続情報を共有するかどうか。
これは、まだ libcurl で実装されていません。
</entry>
</row>
<row xml:id="http.configuration.persistent.handles.limit">
<entry>http.persistent.handles.limit</entry>
<entry>"-1"</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry>
持続させるハンドルの最大数。
</entry>
</row>
<row xml:id="http.configuration.persistent.handles.ident">
<entry>http.persistent.handles.ident</entry>
<entry>"GLOBAL"</entry>
<entry>PHP_INI_ALL</entry>
<entry>
持続ハンドルの ident。
</entry>
</row>
<row xml:id="http.configuration.send.inflate.start-auto">
<entry>http.send.inflate.start_auto</entry>
<entry>"0"</entry>
<entry>PHP_INI_PERDIR|PHP_INI_SYSTEM</entry>
<entry>
inflate 出力ハンドラを自動的に開始するかどうか。
</entry>
</row>
<row xml:id="http.configuration.send.inflate.start-flags">
<entry>http.send.inflate.start_flags</entry>
<entry>"0"</entry>
<entry>PHP_INI_ALL</entry>
<entry>
inflate 出力ハンドラの初期化設定。
</entry>
</row>
<row xml:id="http.configuration.send.deflate.start-auto">
<entry>http.send.deflate.start_auto</entry>
<entry>"0"</entry>
<entry>PHP_INI_PERDIR|PHP_INI_SYSTEM</entry>
<entry>
deflate 出力ハンドラを自動的に開始するかどうか。
</entry>
</row>
<row xml:id="http.configuration.send.deflate.start-flags">
<entry>http.send.deflate.start_flags</entry>
<entry>"0"</entry>
<entry>PHP_INI_ALL</entry>
<entry>
deflate 出力ハンドラの初期化設定。
<link linkend="http.constants.deflate">deflate 定数</link>
を参照ください。
</entry>
</row>
<row xml:id="http.configuration.send.not-found-404">
<entry>http.send.not_found_404</entry>
<entry>"1"</entry>
<entry>PHP_INI_ALL</entry>
<entry>
<function>http_send_file</function> が指定したファイルを見つけられなかった場合に
自動的に "404 Not found" で終了するかどうか。
&see.http.configuration.force_exit;
</entry>
</row>
<row xml:id="http.configuration.only-exceptions">
<entry>http.only_exceptions</entry>
<entry>"0"</entry>
<entry>PHP_INI_ALL</entry>
<entry>
すべての notices/warnings/errors
を例外としてスローするかどうか。
</entry>
</row>
<row xml:id="http.configuration.force-exit">
<entry>http.force_exit</entry>
<entry>"1"</entry>
<entry>PHP_INI_ALL</entry>
<entry>
"exits with a status of..." が発生するたびに、
通常はスクリプトの実行を終了します。このオプションを無効にすると、
廃棄用 (dev/null) の出力ハンドラを開始し、
スクリプトをそのまま続行します。
</entry>
</row>
</tbody>
</tgroup>
</table>
</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:"~/.phpdoc/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
-->