Added a simple example and see also exec().

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@163319 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Philip Olson 2004-07-14 17:17:14 +00:00
parent 7511e36a86
commit c23c764146

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.4 $ -->
<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/exec.xml, last change in rev 1.2 -->
<refentry id='function.shell-exec'>
<refnamediv>
@ -18,7 +18,26 @@
This function is identical to the <link
linkend="language.operators.execution">backtick operator</link>.
</para>
<para>
<example>
<title>A <function>shell_exec</function> example</title>
<programlisting role="php">
<![CDATA[
<?php
$output = shell_exec('ls -lart');
echo "<pre>$output</pre>";
?>
]]>
</programlisting>
</example>
</para>
&note.sm.disabled;
<para>
See also <function>exec</function> and
<function>escapeshellcmd</function>.
</para>
</refsect1>
</refentry>