<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.stream.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'ja',
  ),
  'this' => 
  array (
    0 => 'stream.filters.php',
    1 => 'ストリームフィルタ',
    2 => 'ストリームフィルタ',
  ),
  'up' => 
  array (
    0 => 'book.stream.php',
    1 => 'ストリーム',
  ),
  'prev' => 
  array (
    0 => 'stream.constants.php',
    1 => '定義済み定数',
  ),
  'next' => 
  array (
    0 => 'stream.contexts.php',
    1 => 'ストリームコンテキスト',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'ja',
    'path' => 'reference/stream/filters.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="stream.filters" class="chapter">
 <h1 class="title">ストリームフィルタ</h1>

 <p class="simpara">
  <code class="literal">フィルタ</code> は、ストリームから読み込まれたり、
  あるいは、ストリームから書き込まれたするデータに対して何らかの操作を行う、
  最終段階にあるコードです。
  PHP スクリプトの内部で、
  <span class="function"><a href="function.stream-filter-register.php" class="function">stream_filter_register()</a></span> を使って、
  あるいは拡張モジュールの内部で、カスタムフィルタを作成することができます。
  現在登録されているフィルタの一覧を取得するには、
  <span class="function"><a href="function.stream-get-filters.php" class="function">stream_get_filters()</a></span> をお使いください。
 </p>
</div>
<?php manual_footer($setup); ?>