(PHP 4, PHP 5)
shell_exec — Executa um comando via shell e retorna a saída inteira como uma string
cmd
O comando que será executado.
A saída do comando executado.
Exemplo #1 Um exemplo da shell_exec()
<?php
$output = shell_exec('ls -lart');
echo "<pre>$output</pre>";
?>
Nota:
This function is disabled when PHP is running in safe mode.