array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'tr', ), 'this' => array ( 0 => 'function.ssh2-auth-agent.php', 1 => 'ssh2_auth_agent', 2 => 'Authenticate over SSH using the ssh agent', ), 'up' => array ( 0 => 'ref.ssh2.php', 1 => 'SSH2 İşlevleri', ), 'prev' => array ( 0 => 'ref.ssh2.php', 1 => 'SSH2 İşlevleri', ), 'next' => array ( 0 => 'function.ssh2-auth-hostbased-file.php', 1 => 'ssh2_auth_hostbased_file', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/ssh2/functions/ssh2-auth-agent.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

ssh2_auth_agent

(PECL ssh2 >= 0.12)

ssh2_auth_agentAuthenticate over SSH using the ssh agent

Açıklama

ssh2_auth_agent(resource $session, string $username): bool

Authenticate over SSH using the ssh agent

Bilginize: The ssh2_auth_agent() function will only be available when the ssh2 extension is compiled with libssh >= 1.2.3.

Bağımsız Değişkenler

session

An SSH connection link identifier, obtained from a call to ssh2_connect().

username

Remote user name.

Dönen Değerler

Başarı durumunda true, başarısızlık durumunda false döner.

Örnekler

Örnek 1 Authenticating with a ssh agent

<?php
$connection
= ssh2_connect('shell.example.com', 22);

if (
ssh2_auth_agent($connection, 'username')) {
echo
"Authentication Successful!\n";
} else {
die(
'Authentication Failed...');
}
?>