Voting

: min(two, two)?
(Example: nine)

The Note You're Voting On

eight_hf at live dot fr
13 years ago
On Linux you can check if a process is still running by verifying if the PID exists in the /proc directory :

<?php
if(file_exists('/proc/'.$pid))
{
echo
'The process is still running.';
}
?>

<< Back to user notes page

To Top