另一种方法是绕过 telnet 令人讨厌的事情,它将每个字符作为一个字符串发送,方法是检查响应是否为“\r\n”,这是用户按下回车键时 telnet 发送的字符串。
以下是一个示例
<?php
error_reporting(E_ALL);
set_time_limit(0);
ob_implicit_flush();
$address = '127.0.0.1';
$port = 100;
if (($sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP)) === false) {
echo "socket_create() 失败:原因: " . socket_strerror(socket_last_error()) . "\n";
}
if (socket_bind($sock, $address, $port) === false) {
echo "socket_bind() 失败:原因: " . socket_strerror(socket_last_error($sock)) . "\n";
}
else
echo 'Socket ' . $address . ':' . $port . " 已打开\n";
if (socket_listen($sock, 5) === false) {
echo "socket_listen() 失败:原因: " . socket_strerror(socket_last_error($sock)) . "\n";
}
else
echo "正在监听新的客户端..\n";
$client_id = 0;
do {
if (($msgsock = socket_accept($sock)) === false) {
echo "socket_accept() 失败:原因: " . socket_strerror(socket_last_error($sock)) . "\n";
break;
}
else {
$client_id += 1;
echo "客户端 #" .$client_id .": 连接\n";
}
$msg = "\n欢迎使用 PHP 测试服务器。 \n" .
"要退出,请输入 'quit'。 要关闭服务器,请输入 'shutdown'。\n";
socket_write($msgsock, $msg, strlen($msg));
$cur_buf = '';
do {
if (false === ($buf = socket_read($msgsock, 2048))) {
echo "socket_read() 失败:原因: " . socket_strerror(socket_last_error($msgsock)) . "\n";
break 2;
}
if ($buf == "\r\n") {
if ($cur_buf == 'quit') {
echo '客户端 #' .$client_id .': 断开连接' . "\n";
break;
}
if ($cur_buf == 'shutdown') {
socket_close($msgsock);
break 2;
}
$talkback = "未知命令: " . str_replace("\r\n", '\r\n', $cur_buf) ."\n";
socket_write($msgsock, $talkback, strlen($talkback));
echo '客户端 #' .$client_id .': ' . $cur_buf . "\n";
$cur_buf = '';
}
else $cur_buf .= $buf;
} while (true);
socket_close($msgsock);
} while (true);
socket_close($sock);
?>