我想获取PHP中文件的链接硬链接数(与ls -l
中的结果相同)
示例:
ls -l file1
-rw-rw-r--. 1 lilo lilo 0 Feb 26 07:08 file1
^
如何获取此数据?
提前谢谢。
答案 0 :(得分:4)
使用stat()
功能:
<?php
$filestat = stat('/path/to/file');
echo 'Number of links to file: '.$filestat['nlink'];
?>
可以在the manual中找到所有数组成员stat()
检索的列表。