Windows menggunakan where
, sistem UNIX which
untuk memungkinkan untuk melokalkan perintah. Keduanya akan mengembalikan string kosong di STDOUT jika perintah tidak ditemukan.
PHP_OS saat ini WINNT untuk setiap versi Windows yang didukung oleh PHP.
Jadi, inilah solusi portabel:
/**
* 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;
}
Di Linux/Mac OS Coba ini:
function command_exist($cmd) {
$return = shell_exec(sprintf("which %s", escapeshellarg($cmd)));
return !empty($return);
}
Kemudian gunakan dalam kode:
if (!command_exist('makemiracle')) {
print 'no miracles';
} else {
shell_exec('makemiracle');
}
Perbarui: Seperti yang disarankan oleh @camilo-martin, Anda cukup menggunakan:
if (`which makemiracle`) {
shell_exec('makemiracle');
}
Berdasarkan @jcubic dan 'yang' harus dihindari, ini adalah lintas platform yang saya buat:
function verifyCommand($command) :bool {
$windows = strpos(PHP_OS, 'WIN') === 0;
$test = $windows ? 'where' : 'command -v';
return is_executable(trim(shell_exec("$test $command")));
}
Konfigurasikan dan Bangun OpenCV ke Instal FFMPEG Kustom
CURL untuk mengakses halaman yang membutuhkan login dari halaman yang berbeda