我具有以下目录结构:
if (isset($_POST['save-image'])) {
$id = $_POST['save-image-id'];
// There will be updates in database, not important.
echo $id;
}
这按预期工作:
$ tree
.
├── bar -> foo
└── foo
└── file
但是当我$ realpath --no-symlinks bar/file
/home/pet3r/test/bar/file
进入符号链接时,cd
会解决该问题,而与realpath
选项无关:
--no-symlinks
这是GNU coreutils(8.28)中的realpath