在PHP中實現SSH登錄可以使用PHP的SSH2擴展。以下是一個簡單的示例代碼,用于在PHP中實現SSH登錄:
// 連接SSH服務器
$connection = ssh2_connect('hostname', 22);
// 使用用戶名和密碼進行身份驗證
if (ssh2_auth_password($connection, 'username', 'password')) {
echo "Authentication Successful\n";
// 執行遠程命令
$stream = ssh2_exec($connection, 'ls -l');
stream_set_blocking($stream, true);
$data = '';
while ($buffer = fread($stream, 4096)) {
$data .= $buffer;
}
fclose($stream);
echo $data;
} else {
echo "Authentication Failed\n";
}
在上面的示例中,首先使用ssh2_connect
函數連接到SSH服務器,然后使用ssh2_auth_password
函數使用用戶名和密碼進行身份驗證。如果身份驗證成功,則可以使用ssh2_exec
函數執行遠程命令。最后,通過讀取流中的數據來獲取命令的輸出。