Re: [PHP] Forking and fsock

2008-04-16 Thread Daniel Brown
On Tue, Apr 15, 2008 at 7:16 PM, Kyle Browning <[EMAIL PROTECTED]> wrote: > Is there a way I can get my fsock to stay open when the child process exits? > > Kyle Kyle, Are you trying to create a PHP daemon? What do you mean by "child process" is PHP launching a second script to

Re: [PHP] Forking and fsock

2008-04-15 Thread Jason Knight
You're trying to save an open socket connection that was gained by the fork()'d process? I don't think that would be possible, since PHP closes all the resources when the process ends. Unless there is some config option to not do that. Jason On Tue, Apr 15, 2008 at 4:16 PM, Kyle Browning <[EMAI

[PHP] Forking and fsock

2008-04-15 Thread Kyle Browning
Is there a way I can get my fsock to stay open when the child process exits? Kyle -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php