我需要这样的东西在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/

10-11 15:40