Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Parameters to the <code>system</code> (It will not show you the output, it just return you the status of the command)</p> <p><strong>command</strong></p> <p>The command that will be executed.</p> <p><strong>return_var</strong></p> <p>If the return_var argument is present, then the return status of the executed command will be written to this variable.</p> <p>////////////////////////////////<strong>......................................................................................</strong>///////////////////////////////////////////</p> <pre><code>Use `exec` command instead </code></pre> <p><strong>command</strong></p> <p>The command that will be executed.</p> <p><strong>output</strong></p> <p>If the output argument is present, then the specified array will be filled with every line of output from the command. Trailing whitespace, such as \n, is not included in this array. Note that if the array already contains some elements, exec() will append to the end of the array. If you do not want the function to append elements, call unset() on the array before passing it to exec().</p> <p><strong>return_var</strong></p> <p>If the return_var argument is present along with the output argument, then the return status of the executed command will be written to this variable.</p> <p><strong>EG:-</strong></p> <pre><code>exec('whoami', $test, $arr); print_r($test); </code></pre> <p>In browser it o/p</p> <pre><code>Array ( [0] =&gt; nt authority\system ) </code></pre> <p>For more info</p> <p><a href="http://php.net/manual/en/function.exec.php" rel="nofollow">http://php.net/manual/en/function.exec.php</a></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload