ID: 37004 Updated by: [EMAIL PROTECTED] Reported By: phpdotnet at ericmarques dot com -Status: Open +Status: Feedback Bug Type: Sockets related Operating System: FreeBSD 5.4-RELEASE PHP Version: 5.1.2 New Comment:
Thank you for this bug report. To properly diagnose the problem, we need a short but complete example script to be able to reproduce this bug ourselves. A proper reproducing script starts with <?php and ends with ?>, is max. 10-20 lines long and does not require any external resources such as databases, etc. If possible, make the script source available online and provide an URL to it here. Try to avoid embedding huge scripts into the report. Previous Comments: ------------------------------------------------------------------------ [2006-04-07 02:55:44] phpdotnet at ericmarques dot com Description: ------------ socket_read with PHP_NORMAL_READ doesnt stop on \n if data is recieved too fast eg. if i open a connection to my socket server with telnet and send "test123 line2 line3 line4" copy it and paste into the telnet window so it sends all 4 lines at once. Reproduce code: --------------- $input = socket_read($socket , 1024, PHP_NORMAL_READ); print "-- Start Input String--\n" print $input; print "--End Input String--\n"; Expected result: ---------------- -- Start Input String-- test123 --End Input String-- Actual result: -------------- -- Start Input String-- test123 line2 line3 line4 --End Input String-- ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=37004&edit=1
