#2: Re: Two connections at the same time
Posted on 2008-01-21 16:45:51 by Janwillem Borleffs
Marcel Molenaar wrote:
> It would be nice to fire the two requests at the same time so the
> total would be 3 seconds instead of 5 seconds.
>
> I do not think this is possible with PHP or am i wrong?
>
If you are using fsockopen to build your connection, you can use
stream_set_blocking to select non-blocking mode, which enables you to do
multiple requests as the following example shows:
http://playground.jwscripts.com/async-streams.phps
Using the SOAP extension, you might be able to use forking:
http://www.php.net/manual/nl/function.pcntl-fork.php
See this page for OS-specific restrictions.
HTH;
JW
Report this message |
#3: Re: Two connections at the same time
Posted on 2008-01-22 13:26:39 by Marcel Molenaar
"Janwillem Borleffs" <jw@jwscripts.com> wrote in message
news:4794be2d$0$64162$dbd4f001@news.wanadoo.nl...
> Marcel Molenaar wrote:
>> It would be nice to fire the two requests at the same time so the
>> total would be 3 seconds instead of 5 seconds.
>>
>> I do not think this is possible with PHP or am i wrong?
>>
>
> If you are using fsockopen to build your connection, you can use
> stream_set_blocking to select non-blocking mode, which enables you to do
> multiple requests as the following example shows:
>
> http://playground.jwscripts.com/async-streams.phps
>
> Using the SOAP extension, you might be able to use forking:
>
> http://www.php.net/manual/nl/function.pcntl-fork.php
>
> See this page for OS-specific restrictions.
>
>
`
Interesting!
Thanks for your help!
Marcel;
Report this message |