Hi all,
I'd like to understand the general idea of the popen().
The terms I could not get by reading the manual are:
"Process File Pointer"
"Pipe"
Also, I'm not sure why string mode is required to run a script in the background.
What is the difference between the followings? Both just fork the $script, don't they?
popen("php -f $script", "r");
exec("php -f $script > /dev/null &");