©
Dokumen ini menggunakan Manual laman web PHP Cina Lepaskan
(PHP 4, PHP 5, PHP 7)
readlink — 返回符号连接指向的目标
$path
)readlink() 和同名的 C 函数做同样的事,返回符号连接的内容。
path
链接符号的路径。
版本 | 说明 |
---|---|
5.3.0 | 此函数在 Windows 平台下可用(Vista、Server 2008 或更高版本)。 |
返回链接的路径内容,出错则返回 FALSE
。
Example #1 readlink() 例
<?php
// output e.g. /boot/vmlinux-2.4.20-xfs
echo readlink ( '/vmlinuz' );
?>
[#1] MarkAndrewSlade at gmail dot com [2009-06-10 12:35:25]
This will trigger a warning and return false if you pass it a non-symlink. If the file doesn't exist, it will trigger a differently worded warning.
mslade@jupiter ~$ touch a
mslade@jupiter ~$ ln -s a b
mslade@jupiter ~$ ls -l {a,b}
-rw------- 1 mslade mslade 0 2009-06-10 15:27 a
lrwxrwxrwx 1 mslade mslade 1 2009-06-10 15:27 b -> a
mslade@jupiter ~$ php -r "var_dump(readlink('b'));"
string(1) "a"
mslade@jupiter ~$ php -r "var_dump(readlink('a'));"
Warning: readlink(): Invalid argument in Command line code on line 1
bool(false)
mslade@jupiter ~$ php -r "var_dump(readlink('c'));"
Warning: readlink(): No such file or directory in Command line code on line 1
bool(false)