On 5/23/05, Antony Dovgal <[EMAIL PROTECTED]> wrote:
> > 32810 is a bug, but that's because tmpfile() is implemented as a
> > wrapper-less plain file.
> 
> As far as I understand wrapper-less streams should not exist at all, right?

Wrapper-less streams are perfectly ok and acceptable, and are the
default for things opened via fsockopen and some other magic
internals.
 
> But I would really like to see an example that is broken by this commit.
> Could you plz show me one, if it's not too complex for you?
> Thanks.

$fp = fsockopen(....)
fread($fp, 10000);

this is now greedy, but should not be so, as it breaks anyone trying
to write "proper" network aware scripts.

--Wez.

--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to