在PHP中,可以使用file_get_attributes()
函数来获取文件的属性。这个函数返回一个关联数组,包含了关于文件的元数据信息。以下是一些常见的文件属性:
dev_major
:设备文件的主设备号。dev_minor
:设备文件的次设备号。dev_node
:设备文件的节点号。ino
:文件的inode号。mode
:文件的权限模式。例如,可读、可写、可执行等。nlink
:文件指向的链接数。uid
:文件所有者的用户ID。gid
:文件所属组的组ID。size
:文件的大小(字节)。atime
:文件最后访问时间。mtime
:文件最后修改时间。ctime
:文件状态更改时间。blksize
:文件的最佳块大小(字节)。blocks
:文件使用的块数。以下是一个使用file_get_attributes()
函数获取文件属性的示例:
$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";
}
请注意,file_get_attributes()
函数仅适用于文件系统上的文件和目录。对于其他类型的资源,可能需要使用其他函数。