If you are running as a cgi or cli, take a look at the pcntl extension.
If you are running under apache, you must use heavy-weight "threading" by
running an external/separate process and communicating with some IPC
mechanism.
The best solution depends on what exactly you want to do and the
enviro
Daniel Lorch wrote:
> Hi,
>
> > Eric Liedtke <[EMAIL PROTECTED]>
> > [..] However, I am a little in the dark on what my options
> > are for spawning off a new process/thread that will continue working in
> > the background so the exported function can return in the script and go
> > on it's mer
Hi,
> Eric Liedtke <[EMAIL PROTECTED]>
> [..] However, I am a little in the dark on what my options
> are for spawning off a new process/thread that will continue working in
> the background so the exported function can return in the script and go
> on it's merry way. I'm hoping a more experienc