web-dev-qa-db-ja.com

PHPからシェルコマンドが存在するかどうかを確認する方法

私はこのようなものを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');
}

解決策はありますか?

33
mimrock

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

pdate: @ camilo-martinで提案されているように、単純に次のように使用できます。

if (`which makemiracle`) {
    Shell_exec('makemiracle');
}
45
docksteaderluke

Windowsはwhere、UNIXシステムwhichを使用して、コマンドのローカライズを許可します。コマンドが見つからない場合、どちらもSTDOUTに空の文字列を返します。

PHP_OSは現在、PHPがサポートするすべてのWindowsバージョンでWINNTです。

だからここにポータブルソリューション:

/**
 * Determines if a command exists on the current environment
 *
 * @param string $command The command to check
 * @return bool True if the command has been found ; otherwise, false.
 */
function command_exists ($command) {
  $whereIsCommand = (PHP_OS == 'WINNT') ? 'where' : 'which';

  $process = proc_open(
    "$whereIsCommand $command",
    array(
      0 => array("pipe", "r"), //STDIN
      1 => array("pipe", "w"), //STDOUT
      2 => array("pipe", "w"), //STDERR
    ),
    $pipes
  );
  if ($process !== false) {
    $stdout = stream_get_contents($pipes[1]);
    $stderr = stream_get_contents($pipes[2]);
    fclose($pipes[1]);
    fclose($pipes[2]);
    proc_close($process);

    return $stdout != '';
  }

  return false;
}
13
Dereckson

is_executable を使用して実行可能かどうかを確認できますが、whichコマンドを使用して取得できるコマンドのパスを知っている必要があります。

4
xdazz

プラットフォームに依存しないソリューション:

function cmd_exists($command)
{
    if (\strtolower(\substr(PHP_OS, 0, 3)) === 'win')
    {
        $fp = \popen("where $command", "r");
        $result = \fgets($fp, 255);
        $exists = ! \preg_match('#Could not find files#', $result);
        \pclose($fp);   
    }
    else # non-Windows
    {
        $fp = \popen("which $command", "r");
        $result = \fgets($fp, 255);
        $exists = ! empty($result);
        \pclose($fp);
    }

    return $exists;
}
3
srcspider

@jcubicとそれに基づく 'which'は回避する必要があります に基づいて、これは私が思いついたクロスプラットフォームです:

function verifyCommand($command) :bool {
  $windows = strpos(PHP_OS, 'WIN') === 0;
  $test = $windows ? 'where' : 'command -v';
  return is_executable(trim(Shell_exec("$test $command")));
}
1
botris

@xdazzの回答に基づいており、WindowsおよびLinuxで動作します。 Unixなので、MacOSXでも動作するはずです。

function is_windows() {
  return strtoupper(substr(PHP_OS, 0, 3)) === 'WIN';
}

function command_exists($command) {
    $test = is_windows() ? "where" : "which";
    return is_executable(trim(Shell_exec("$test $command")));
}
0
jcubic