Jquery中文网 www.jquerycn.cn
Jquery中文网 >  脚本编程  >  php  >  正文 php telnet功能实现代码

php telnet功能实现代码

发布时间:2018-04-04   编辑:www.jquerycn.cn
本文介绍了php telnet功能的实现方法与代码,php使用telnet的连接、传递命令、获取返回值等功能,有需要的朋友参考下。

本节内容:
php telnet功能实例

文件:telnet.php
 

复制代码 代码示例:

<?php
error_reporting(-1);

//telnet功能类
class Telnet {
 var $sock = NULL;
 
 function telnet($host,$port) {
  $this->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;
    }
   } // www.jbxue.com

   $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类的调用
$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 telnet功能实现代码
Linux开启telnet远程登录服务指南
php telnet功能实例代码
php怎么用telnet提交表单
php实现ftp用户的在线管理实例解析
php socket实例之telnet实现的聊天程序
redis安装实例
centos下putty连接vps
python怎么连接telnet
PHP Curl出现403错误怎么办?curl错误解决方法

关键词: telnet   
[关闭]