gpt4 book ai didi

php - 如何检查 PHP 中是否存在 shell 命令

转载 作者:IT老高 更新时间:2023-10-28 12:39:46 24 4
gpt4 key购买 nike

我在 php 中需要这样的东西:

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');
}

有什么解决办法吗?

最佳答案

在 Linux/Mac OS 上试试这个:

function command_exist($cmd) {
$return = shell_exec(sprintf("which %s", escapeshellarg($cmd)));
return !empty($return);
}

然后在代码中使用:

if (!command_exist('makemiracle')) {
print 'no miracles';
} else {
shell_exec('makemiracle');
}

更新:正如@camilo-martin 所建议的,您可以简单地使用:

if (`which makemiracle`) {
shell_exec('makemiracle');
}

关于php - 如何检查 PHP 中是否存在 shell 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12424787/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com