ssh2_sftp_readlink

(PECL ssh2 >= 0.9.0)
Return the target of a symbolic link
string ssh2_sftp_readlink ( resource $sftp, string $link )

Returns the target of a symbolic link.

Parameters:
sftp

An SSH2 SFTP resource opened by ssh2_sftp().

link

Path of the symbolic link.

Returns:

Returns the target of the symbolic link.

Examples:
Reading a symbolic link
<?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' */
?>

See also:

readlink() -

ssh2_sftp_symlink() -

doc_php
2016-02-24 16:10:09
Comments
Leave a Comment

Please login to continue.