(PHP 4, PHP 5)
readlink — 返回符号连接指向的目标
$path
)
readlink() 和同名的 C
函数做同样的事,返回符号连接的内容。如果出错返回 FALSE
。
Example #1 readlink() 例子
<?php
// output e.g. /boot/vmlinux-2.4.20-xfs
echo readlink('/vmlinuz');
?>
参见 is_link(),symlink() 和 linkinfo()。
path
The symbolic link path.
版本 | 说明 |
---|---|
5.3.0 | This function is now available on Windows platforms (Vista, Server 2008 or greater). |
Returns the contents of the symbolic link path or FALSE
on error.
Example #2 readlink() example
<?php
// output e.g. /boot/vmlinux-2.4.20-xfs
echo readlink('/vmlinuz');
?>