|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-07-06 05:32 UTC] sander@php.net
[2002-07-06 08:51 UTC] jan@php.net
[2002-07-06 08:54 UTC] sander@php.net
[2002-07-06 09:10 UTC] jan@php.net
[2002-07-08 10:15 UTC] stevem at solveinteractive dot com
[2002-08-02 16:50 UTC] iliaa@php.net
[2002-09-11 11:33 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 11:00:01 2025 UTC |
Using the following example from the PEAR documentation: function mysockopen($host = "localhost", $port = 8090) { $fp = fsockopen($host, $port, $errno, $errstr); if (!is_resource($fp)) { return new PEAR_Error($errstr, $errno); } return $fp; } $sock = mysockopen(); if (PEAR::isError($sock)) { print "mysockopen error: ".$sock->getMessage()."<BR>\n"; } I receive the following: Warning: Problem with method call - please report this bug in /webcert/infinityeasystreet/rw/docroot/administration/processagentfile.php on line 15 mysockopen error: Connection refused