shell_exec mit php shell script ausführen
hallo
habe da mal eine frage
<?php
$output = shell_exec('ls -lart');
echo "<pre>$output</pre>";
?>
funktioniert ohne probleme
wenn ich aber jetzt
<?php
$output = shell_exec('shutdown -h now');
echo "<pre>$output</pre>";
?>
verusche funktioniert das nicht
wieso ?
gruß
fenster
|