ID:               40750
 Updated by:       [EMAIL PROTECTED]
 Reported By:      andreas dot rieber at 2e-systems dot com
-Status:           Open
+Status:           Feedback
 Bug Type:         Network related
 Operating System: OpenSuse, Ubuntu
 PHP Version:      5.2.1
 New Comment:

What am I doing wrong?
# ./sapi/cli/php /tmp/5.php
5

# cat /tmp/5.php
<?php

ini_set( 'default_socket_timeout', 5);

$fp = fsockopen( 'www.php.net', 80, &$errno, &$errstr, 3);
$start = time();
$data = fread( $fp, 8192);
fclose( $fp);

echo time() - $start;

?>



Previous Comments:
------------------------------------------------------------------------

[2007-03-12 05:24:24] judas dot iscariote at gmail dot com

Im experiencing a very similar problem like this, probably not the same
but related, that makes our application stop working after upgrading
from php 5.2.0 to 5.2.1 all previuos versions do the job fine,

I 'll try to isolate the problem better.

------------------------------------------------------------------------

[2007-03-11 14:51:19] andreas dot rieber at 2e-systems dot com

we reproduced it on second OS and wrote better test:

--TEST--
Bug #40750 (default_socket_timeout Test)
--FILE--
<?php

ini_set( 'default_socket_timeout', 5);

$fp = fsockopen( 'www.php.net', 80, &$errno, &$errstr, 3);
$start = time();
$data = fread( $fp, 8192);
fclose( $fp);

echo time() - $start;

?>
--EXPECT--
5

------------------------------------------------------------------------

[2007-03-09 10:30:48] [EMAIL PROTECTED]

Not reproducible.

------------------------------------------------------------------------

[2007-03-08 13:32:45] andreas dot rieber at 2e-systems dot com

I tried now also the latest snapshoot (php5.2-200703081130) and double
checked my default_socket_timeout which is 60. The fgets gets the
timeout from fsockopen.

------------------------------------------------------------------------

[2007-03-07 21:59:20] [EMAIL PROTECTED]

>The manual says for fsockopen:
> Note: If you need to set a timeout for reading/writing data over the
> socket, use stream_set_timeout(), as the timeout parameter to
> fsockopen() only applies while connecting the socket.

That's still correct, there were no changes to this behavior.

------------------------------------------------------------------------

The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
    http://bugs.php.net/40750

-- 
Edit this bug report at http://bugs.php.net/?id=40750&edit=1

Reply via email to