php telnet连接、传递命令、获取返回值等菜鸟教程
内容摘要
这篇文章主要为大家详细介绍了php telnet连接、传递命令、获取返回值等菜鸟教程,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试
对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试
文章正文
这篇文章主要为大家详细介绍了php telnet连接、传递命令、获取返回值等菜鸟教程,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | <code class = "php" > /** * telnet连接、传递命令、获取返回值 * * @param * @author php教程 www.idcnote.com **/ error_reporting (-1); 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 ; } } $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教程(www.idcnote.com) ***/ </code> |
注:关于php telnet连接、传递命令、获取返回值等菜鸟教程的内容就先介绍到这里,更多相关文章的可以留意
代码注释