PHP Socket 编程
程序员文章站
2023-10-17 21:06:41
下面是相应的代码: php 代码: 复制代码 代码如下: // 设置一些基本的变量 $host = "192.168.1.99"; $port = 1234;...
下面是相应的代码:
php 代码:
<?
// 设置一些基本的变量
$host = "192.168.1.99";
$port = 1234;
// 设置超时时间
set_time_limit(0);
// 创建一个socket
$socket = socket_create(af_inet, sock_stream, 0) or die("could not create
socket\n");
//绑定socket到端口
$result = socket_bind($socket, $host, $port) or die("could not bind to
socket\n");
// 开始监听链接
$result = socket_listen($socket, 3) or die("could not set up socket
listener\n");
// accept incoming connections
// 另一个socket来处理通信
$spawn = socket_accept($socket) or die("could not accept incoming
connection\n");
// 获得客户端的输入
$input = socket_read($spawn, 1024) or die("could not read input\n");
// 清空输入字符串
$input = trim($input);
//处理客户端输入并返回结果
$output = strrev($input) . "\n";
socket_write($spawn, $output, strlen ($output)) or die("could not write
output\n");
// 关闭sockets
socket_close($spawn);
socket_close($socket);
?>
php 代码:
复制代码 代码如下:
<?
// 设置一些基本的变量
$host = "192.168.1.99";
$port = 1234;
// 设置超时时间
set_time_limit(0);
// 创建一个socket
$socket = socket_create(af_inet, sock_stream, 0) or die("could not create
socket\n");
//绑定socket到端口
$result = socket_bind($socket, $host, $port) or die("could not bind to
socket\n");
// 开始监听链接
$result = socket_listen($socket, 3) or die("could not set up socket
listener\n");
// accept incoming connections
// 另一个socket来处理通信
$spawn = socket_accept($socket) or die("could not accept incoming
connection\n");
// 获得客户端的输入
$input = socket_read($spawn, 1024) or die("could not read input\n");
// 清空输入字符串
$input = trim($input);
//处理客户端输入并返回结果
$output = strrev($input) . "\n";
socket_write($spawn, $output, strlen ($output)) or die("could not write
output\n");
// 关闭sockets
socket_close($spawn);
socket_close($socket);
?>