Sophie

Sophie

distrib > PLD > ac > amd64 > media > dist > by-pkgid > dd8ef74e7a184506d40e4328053fb785 > files > 929

php-manual-ro-20051028-1.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML
><HEAD
><TITLE
>get_defined_functions</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
REL="HOME"
TITLE="Manual 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-2"></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 PHP</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="function.function-exists.html"
ACCESSKEY="P"
>Înapoi</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"
>Înainte</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="AEN32478"
></A
><P
>    (PHP 4 &#62;= 4.0.4, PHP 5)</P
>get_defined_functions&nbsp;--&nbsp;
     Returns an array of all defined functions
    </DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN32481"
></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
     <VAR
CLASS="varname"
>$arr["internal"]</VAR
>, and the user defined ones using
     <VAR
CLASS="varname"
>$arr["user"]</VAR
> (see example below).
    </P
><P
>&#13;     <DIV
CLASS="informalexample"
><P
></P
><A
NAME="AEN32491"
></A
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
CELLPADDING="5"
><TR
><TD
><code><font color="#000000">
<font color="#0000BB">&lt;?php<br /></font><font color="#007700">function </font><font color="#0000BB">myrow</font><font color="#007700">(</font><font color="#0000BB">$id</font><font color="#007700">, </font><font color="#0000BB">$data</font><font color="#007700">) <br />{<br />&nbsp;&nbsp;&nbsp;&nbsp;return </font><font color="#DD0000">"&lt;tr&gt;&lt;th&gt;$id&lt;/th&gt;&lt;td&gt;$data&lt;/td&gt;&lt;/tr&gt;</font><font color="#007700">\n</font><font color="#DD0000">"</font><font color="#007700">;<br />}<br /><br /></font><font color="#0000BB">$arr </font><font color="#007700">= </font><font color="#0000BB">get_defined_functions</font><font color="#007700">();<br /><br /></font><font color="#0000BB">print_r</font><font color="#007700">(</font><font color="#0000BB">$arr</font><font color="#007700">);<br /></font><font color="#0000BB">?&gt;</font>
</font>
</code></TD
></TR
></TABLE
><P
>&#13;       Will output something along the lines of:
      </P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
CELLPADDING="5"
><TR
><TD
><PRE
CLASS="screen"
>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"
>Înapoi</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Acas&#227;</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="function.register-shutdown-function.html"
ACCESSKEY="N"
>Înainte</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"
>Sus</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>register_shutdown_function</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>