<?php
$file = 'test.txt';
echo date('r', filemtime($file));
?>
返回的说unix的时间戳,这在缓存技术常用.
相关的还有获取上次被访问的时间fileatime(),filectime()当文件的权限,所有者,所有组或其它 inode 中的元数据被更新时间,fileowner()函数返回文件所有者
$owner = posix_getpwuid(fileowner($file));
(非window系统),ileperms()获取文件的权限,
复制代码 代码如下:
<?php
$file = 'dirlist.php';
$perms = substr(sprintf('%o', fileperms($file)), -4);
echo $perms;
?>
filesize()返回文件大小的字节数:
复制代码 代码如下:
<?php
// 输出类似:somefile.txt: 1024 bytes
$filename = 'somefile.txt';
echo $filename . ': ' . filesize($filename) . ' bytes';
?>
获取文件的全部信息有个返回数组的函数stat()函数:
复制代码 代码如下:
<?php
$file = 'dirlist.php';
$perms = stat($file);
var_dump($perms);
?>
您可能感兴趣的文章: