ssh2_sftp_realpath
(PECL ssh2 >= 0.9.0)
ssh2_sftp_realpath — 指定されたパス文字列の実パスを解決する
説明
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' */
?>
参考
- realpath() - 正規化された絶対パス名を返す
- ssh2_sftp_symlink() - シンボリックリンクを作成する
- ssh2_sftp_readlink() - シンボリックリンクのターゲットを返す
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google