如何确定文件是否在php中有硬链接

时间:2013-05-10 03:23:48

标签: php

我想获取PHP中文件的链接硬链接数(与ls -l中的结果相同)

示例:

ls -l file1 
-rw-rw-r--. 1 lilo lilo 0 Feb 26 07:08 file1
            ^

如何获取此数据?

提前谢谢。

1 个答案:

答案 0 :(得分:4)

使用stat()功能:

<?php
$filestat = stat('/path/to/file');
echo 'Number of links to file: '.$filestat['nlink'];
?>

可以在the manual中找到所有数组成员stat()检索的列表。