[PHP] Fork and multi-thread in PHP?

2002-06-12 Thread Nathan Cassano
forks off a sendmail process). Is there a way for PHP to fork or multi-thread to do I/O? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Fork and multi-thread in PHP?

2002-06-12 Thread Rasmus Lerdorf
by making socket connection to our email server. The problem is that the program is very slow because it has to finish talking to the email server until it can proceed with the next email (as opposed to the mail() function that just forks off a sendmail process). Is there a way for PHP to fork