Skip to content

Instantly share code, notes, and snippets.

@cosmos-sajal
Created September 13, 2018 10:24
Show Gist options
  • Save cosmos-sajal/1c6d1084f20d467cc72b184679d36f72 to your computer and use it in GitHub Desktop.
Save cosmos-sajal/1c6d1084f20d467cc72b184679d36f72 to your computer and use it in GitHub Desktop.
Is a process running
/**
* @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