(PECL ssh2 >= 0.9.0)
ssh2_auth_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";
}
?>