mirror of
https://github.com/php/doc-ja.git
synced 2026-03-23 22:52:11 +01:00
139 lines
3.9 KiB
XML
139 lines
3.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: 0fb27c54eaba36a67d49275d88f2108086703b31 Maintainer: takagi Status: ready -->
|
|
<!-- CREDITS: hirokawa -->
|
|
<refentry xml:id="function.ob-gzhandler" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>ob_gzhandler</refname>
|
|
<refpurpose>出力バッファを gzip 圧縮するための ob_start コールバック関数</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type class="union"><type>string</type><type>false</type></type><methodname>ob_gzhandler</methodname>
|
|
<methodparam><type>string</type><parameter>data</parameter></methodparam>
|
|
<methodparam><type>int</type><parameter>flags</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
<function>ob_gzhandler</function> は <function>ob_start</function>
|
|
用のコールバック関数として使用されることを意図したもので、
|
|
圧縮されたページをサポートしている web ブラウザに対して
|
|
gz エンコードされたデータを送信することを容易にします。
|
|
<function>ob_gzhandler</function> は
|
|
実際に圧縮されたデータを送信する前にブラウザがサポートする content
|
|
encoding の種類("gzip"、"deflate" またはなし)を調べ、それに基づいて
|
|
出力を返します。すべてのブラウザがサポートされています。
|
|
というのも、ブラウザは、
|
|
自分が圧縮されたページをサポートするかどうかを表す
|
|
適切なヘッダを送信することになっているからです。
|
|
圧縮されたページをブラウザがサポートしていない場合、
|
|
この関数は &false; を返します。
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>data</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>flags</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title><function>ob_gzhandler</function> の例</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
|
|
ob_start("ob_gzhandler");
|
|
|
|
?>
|
|
<html>
|
|
<body>
|
|
<p>このページは圧縮されます。</p>
|
|
</body>
|
|
</html>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="notes">
|
|
&reftitle.notes;
|
|
<note>
|
|
<para>
|
|
<function>ob_gzhandler</function> は、<link linkend="ref.zlib">zlib</link>
|
|
拡張モジュールが必要です。
|
|
</para>
|
|
</note>
|
|
<note>
|
|
<para>
|
|
<function>ob_gzhandler</function> と
|
|
<link linkend="ini.zlib.output-compression">
|
|
zlib.output_compression</link> の両方を使用することはできません。
|
|
また、<link linkend="ini.zlib.output-compression">
|
|
zlib.output_compression</link> を使用すると、それは
|
|
<function>ob_gzhandler</function>
|
|
よりも優先されることに注意してください。
|
|
</para>
|
|
</note>
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><function>ob_start</function></member>
|
|
<member><function>ob_end_flush</function></member>
|
|
</simplelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
</refentry>
|
|
<!-- 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
|
|
-->
|