(PECL ssh2 >= 0.9.0)
ssh2_auth_password — SSH 上でプレーンなパスワードを使用した認証を行う
SSH 上でプレーンなパスワードを使用した認証を行います。
ssh2_connect() のコールによって取得した SSH 接続リンク ID。
リモートのユーザ名。
username のパスワード。
成功した場合に TRUE を、失敗した場合に FALSE を返します。
例1 パスワードを用いた認証
<?php
$connection = ssh2_connect('shell.example.com', 22);
if (ssh2_auth_password($connection, 'username', 'secret')) {
echo "Authentication Successful!\n";
} else {
die('Authentication Failed...');
}
?>