|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-10-02 21:44 UTC] fa@php.net
[2009-10-03 08:58 UTC] donauinsel at hotmail dot com
[2009-10-03 09:58 UTC] pajoye@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 26 21:00:01 2025 UTC |
Description: ------------ Any SMTP Class may return "end-of-data" Reproduce code: --------------- <?php $fp = fsockopen('localhost', 25, $errno, $errstr, 10); if (!$fp) { echo "$errstr ($errno)<br />\n"; } else { if(!feof($fp)) { echo fgets($fp, 100); } } fclose($fp); ?>