Im利用这一单条代码与Telnet会议连接,并派出一些指挥部和获得产出。
http://www.geckotribe.com/php-telnet/
我现在提出一个问题,即我想删除Telnet会议的某些数据,用一些其他数据取代。 (这是否可行?)
For an example: It prompts continue N - and I need to erase that N and place a Y there.
这一职能将指挥......注意到,是否有东西可以模拟后天或删除?
function DoCommand($c,&$r) {
if ($this->fp) {
fputs($this->fp,"$c
");
$this->Sleep();
$this->GetResponse($r);
$r=preg_replace("/^.*?
(.*)
[^
]*$/","$1",$r);
}
return $this->fp?1:0;
}