Reputation: 63636
php file.php &
How to get PID of the background process in file.php
?
Upvotes: 2
Views: 5833
Reputation: 11070
I believe you're looking for the function getmypid()
http://php.net/manual/en/function.getmypid.php
posix_getpid()
seems to do the same thing...
http://php.net/manual/en/function.posix-getpid.php
Upvotes: 2