在PHP中,可以使用file_get_attributes()
函數(shù)來(lái)獲取文件的屬性。這個(gè)函數(shù)返回一個(gè)關(guān)聯(lián)數(shù)組,包含了關(guān)于文件的元數(shù)據(jù)信息。以下是一些常見(jiàn)的文件屬性:
dev_major
:設(shè)備文件的主設(shè)備號(hào)。dev_minor
:設(shè)備文件的次設(shè)備號(hào)。dev_node
:設(shè)備文件的節(jié)點(diǎn)號(hào)。ino
:文件的inode號(hào)。mode
:文件的權(quán)限模式。例如,可讀、可寫(xiě)、可執(zhí)行等。nlink
:文件指向的鏈接數(shù)。uid
:文件所有者的用戶(hù)ID。gid
:文件所屬組的組ID。size
:文件的大?。ㄗ止?jié))。atime
:文件最后訪(fǎng)問(wèn)時(shí)間。mtime
:文件最后修改時(shí)間。ctime
:文件狀態(tài)更改時(shí)間。blksize
:文件的最佳塊大?。ㄗ止?jié))。blocks
:文件使用的塊數(shù)。以下是一個(gè)使用file_get_attributes()
函數(shù)獲取文件屬性的示例:
$file = 'example.txt';
$attributes = file_get_attributes($file);
if ($attributes === false) {
echo "Error: Unable to get file attributes.";
} else {
echo "File: " . $file . "\n";
echo "Size: " . $attributes['size'] . " bytes\n";
echo "Last Modified: " . date('Y-m-d H:i:s', $attributes['mtime']) . "\n";
echo "Permissions: " . $attributes['mode'] . "\n";
}
請(qǐng)注意,file_get_attributes()
函數(shù)僅適用于文件系統(tǒng)上的文件和目錄。對(duì)于其他類(lèi)型的資源,可能需要使用其他函數(shù)。