Du bist hier: Tips » Scripte » PHP
PHP
Referenzliste

ssh2_sftp_readlink

SSH2 Funktionen

    Befehl:
string ssh2_sftp_readlink ( resource $sftp , string $link )


    Parameter-Liste:
NameBeschreibung
sftpEin SSH2 SFTP Ressource geöffnet von ssh2_sftp().
linkPfad der symbolischen Verbindung.

    Beschreibung:
Liefert das Ziel eines symbolischen Links.


    Aktiv in Version:
(PECL ssh2 >= 0.9.0)

    Siehe auch:
Liefert das Ziel eines symbolischen Links
 
Erzeugt einen symbolischen Link
 

ssh2_sftp_readlink() - Beispiel:


Eingabe:
<?php
$connection = ssh2_connect('shell.example.com', 22);
ssh2_auth_password($connection, 'username', 'password');
$sftp = ssh2_sftp($connection);

$target = ssh2_sftp_readlink($sftp, '/tmp/mysql.sock');
/* $target is now (e.g.): '/var/run/mysql.sock' */
?>

SSH2 Funktionen