本文实例讲述了php获取文件类型和文件信息的方法。分享给大家供大家参考。具体实现方法如下:
<?php $file = "php.txt"; //打开文件,r表示以只读方式打开 $handle = fopen($file,"r"); //获取文件的统计信息 $fstat = fstat($handle); echo "文件名:".basename($file)."<br>"; //echo "文件大小:".round(filesize("$file")/1024,2)."kb<br>"; echo "文件大小:".round($fstat["size"]/1024,2)."kb<br>"; //echo "最后访问时间:".date("Y-m-d h:i:s",fileatime($file))."<br>"; echo "最后访问时间:".date("Y-m-d h:i:s",$fstat["atime"])."<br>"; //echo "最后修改时间:".date("Y-m-d h:i:s",filemtime($file))."<br>"; echo "最后修改时间:".date("Y-m-d h:i:s",$fstat["mtime"]); ?>
希望本文所述对大家的php程序设计有所帮助。
-----正文到此结束-----
发表评论 取消回复