Filesystem 函数
PHP Manual

linkinfo

(PHP 4, PHP 5)

linkinfo获取一个连接的信息

说明

int linkinfo ( string $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

?>

参见


Filesystem 函数
PHP Manual