minor stuff, getting ready for notify

This commit is contained in:
Mike Macgirvin 2010-07-06 23:08:38 -07:00
parent 1ea69ae275
commit 9cc49f27e6
4 changed files with 279 additions and 0 deletions

9
wip/procs Normal file
View file

@ -0,0 +1,9 @@
You could use proc_open for this:
proc_close(proc_open ("./script.php &", array(), $foo));
The empty array for the output specs prevents opening any pipes to the new
process, so proc_open doesn't wait for the execution of script.php to
finish - the last parameter is just there because it has to be.
proc_close() closes the process immediately, so your PHP script doesn't
stop.