魔法常量__FILE__的描述中"symlinks resolved"是什么意思?

What does mean by "symlinks resolved" in the description of magic constant __FILE__?

我正在使用 PHP 7.2.0

下面是魔法常量的描述__FILE__ :

The full path and filename of the file with symlinks resolved. If used inside an include, the name of the included file is returned.

我没看懂子句的意思 "filename of the file with symlinks resolved"

有人请让我理解这个子句的含义,并附上适当的魔法常数用法示例__FILE__,并附上适当的解释。

符号链接(符号链接)是 "shortcuts" 您可以在文件系统中创建以将一个目录条目指向任意其他目录条目。在 *NIX shell 上,类似于:

$ ln -s /foo/bar.php /baz

这会将 /baz 建立为 /foo/bar.php 的符号链接。无论您现在使用哪个文件,它们实际上都是一样的。

解析符号链接 表示查看给定路径,识别其中的符号链接并用它们指向的实际文件路径替换它们。所以,不管你有没有

$ php /baz

$ php /foo/bar.php

__FILE__常量将解析为实际文件路径/foo/bar.php