ssh2_sftp_realpath

(PECL ssh2 >= 0.9.0)

ssh2_sftp_realpath解析提供的路径字符串的真实路径

描述

ssh2_sftp_realpath(资源 $sftp, 字符串 $filename): 字符串

filename 转换为远程文件系统上的有效真实路径。

参数

sftp

ssh2_sftp() 打开的 SSH2 SFTP 资源。

filename

返回值

返回真实路径作为字符串。

示例

示例 #1 解析路径名

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

$realpath = ssh2_sftp_realpath($sftp, '/home/username/../../../..//./usr/../etc/passwd');
/* $realpath 现在是:'/etc/passwd' */
?>

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top