(PECL ssh2 >= 0.9.0)
ssh2_auth_none — 以“none”身份进行身份验证
尝试“none”身份验证,通常会(并且应该)失败。作为失败的一部分,此函数将返回一个已接受的身份验证方法数组。
如果服务器确实接受“none”作为身份验证方法,则返回 true
,否则在失败时返回已接受的身份验证方法数组。
示例 #1 获取身份验证方法列表
<?php
$connection = ssh2_connect('shell.example.com', 22);
$auth_methods = ssh2_auth_none($connection, 'user');
if (in_array('password', $auth_methods)) {
echo "服务器支持基于密码的身份验证\n";
}
?>