Sophie

Sophie

distrib > Mandriva > 9.1 > ppc > media > main > by-pkgid > 0afeee9cca140e167a996902b9a677c5 > files > 548

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

<HTML
><HEAD
><TITLE
>exec</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
REL="HOME"
TITLE="PHP Manual"
HREF="index.html"><LINK
REL="UP"
TITLE="Program Execution functions"
HREF="ref.exec.html"><LINK
REL="PREVIOUS"
TITLE="escapeshellcmd"
HREF="function.escapeshellcmd.html"><LINK
REL="NEXT"
TITLE="passthru"
HREF="function.passthru.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"
>PHP Manual</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="function.escapeshellcmd.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="function.passthru.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="function.exec"
></A
>exec</H1
><DIV
CLASS="refnamediv"
><A
NAME="AEN78761"
></A
><P
>    (PHP 3, PHP 4 )</P
>exec&nbsp;--&nbsp;Execute an external program</DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN78764"
></A
><H2
>Description</H2
>string <B
CLASS="methodname"
>exec</B
> ( string command [, array output [, int return_var]])<BR
></BR
><P
>&#13;     <B
CLASS="function"
>exec()</B
> executes the given
     <TT
CLASS="parameter"
><I
>command</I
></TT
>, however it does not output
     anything.  It simply returns the last line from the result of the
     command.  If you need to execute a command and have all the data
     from the command passed directly back without any interference,
     use the <A
HREF="function.passthru.html"
><B
CLASS="function"
>passthru()</B
></A
> function.
    </P
><P
>&#13;     If the <TT
CLASS="parameter"
><I
>array</I
></TT
> argument is present, then the
     specified array will be filled with every line of output from the
     command.  Line endings, such as <TT
CLASS="literal"
>\n</TT
>, are not
     included in this array.  Note that if the array already contains some 
     elements, <B
CLASS="function"
>exec()</B
> will append to the end of the array.
     If you do not want the function to append elements, call
     <A
HREF="function.unset.html"
><B
CLASS="function"
>unset()</B
></A
> on the array before passing it to
     <B
CLASS="function"
>exec()</B
>.
    </P
><P
>&#13;     If the <TT
CLASS="parameter"
><I
>return_var</I
></TT
> argument is present
     along with the <TT
CLASS="parameter"
><I
>array</I
></TT
> argument, then the
     return status of the executed command will be written to this
     variable.
    </P
><DIV
CLASS="warning"
><P
></P
><TABLE
CLASS="warning"
BORDER="1"
WIDTH="100%"
><TR
><TD
ALIGN="CENTER"
><B
>Warning</B
></TD
></TR
><TR
><TD
ALIGN="LEFT"
><P
>&#13;      If you are going to allow data coming from user input to be passed to
      this function, then you should be using
      <A
HREF="function.escapeshellarg.html"
><B
CLASS="function"
>escapeshellarg()</B
></A
> or
      <A
HREF="function.escapeshellcmd.html"
><B
CLASS="function"
>escapeshellcmd()</B
></A
> to make sure that users cannot trick
      the system into executing arbitrary commands.
     </P
></TD
></TR
></TABLE
></DIV
><DIV
CLASS="note"
><BLOCKQUOTE
CLASS="note"
><P
><B
>Note: </B
>
      If you start a program using this function and want to leave it running
      in the background, you have to make sure that the output of that program
      is redirected to a file or some other output stream or else PHP will
      hang until the execution of the program ends.
     </P
></BLOCKQUOTE
></DIV
><P
>&#13;     See also <A
HREF="function.system.html"
><B
CLASS="function"
>system()</B
></A
>,
     <A
HREF="function.passthru.html"
><B
CLASS="function"
>passthru()</B
></A
>, <A
HREF="function.popen.html"
><B
CLASS="function"
>popen()</B
></A
>,
     <A
HREF="function.escapeshellcmd.html"
><B
CLASS="function"
>escapeshellcmd()</B
></A
>, and the <A
HREF="language.operators.execution.html"
>backtick operator</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.escapeshellcmd.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="function.passthru.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>escapeshellcmd</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="ref.exec.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>passthru</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>