array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'it', ), 'this' => array ( 0 => 'function.ssh2-sftp-readlink.php', 1 => 'ssh2_sftp_readlink', 2 => 'Return the target of a symbolic link', ), 'up' => array ( 0 => 'ref.ssh2.php', 1 => 'SSH2 Funzioni', ), 'prev' => array ( 0 => 'function.ssh2-sftp-mkdir.php', 1 => 'ssh2_sftp_mkdir', ), 'next' => array ( 0 => 'function.ssh2-sftp-realpath.php', 1 => 'ssh2_sftp_realpath', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/ssh2/functions/ssh2-sftp-readlink.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PECL ssh2 >= 0.9.0)
ssh2_sftp_readlink — Return the target of a symbolic link
Returns the target of a symbolic link.
sftp
An SSH2 SFTP resource opened by ssh2_sftp().
link
Path of the symbolic link.
Returns the target of the symbolic link
.
Example #1 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' */
?>