如何使用套接字将消息从 PHP 客户端发送到 C 服务器。我需要简单的代码,一个 TCP 连接。
在 Windows 上客户端是用 PHP 编写的,服务器是用 C 编写的。
请参阅此处的第一个示例。
$socket = socket_create(AF_UNIX, SOCK_DGRAM, 0); //AF_UNIX - it's important!
$socket_file = dirname(__FILE__) . '/socket_file.sock';
socket_bind($socket, $socket_file);
socket_recvfrom($socket, $some_buf, $input_buf_size, 0, $from);
socket_sendto($socket, $some_buf, $some_buf_len, 0, $from);
更多信息。