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
1
2
3
4
5
6
7
8
<?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
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.