Checking if process still running?

后端 未结 9 571
野的像风
野的像风 2020-11-30 03:55

As a way to build a poor-man\'s watchdog and make sure an application is restarted in case it crashes (until I figure out why), I need to write a PHP CLI script that will be

9条回答
  •  情话喂你
    2020-11-30 04:32

    Try this one

    function processExists ($pid) {
        return file_exists("/proc/{$pid}");
    }
    

    Function checks whether process file is exists in /proc/ root directory. Works for Linux only

提交回复
热议问题