(PECL ssh2 >= 0.12)
ssh2_auth_agent — 使用 ssh 代理进行 SSH 身份验证
使用 ssh 代理进行 SSH 身份验证
注意: 当 ssh2 扩展使用 libssh >= 1.2.3 编译时,ssh2_auth_agent() 函数才可用。
示例 #1 使用 ssh 代理进行身份验证
<?php
$connection = ssh2_connect('shell.example.com', 22);
if (ssh2_auth_agent($connection, 'username')) {
echo "身份验证成功!\n";
} else {
die('身份验证失败...');
}
?>