Sophie

Sophie

distrib > Mandriva > 9.1 > ppc > by-pkgid > a34ed6838d4b29d38abd504392a4a797 > files > 2525

php-manual-es-4.3.0-2mdk.noarch.rpm

<HTML
><HEAD
><TITLE
>stream_get_filters</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
REL="HOME"
TITLE="Manual de PHP"
HREF="index.html"><LINK
REL="UP"
TITLE="Stream functions"
HREF="ref.stream.html"><LINK
REL="PREVIOUS"
TITLE="stream_filter_prepend"
HREF="function.stream-filter-prepend.html"><LINK
REL="NEXT"
TITLE="stream_get_meta_data"
HREF="function.stream-get-meta-data.html"><META
HTTP-EQUIV="Content-type"
CONTENT="text/html; charset=ISO-8859-1"></HEAD
><BODY
CLASS="refentry"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>Manual de PHP</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="function.stream-filter-prepend.html"
ACCESSKEY="P"
>Anterior</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="function.stream-get-meta-data.html"
ACCESSKEY="N"
>Siguiente</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="function.stream-get-filters"
></A
>stream_get_filters</H1
><DIV
CLASS="refnamediv"
><A
NAME="AEN73629"
></A
><P
>    (PHP 5 CVS only)</P
>stream_get_filters&nbsp;--&nbsp;Retrieve list of registered filters</DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN73632"
></A
><H2
>Description</H2
>array <B
CLASS="methodname"
>stream_get_filters</B
> ( void)<BR
></BR
><P
>&#13;     Returns an indexed array containing the name of all stream filters
     available on the running system.
    </P
><P
>&#13;     <TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
CLASS="EXAMPLE"
><TR
><TD
><DIV
CLASS="example"
><A
NAME="AEN73640"
></A
><P
><B
>Ejemplo 1. Using <B
CLASS="function"
>stream_get_filters()</B
></B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
CELLPADDING="5"
><TR
><TD
><PRE
CLASS="php"
>&#60;?php
$streamlist = stream_get_filters();
print_r($streamlist);

/* Output will be similar to the following
   Note: there may be more or fewer
         filters in your version of PHP
   ---------------------------------------
Array (
  [0] =&#62; string.rot13
  [1] =&#62; string.toupper
  [2] =&#62; string.tolower
  [3] =&#62; string.base64
  [4] =&#62; string.quoted-printable
)
 */
?&#62;</PRE
></TD
></TR
></TABLE
></DIV
></TD
></TR
></TABLE
>
    </P
><P
>&#13;     See Also:
     <A
HREF="function.stream-register-filter.html"
><B
CLASS="function"
>stream_register_filter()</B
></A
>, and
     <A
HREF="function.stream-get-wrappers.html"
><B
CLASS="function"
>stream_get_wrappers()</B
></A
>
    </P
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="function.stream-filter-prepend.html"
ACCESSKEY="P"
>Anterior</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Inicio</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="function.stream-get-meta-data.html"
ACCESSKEY="N"
>Siguiente</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>stream_filter_prepend</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="ref.stream.html"
ACCESSKEY="U"
>Subir</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>stream_get_meta_data</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>