91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用php實現遠程連接

發布時間:2021-07-19 10:08:56 來源:億速云 閱讀:147 作者:chen 欄目:編程語言

本篇內容主要講解“如何使用php實現遠程連接”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“如何使用php實現遠程連接”吧!

用php實現遠程連接的方法:首先安裝SSH2模塊;然后通過“ssh3_connect ($host, $port = null, $methods = nullarray , $callbacks = nullarray)”方法連接即可。

本文操作環境:windows7系統、PHP7.1版,DELL G3電腦

怎么用php實現遠程連接?

php實現遠程操作

使用 php 進行遠程操作的時候,需要安裝SSH2模塊。關于在SSH2模塊中用到過的幾個函數,做一個簡單的記錄。

常用方法

1、連接

ssh3_connect ($host, $port = null, $methods = nullarray , $callbacks = nullarray )

連接到一個 SSH 服務器

2、認證

ssh3_auth_password ($session, $username, $password)

在 SSH  上使用普通密碼進行認證

或者

ssh3_auth_pubkey_file ($session, $username, $pubkeyfile, $privkeyfile, $passphrase = null)

通過公鑰進行認證

3、文件傳送

ssh3_scp_send ( resource $session , string $local_file , string $remote_file [, int $create_mode = 0644 ] )

通過 scp 協議發送文件

ssh3_scp_recv ( resource $session , string $remote_file , string $local_file )

通過 scp 協議獲得文件

4、執行命令

ssh3_exec ($session, $command, $pty = null, $env = nullarray , $width = null, $height = null, $width_height_type = null)

在遠程機器上執行命令

5、其他

ssh3_fetch_stream ($channel, $streamid) {}

獲取拓展的數據流。常用的$streamid 定義有:

define ('SSH2_STREAM_STDIO', 0);
define ('SSH2_STREAM_STDERR', 1);
stream_set_blocking ( resource $stream , bool $mode )

設置流為 阻塞/非阻塞 狀態。當 $mode 為 true 時為阻塞; $mode 為 false 時,則為非阻塞狀態。

簡單應用

//建立連接
$connection = ssh3_connect($host, (int)$port);
if (!$connection) {
 
... ...
 
}
 
//進行認證
 
if (!ssh3_auth_password($connection, $user, $password)) {
 
... ...
 
}
 
//發送文件
if (!ssh3_scp_send($connection, $sourceFile, $targetFile, 0644)) {
 
... ...
 
}else{
 
$stream = ssh3_exec($connection, "stat /tmp/targetFile 2>&1");
$errorStream = ssh3_fetch_stream($stream, SSH2_STREAM_STDERR);
 
// Enable blocking for both streams
stream_set_blocking($errorStream, true);
stream_set_blocking($stream, true);
 
echo stream_get_contents($stream);
 
// Close the streams
fclose($errorStream);
fclose($stream);
 
}

到此,相信大家對“如何使用php實現遠程連接”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

碌曲县| 临猗县| 鄂尔多斯市| 沧州市| 湖北省| 玛曲县| 玉溪市| 上高县| 镶黄旗| 城固县| 红安县| 和静县| 德惠市| 洛南县| 连江县| 乐都县| 新绛县| 凉山| 岑溪市| 清苑县| 龙川县| 右玉县| 广元市| 双流县| 平凉市| 霍城县| 长宁区| 新丰县| 平南县| 柘荣县| 饶河县| 微博| 双牌县| 金溪县| SHOW| 康乐县| 咸丰县| 泗水县| 藁城市| 措美县| 海城市|