vote up 1 vote down star

How can I invoke an external shell script (Or alternatively an external PHP script) from PHP itself and get its process ID within the same script?

flag

2 Answers

vote up 4 vote down check
$command =  'yourcommand' . ' > /dev/null 2>&1 & echo $!; ';

$pid =  exec ( $command, $output );
var_dump($pid);
link|flag
1  
Hehehe, that's actually creative, thank you. – christian studer Sep 25 at 7:59
Much better than my answer! – andho Sep 25 at 8:47
What's the meaning of " > /dev/null 2>&1 & echo $!; " – andho Sep 25 at 8:48
it means 'send all the output to the null device, which means that all the output will be available in the stdout, and echo $! simply echo the pid, which is captured by the script – bgy Sep 25 at 15:33
vote up 0 vote down

For most linux shell tools, it has an option to write the process ID to a file. This is how init.d scripts starts and stops apache or any other service.

For bash, in the script you can use the following to get the PID: $$
You can store it in a file then and then from php check the contents of the file to get the PID.

I am not near a linux box now but if you need more help I can test some code when i am near a linux box.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.