我正在尝试使用以下代码创建一个php tcp / ip服务器:
<?php
// set some variables
$host = "localhost";
$port = 3804;
// don't timeout!
set_time_limit(0);
// create socket
$socket = socket_create(AF_INET, SOCK_STREAM, 0) or die("Could not create socket\n");
// bind socket to port
$result = socket_bind($socket, $host, $port) or die("Could not bind to socket\n");
// start listening for connections
$result = socket_listen($socket, 3) or die("Could not set up socket listener\n");
// accept incoming connections
// spawn another socket to handle communication
$spawn = socket_accept($socket) or die("Could not accept incoming connection\n");
// read client input
$input = socket_read($spawn, 1024) or die("Could not read input\n");
// clean up input string
$input = trim($input);
// reverse client input and send back
$output = strrev($input) . "\n";
socket_write($spawn, $output, strlen ($output)) or die("Could not write output\n");
// close sockets
socket_close($spawn);
socket_close($socket);
?>
我随机选择在3804端口上工作,当我试图在该端口上telnet到我的主机时我无法建立连接..是否还有我需要做的设置php脚本托管的服务器,为了让我的php脚本能听到那个端口?
答案 0 :(得分:2)
由于您将"localhost"
作为socket_bind
的第二个参数传递,因此套接字只会侦听来自地址localhost
的连接,通常为127.0.0.1。设置$host = '0.0.0.0';
以允许来自任何地方的连接。
您可能还希望配置防火墙以通过与端口3804的连接。
答案 1 :(得分:1)
该代码适合我。您是从apache还是其他Web服务器运行此代码?您是否尝试使用php -a
运行这些行?