首页 > php框架 > 简单介绍PHP获取文件属性方法

简单介绍PHP获取文件属性方法

PHP获取文件属性之获取最近修改时间:

  1. < ?php  
  2. $file = test.txt;  
  3. echo date(r, 
    filemtime($file));  
  4. ?> 

返回的说unix的时间戳,这在缓存技术常用.

相关PHP获取文件属性的还有获取上次被访问的时间fileatime(),filectime()当文件的权限,所有者,所有组或其它 inode 中的元数据被更新时间,fileowner()函数返回文件所有者

$owner = posix_getpwuid(fileowner($file));

(非window系统),ileperms()获取文件的权限,

  1. < ?php  
  2. $file = dirlist.php;  
  3. $perms = substr(sprintf
    (%o, fileperms($file))
    , -4);  
  4. echo $perms;  
  5. ?> 
  6.  

filesize()返回文件大小的字节数:

  1. < ?php  
  2. // 输出类似:somefile.txt:
     1024 bytes  
  3. $filename = somefile.txt;  
  4. echo $filename . :  
    . filesize($filename) .  bytes;  
  5. ?> 
  6.  

PHP获取文件属性的全部信息有个返回数组的函数stat()函数:

  1. < ?php  
  2. $file = dirlist.php;  
  3. $perms = stat($file);  
  4. var_dump($perms);  
  5. ?> 
  6.  


本文链接:http://www.phprm.com/frame/php1003998.html

收藏随意^^请保留教程地址.

标签:none

发表留言