首页 >php教程 >PHP源码 > 正文

php来实现telnet的连接、传递命令、获取返回值等功能!

原创2016-11-11 09:48:5901069
sock = fsockopen($host,$port);
  socket_set_timeout($this->sock,2,0);
 }
  
 function close() {
  if ($this->sock)  fclose($this->sock);
  $this->sock = NULL;
 }
   
 function write($buffer) {
  $buffer = str_replace(chr(255),chr(255).chr(255),$buffer);
  fwrite($this->sock,$buffer);
 }
   
 function getc() {
  return fgetc($this->sock);
 }
  
 function read_till($what) {
  $buf = '';
  while (1) {
   $IAC = chr(255);
     
   $DONT = chr(254);
   $DO = chr(253);
     
   $WONT = chr(252);
   $WILL = chr(251);
     
   $theNULL = chr(0);
   
   $c = $this->getc();
     
   if ($c === false) return $buf;
   if ($c == $theNULL) {
    continue;
   }
   
   if ($c == "1") {
    continue;
   }
  
   if ($c != $IAC) {
    $buf .= $c;
    
    if ($what == (substr($buf,strlen($buf)-strlen($what)))) {
     return $buf;
    }
    else {
     continue;
    }
   }
  
   $c = $this->getc();
     
   if ($c == $IAC) {
   $buf .= $c;
   }
   else if (($c == $DO) || ($c == $DONT)) {
    $opt = $this->getc();
    // echo "we wont ".ord($opt)."\n";
    fwrite($this->sock,$IAC.$WONT.$opt);
   }
   elseif (($c == $WILL) || ($c == $WONT)) {
    $opt = $this->getc();
    // echo "we dont ".ord($opt)."\n";
    fwrite($this->sock,$IAC.$DONT.$opt);
   }
   else {
    // echo "where are we? c=".ord($c)."\n";
   }
  }
 }
}
  
/*
$telnet = new telnet("192.168.0.1",23);
echo $telnet->read_till("login: ");
$telnet->write("kongxx\r\n");
echo $telnet->read_till("password: ");
$telnet->write("KONGXX\r\n");
echo $telnet->read_till(":> ");
$telnet->write("ls\r\n");
echo $telnet->read_till(":> ");
echo $telnet->close();
  
*/
php中文网最新课程二维码

声明:本文原创发布php中文网,转载请注明出处,感谢您的尊重!如有疑问,请联系admin@php.cn处理

相关文章

相关视频


网友评论

文明上网理性发言,请遵守 新闻评论服务协议

我要评论
  • 专题推荐

    作者信息

    大家讲道理

    光阴似箭催人老,日月如移越少年。

    最近文章
    python os模块使用详解1439
    python 装饰器1140
    HTML5本地存储应用sessionStorage和localStorage1177
    推荐视频教程
  • javascript初级视频教程javascript初级视频教程
  • jquery 基础视频教程jquery 基础视频教程
  • 视频教程分类