Php check if executable is running
08:46 03 Aug 2016

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";
}
php process executable