2013-05-10 37 views

回答

4

使用stat()功能:

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

所有陣列成員名單stat()檢索可以the manual找到。

+0

非常感謝@Lukas – Pol0nium 2013-05-10 03:31:41

相關問題