So überprüfen Sie, ob ein Shell -Befehl von PHP vorhanden ist

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: So überprüfen Sie, ob ein Shell -Befehl von PHP vorhanden ist

by Anonymous » 30 Apr 2025, 20:17

Ich brauche so etwas in PHP: < /p>

If (!command_exists('makemiracle')) {
print 'no miracles';
return FALSE;
}
else {
// safely call the command knowing that it exists in the host system
shell_exec('makemiracle');
}
< /code>

Gibt es Lösungen? < /p>

Top