Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 PHP 中获取文件的链接硬链接数(与中的结果相同ls -l)
ls -l
例子 :
ls -l file1 -rw-rw-r--. 1 lilo lilo 0 Feb 26 07:08 file1 ^
我怎样才能得到这些数据?
先感谢您。
使用stat()功能:
stat()
<?php $filestat = stat('/path/to/file'); echo 'Number of links to file: '.$filestat['nlink']; ?>
stat()可以在手册中找到所有数组成员检索的列表。