array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'zh', ), 'this' => array ( 0 => 'function.ssh2-sftp-realpath.php', 1 => 'ssh2_sftp_realpath', 2 => 'Resolve the realpath of a provided path string', ), 'up' => array ( 0 => 'ref.ssh2.php', 1 => 'SSH2 函数', ), 'prev' => array ( 0 => 'function.ssh2-sftp-readlink.php', 1 => 'ssh2_sftp_readlink', ), 'next' => array ( 0 => 'function.ssh2-sftp-rename.php', 1 => 'ssh2_sftp_rename', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/ssh2/functions/ssh2-sftp-realpath.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

ssh2_sftp_realpath

(PECL ssh2 >= 0.9.0)

ssh2_sftp_realpathResolve the realpath of a provided path string

说明

ssh2_sftp_realpath(resource $sftp, string $filename): string

Translates filename into the effective real path on the remote filesystem.

参数

sftp

An SSH2 SFTP resource opened by ssh2_sftp().

filename

返回值

Returns the real path as a string.

示例

示例 #1 Resolving a pathname

<?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 is now: '/etc/passwd' */
?>

参见