(PHP 4, PHP 5)
linkinfo — 获取一个连接的信息
$path
)
linkinfo() 返回 lstat
系统调用所返回的 UNIX C stat 结构中的 st_dev
字段。本函数用来验证一个连接(由 path
所指向的)是否确实存在(使用 stat.h 中的 S_ISLNK
宏同样的方法)。如果出错则返回 0 或 FALSE
。
Example #1 linkinfo() 例子
<?php
echo linkinfo('/vmlinuz'); // 835
?>
参见 symlink(),link() 和 readlink()。
path
Path to the link.
linkinfo() returns the st_dev field
of the Unix C stat structure returned by the lstat
system call. Returns 0 or FALSE
in case of error.
版本 | 说明 |
---|---|
5.3.0 | This function is now available on Windows platforms (Vista, Server 2008 or greater). |
Example #2 linkinfo() example
<?php
echo linkinfo('/vmlinuz'); // 835
?>