Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > by-pkgid > ebb1914cf182a88528b4547490db1dd8 > files > 702

kdewebdev-quanta-doc-3.5.9-2mdv2008.1.x86_64.rpm

<HTML
><HEAD
><TITLE
>func_get_args</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.44"><LINK
REL="HOME"
TITLE="PHP Manual"
HREF="manual.html"><LINK
REL="UP"
TITLE="Miscellaneous functions"
HREF="ref.misc.html"><LINK
REL="PREVIOUS"
TITLE="func_get_arg"
HREF="function.func-get-arg.html"><LINK
REL="NEXT"
TITLE="func_num_args"
HREF="function.func-num-args.html"></HEAD
><BODY
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="NAVHEADER"
><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>PHP Manual</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="function.func-get-arg.html"
>Prev</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="function.func-num-args.html"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="function.func-get-args"
>func_get_args</A
></H1
><DIV
CLASS="refnamediv"
><A
NAME="AEN17371"
></A
>func_get_args -- 
     Returns an array comprising a function's argument list.
    </DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN17374"
></A
><H2
>Description</H2
><DIV
CLASS="funcsynopsis"
><P
></P
><CODE
CLASS="FUNCDEF"
>int func_get_args</CODE
>(void );<P
></P
></DIV
><P
>&#13;     Returns an array in which each element is the corresponding
     member of the current user-defined function's argument
     list. <B
CLASS="function"
>func_get_args()</B
> will generate a warning
     if called from outside of a function definition.
    </P
><P
>&#13;     <DIV
CLASS="informalexample"
><P
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="programlisting"
>  1&nbsp;
  2&nbsp;&#60;?php
  3&nbsp;function foo() {
  4&nbsp;    $numargs = func_num_args();
  5&nbsp;    echo "Number of arguments: $numargs&#60;br&#62;\n";
  6&nbsp;    if ($numargs &#62;= 2) {
  7&nbsp;        echo "Second argument is: " . func_get_arg (1) . "&#60;br&#62;\n";
  8&nbsp;    }
  9&nbsp;    $arg_list = func_get_args();
 10&nbsp;    for ($i = 0; $i &#60; $numargs; $i++) {
 11&nbsp;        echo "Argument $i is: " . $arg_list[$i] . "&#60;br&#62;\n";
 12&nbsp;    }
 13&nbsp;} 
 14&nbsp;
 15&nbsp;foo (1, 2, 3);
 16&nbsp;?&#62;
 17&nbsp;      </PRE
></TD
></TR
></TABLE
><P
></P
></DIV
>
    </P
><P
>&#13;     <B
CLASS="function"
>func_get_args()</B
> may be used in conjunction
     with <A
HREF="function.func-num-args.html"
><B
CLASS="function"
>func_num_args()</B
></A
> and
     <A
HREF="function.func-get-arg.html"
><B
CLASS="function"
>func_get_arg()</B
></A
> to allow user-defined functions
     to accept variable-length argument lists.
    </P
><DIV
CLASS="note"
><BLOCKQUOTE
CLASS="note"
><P
><B
>Note: </B
>
      This function was added in PHP 4.
     </P
></BLOCKQUOTE
></DIV
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="function.func-get-arg.html"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="manual.html"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="function.func-num-args.html"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>func_get_arg</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="ref.misc.html"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>func_num_args</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>