|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2005-04-01 14:14 UTC] destroyer at balticum-tv dot lt
Description:
------------
It seems that all these receive related functions return junk. They just sometimes return 2000.
Before i downloaded a snapshot 5.0.x-dev they were returning not only 2000, but other text such as "10c" "2b3" etc.
Reproduce code:
---------------
$fp = @fsockopen($dom, 80, $errno, $errstr, 30);
stream_set_timeout($fp,20);
...
while (!feof($fp)) {
$result = fgets($fp, 4096);
if($result !== FALSE)
$out .= $result;
}
...
echo $out;
Expected result:
----------------
<HTML>
<BODY>
The test
Other text
</BODY>
</HTML>
Actual result:
--------------
<HTML>
<BODY>
2000
The test
2000
Other text
</BODY>
</HTML>
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 06 18:00:01 2025 UTC |
<?php $dom = "www.google.co.uk"; $fp = @fsockopen($dom, 80, $errno, $errstr, 30); $req = "GET /search?hl=en&q=test&btnG=Google+Search&meta= HTTP/1.1\r\n"; $req .= "Host: $dom\r\n"; $req .= "Content-Type: application/x-www-form-urlencoded\r\n"; $req .= "Content-Length: " . strlen($pv) . "\r\n"; $req .= "Connection: Close\r\n\r\n"; stream_set_timeout($fp,20); fwrite($fp, $req); while (!feof($fp)) { $result = fgets($fp, 4096); if($result !== FALSE) $out .= $result; } fclose($fp); echo $out; ?>