0

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

例子 :

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

我怎样才能得到这些数据?

先感谢您。

4

1 回答 1

4

使用stat()功能:

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

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

于 2013-05-10T03:28:44.953 回答