Php check if executable is running
Is it possible in Php to check wether an executable is running or not,
some Pseudocode:
if (processExists("notepad.exe")) {
echo "exists";
} else {
echo "doesn't exist";
}