<?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 => 'uk',
  ),
  'this' => 
  array (
    0 => 'stream.filters.php',
    1 => 'Stream Filters',
    2 => 'Stream Filters',
  ),
  'up' => 
  array (
    0 => 'book.stream.php',
    1 => 'Streams',
  ),
  'prev' => 
  array (
    0 => 'stream.constants.php',
    1 => 'Попередньо визначені константи',
  ),
  'next' => 
  array (
    0 => 'stream.contexts.php',
    1 => 'Stream Contexts',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    '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">Stream Filters</h1>

 <p class="simpara">
  A <code class="literal">filter</code> is a final piece of code which may perform
  operations on data as it is being read from or written to a stream.
  Any number of filters may be stacked onto a stream. Custom
  filters can be defined in a PHP script using
  <span class="function"><a href="function.stream-filter-register.php" class="function">stream_filter_register()</a></span> or in an extension.
  To access the list of currently 
  registered filters, use <span class="function"><a href="function.stream-get-filters.php" class="function">stream_get_filters()</a></span>.
 </p>
</div>
<?php manual_footer($setup); ?>