2

我正在尝试使用 PHP socket_connect() 函数连接用 C 编写的目标,但出现以下错误:

警告:socket_connect():无法连接 [10061]:无法建立连接,因为目标机器主动拒绝了它。

这是我正在运行的代码:

    $service_port = 1234; 
    $address = "xx.xxx.xx.xxx";
    $socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);     
    if ($socket === false) {
        echo "socket_create() failed: reason: " . socket_strerror(socket_last_error()) . "\n";
    } else {
        echo "OK.\n<br>";
    }       
    echo "Attempting to connect to '$address' on port '$service_port'...\n";        

    $result = socket_connect($socket, $address, $service_port);

    if ($result === false) {
        echo "socket_connect() failed.\nReason: ($result) " . socket_strerror(socket_last_error($socket)) . "\n";
    } else {
        echo "OK.\n<br>";
    }

我在 Windows 7 中使用带有 PHP 5.4 的 xampp 服务器,并且我禁用了防火墙设置。我仍然收到同样的拒绝错误。

请帮我解决这个问题。[过去三天我一直在与这个问题作斗争]

提前致谢。

4

3 回答 3

1

如果您在同一台机器上运行客户端和服务器代码,那么您必须将它们混合在一起,如下例所示:

<?php

//client

$host    = "localhost";
$port    = 80;
$message = "Hello Server";
echo "Message To server :".$message;
// create socket
$socket1 = socket_create(AF_INET, SOCK_STREAM, 0) or die("Could not create socket\n");
// connect to server
$result1 = socket_connect($socket1, $host, $port) or die("Could not connect to server\n");  


//server


// don't timeout!
set_time_limit(100);
// create socket
$socket2 = socket_create(AF_INET, SOCK_STREAM, 0) or die("Could not create socket\n");
// bind socket to port
$result2 = socket_bind($socket2, $host, $port) or die("Could not bind to socket\n");
// start listening for connections
$result2 = socket_listen($socket2, 3) or die("Could not set up socket listener\n");

// accept incoming connections
// spawn another socket to handle communication
$spawn = socket_accept($socket2) or die("Could not accept incoming connection\n");



// send string to server
socket_write($socket1, $message, strlen($message)) or die("Could not send data to server\n");


// read client input
$input = socket_read($spawn, 1024) or die("Could not read input\n");
// clean up input string
$input = trim($input);
echo "Client Message : ".$input;
// reverse client input and send back
$output = strrev($input) . "\n";
socket_write($spawn, $output, strlen ($output)) or die("Could not write output\n");


$result1 = socket_read ($socket1, 1024) or die("Could not read server response\n");
echo "Reply From Server  :".$result1;

socket_close($spawn);
socket_close($socket2);
socket_close($socket1);
?>
于 2015-04-21T11:11:36.310 回答
0

希望下面的链接有所帮助。检查解决方案。 http://www.codeproject.com/Questions/426966/System-Net-Sockets-SocketExcep

于 2013-07-17T12:39:38.807 回答
0

我意识到这是一篇旧帖子,但是,我最近在使用 IIS 7 下运行的 php 时遇到了这个问题,并且在多次谷歌搜索后无法找到解决方案。

许多站点建议通过更改 php.ini 文件(然后停止并重新启动 IIS)来启用套接字。

我发现我必须在 IIS 7 管理器中启用套接字才能使套接字工作。

我发现手动更改 php.ini 文件并没有启用 php 中的套接字(以及 IIS 7)。我下面的示例代码显示 phpinfo(); 如果启用了套接字,则会有一个名为 Sockets 的特定部分,它将显示自己已启用。

IIS Manager 7 --> 向下滚动到 PHP Manager 并选择 --> 向下滚动到 PHP Extensions 并选择启用/禁用扩展的选项 --> 如果尚未启用则启用套接字 --> 重新启动 IIS。

我正在运行一个桌面套接字服务器(我编写的 - 使用端口 9999)并且能够使用我编写的桌面客户端连接到我的服务器(用于测试,在同一台 Windows 7 PC 上运行)但无法使用运行的 php 连接同一台电脑。

我测试连接的 php 代码如下所示:

<?php
echo "hello<br><br>";
echo phpinfo();
$fp = stream_socket_client("tcp://127.0.0.1:9999", $errno, $errstr, 30);
if (!$fp) {
   echo "error<br><br>";
    echo "$errstr ($errno)<br />\n";
} else {
    fwrite($fp, "GET / HTTP/1.0\r\nHost: www.google.com\r\nAccept: */*\r\n\r\n"); //just returns an acknowledgement
    while (!feof($fp)) {
        echo fgets($fp, 1024);
    }
    fclose($fp);
}
?>

我希望这可以帮助别人。

于 2016-11-07T15:32:00.173 回答