Skip to content

Instantly share code, notes, and snippets.

@cosmos-sajal
Created September 13, 2018 10:27
Show Gist options
  • Save cosmos-sajal/89a08967ca8fe079058e5cf424a34359 to your computer and use it in GitHub Desktop.
Save cosmos-sajal/89a08967ca8fe079058e5cf424a34359 to your computer and use it in GitHub Desktop.
is the process running
/**
* @param Integer $pid
*
* @return boolean
*/
public function isProcessRunning($pid)
{
if (file_exists("/proc/".$pid)) {
return true;
} else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment