我正在尝试使用下面的代码
连接到我的应用程序中的pheanstalkpublic function fsockopen($hostname, $port = -1, &$errno = null, &$errstr = null, $timeout = null)
{
// Warnings (e.g. connection refused) suppressed;
// return value, $errno and $errstr should be checked instead.
return @fsockopen($hostname, $port, $errno, $errstr, $timeout);
}
但是我的日志文件中出现以下错误
严重性:警告-> fsockopen():无法连接至212.71.235.57:11300(连接被拒绝)/home/path/to/my/application/libraries/pheanstalk/classes/Pheanstalk/Socket/StreamFunctions.php 71
我尝试通过telnet 212.71.135.20 11300
进行远程登录,并且工作正常
Connected to domain.com Escape character is '^]'.
请问有什么需要我再次尝试才能完成的工作吗?
PS:我尝试使用socket_connect & socket_create
,但仍然无法使用。