(Learning from my last mistake, I'll now try to make clear right away what
each sentence means *G*)

Introductory lines:
I want to write a FastCGI compatible PHP script.  In order to do so, PHP
obviously need to recompile PHP with '--with-fastcgi'.  However, looking at
some PERL FastCGI scripts, I see that they mainly consist of a while loop
like this:

while( FCGI::accept() >= 0 ) {
        foo();
        FCGI::flush();
}

Questions:
What are the PHP equivalents to FCGI::accept() and FCGI::flush()?  


Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:       http://www.digitalprojects.com   |   http://www.iso-top.de
   iso-top.de - Die günstige Art an Linux Distributionen zu kommen
                Uptime: 1 day 1 hour 7 minutes

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to