<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.stream.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'ja',
  ),
  'this' => 
  array (
    0 => 'function.stream-get-filters.php',
    1 => 'stream_get_filters',
    2 => '登録されているフィルタのリストを取得する',
  ),
  'up' => 
  array (
    0 => 'ref.stream.php',
    1 => 'ストリーム 関数',
  ),
  'prev' => 
  array (
    0 => 'function.stream-get-contents.php',
    1 => 'stream_get_contents',
  ),
  'next' => 
  array (
    0 => 'function.stream-get-line.php',
    1 => 'stream_get_line',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'ja',
    'path' => 'reference/stream/functions/stream-get-filters.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.stream-get-filters" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">stream_get_filters</h1>
  <p class="verinfo">(PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">stream_get_filters</span> &mdash; <span class="dc-title">登録されているフィルタのリストを取得する</span></p>
 
 </div>
 <div class="refsect1 description" id="refsect1-function.stream-get-filters-description">
  <h3 class="title">説明</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>stream_get_filters</strong></span>(): <span class="type"><a href="language.types.array.php" class="type array">array</a></span></div>

  <p class="simpara">
   実行中のシステムに登録されているフィルタの一覧を取得します。
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.stream-get-filters-parameters">
  <h3 class="title">パラメータ</h3>
  <p class="para">この関数にはパラメータはありません。</p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.stream-get-filters-returnvalues">
  <h3 class="title">戻り値</h3>
  <p class="para">
   使用可能なすべてのストリームフィルタの名前を含む配列を返します。
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.stream-get-filters-examples">
  <h3 class="title">例</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>例1 <span class="function"><strong>stream_get_filters()</strong></span> を使用する</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$streamlist </span><span style="color: #007700">= </span><span style="color: #0000BB">stream_get_filters</span><span style="color: #007700">();<br /></span><span style="color: #0000BB">print_r</span><span style="color: #007700">(</span><span style="color: #0000BB">$streamlist</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

    <div class="example-contents"><p>上の例の出力は、
たとえば以下のようになります。</p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">Array (
  [0] =&gt; string.rot13
  [1] =&gt; string.toupper
  [2] =&gt; string.tolower
  [3] =&gt; string.base64
  [4] =&gt; string.quoted-printable
)</pre>
</div>
    </div>
   </div>
  </p>
 </div>

  
 <div class="refsect1 seealso" id="refsect1-function.stream-get-filters-seealso">
  <h3 class="title">参考</h3>
  <ul class="simplelist">
   <li><span class="function"><a href="function.stream-filter-register.php" class="function" rel="rdfs-seeAlso">stream_filter_register()</a> - ユーザー定義のストリームフィルタを登録する</span></li>
   <li><span class="function"><a href="function.stream-get-wrappers.php" class="function" rel="rdfs-seeAlso">stream_get_wrappers()</a> - 登録されているストリームのラッパーのリストを取得する</span></li>
  </ul>
 </div>


</div><?php manual_footer($setup); ?>