Sophie

Sophie

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

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

<HTML
><HEAD
><TITLE
>get_defined_functions</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="Function Handling functions"
HREF="ref.funchand.html"><LINK
REL="PREVIOUS"
TITLE="function_exists"
HREF="function.function-exists.html"><LINK
REL="NEXT"
TITLE="register_shutdown_function"
HREF="function.register-shutdown-function.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.function-exists.html"
ACCESSKEY="P"
>Anterior</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="function.register-shutdown-function.html"
ACCESSKEY="N"
>Siguiente</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="function.get-defined-functions"
></A
>get_defined_functions</H1
><DIV
CLASS="refnamediv"
><A
NAME="AEN22425"
></A
><P
>    (PHP 4 &#62;= 4.0.4)</P
>get_defined_functions&nbsp;--&nbsp;
     Returns an array of all defined functions
    </DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN22428"
></A
><H2
>Description</H2
>array <B
CLASS="methodname"
>get_defined_functions</B
> ( void)<BR
></BR
><P
>&#13;     This function returns an multidimensional array containing a list of
     all defined functions, both built-in (internal) and user-defined. The 
     internal functions will be accessible via
     <TT
CLASS="varname"
>$arr["internal"]</TT
>, and the user defined ones using
     <TT
CLASS="varname"
>$arr["user"]</TT
> (see example below).
     <DIV
CLASS="informalexample"
><A
NAME="AEN22437"
></A
><P
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
CELLPADDING="5"
><TR
><TD
><PRE
CLASS="php"
>function myrow($id, $data) {
    return "&#60;tr&#62;&#60;th&#62;$id&#60;/th&#62;&#60;td&#62;$data&#60;/td&#62;&#60;/tr&#62;\n";
}

$arr = get_defined_functions();

print_r($arr);</PRE
></TD
></TR
></TABLE
><P
></P
></DIV
>
    </P
><P
>&#13;     Will output something along the lines of:
     <DIV
CLASS="informalexample"
><A
NAME="AEN22440"
></A
><P
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
CELLPADDING="5"
><TR
><TD
><PRE
CLASS="programlisting"
>Array
(
    [internal] =&#62; Array
        (
            [0] =&#62; zend_version
            [1] =&#62; func_num_args
            [2] =&#62; func_get_arg
            [3] =&#62; func_get_args
            [4] =&#62; strlen
            [5] =&#62; strcmp
            [6] =&#62; strncmp
            ...
            [750] =&#62; bcscale
            [751] =&#62; bccomp
        )

    [user] =&#62; Array
        (
            [0] =&#62; myrow
        )

)</PRE
></TD
></TR
></TABLE
><P
></P
></DIV
>
    </P
><P
>&#13;     See also <A
HREF="function.get-defined-vars.html"
><B
CLASS="function"
>get_defined_vars()</B
></A
> and 
     <A
HREF="function.get-defined-constants.html"
><B
CLASS="function"
>get_defined_constants()</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.function-exists.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.register-shutdown-function.html"
ACCESSKEY="N"
>Siguiente</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>function_exists</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="ref.funchand.html"
ACCESSKEY="U"
>Subir</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>register_shutdown_function</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>