(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('身份验证失败...');
}
?>