php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #47973 stream_set_timeout no accept parameters smaller than 1 second
Submitted: 2009-04-15 16:11 UTC Modified: 2009-04-15 16:50 UTC
From: nyim at 163 dot com Assigned:
Status: Not a bug Package: Streams related
PHP Version: 5.2.9 OS: suse10 linux 32 bit
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
6 - 6 = ?
Subscribe to this entry?

 
 [2009-04-15 16:11 UTC] nyim at 163 dot com
Description:
------------
stream_set_timeout($udp, 0,300); 
just like 
stream_set_timeout($udp, 0);
it ignore the third parameter
strace the process:
poll([{fd=3, events=POLLIN|POLLERR|POLLHUP, revents=POLLERR}], 1, 0) = 1

Reproduce code:
---------------
<?php
$udp = stream_socket_client("udp://127.0.0.1:3434");
fwrite($udp,'xx');
stream_set_timeout($udp, 0,300);
$time = microtime(true);
fread($udp,1500);
echo microtime(true) - $time;

Expected result:
----------------
0.30182409286499

Actual result:
--------------
3.3140182495117E-5

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2009-04-15 16:50 UTC] nyim at 163 dot com
forgive me, the third parameter is microsecond, no millisecond
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 13:01:30 2024 UTC