2

我正在尝试构建一个 php 脚本,它连接到 telnet 服务器并运行一些命令。

我想将返回的命令输出保存到变量中。

示例: 指挥部:给我一个号码!服务器返回一个数字。假设它是 100。我想将数字 100 保存为变量。

这是我的源代码:

<?php  
# connecting
$fp=fsockopen("10.73.xxx.xxx",23);

# login
fputs($fp,"\r");
sleep(1);
fputs($fp,"user\r");
sleep(1);
fputs($fp,"password\r");

# commands
fputs($fp,"give me a number!\n");  //this returns the number I would like to save as variable

sleep(1);

fclose($fp);
?>
4

1 回答 1

1

你可能想要stream_get_line

$theData = stream_get_line($fp, 1024, "\n");
// 1024 = The maximum number of bytes to read from the handle.
// \n = string delimiter.
于 2012-11-15T15:29:16.087 回答