位置: 编程技术 - 正文
推荐整理分享PHP:stat()的用法_Filesystem函数(php stl),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:php state,php strtok,php stat,php的strstr,php strtok,php stl,php stat,php stl,内容如对您有帮助,希望把文章链接给更多的朋友!
(PHP 4, PHP 5)
stat — 给出文件的信息
说明 array stat ( string $filename )获取由 filename 指定的文件的统计信息。如果 filename 是符号连接,则统计信息是关于被连接文件本身的,而不是符号连接。
lstat() 和 stat() 相同,只除了它会返回符号连接的状态。
参数filename
文件的路径。
返回值stat() 和 fstat() 返回格式 数字下标 关联键名(自 PHP 4.0.6) 说明 0 dev device number - 设备名 1 ino inode number - inode 号码 2 mode inode protection mode - inode 保护模式 3 nlink number of links - 被连接数目 4 uid userid of owner - 所有者的用户 id 5 gid groupid of owner- 所有者的组 id 6 rdev device type, if inode device * - 设备类型,如果是 inode 设备的话 7 size size in bytes - 文件大小的字节数 8 atime time of last access (unix timestamp) - 上次访问时间(Unix 时间戳) 9 mtime time of last modification (unix timestamp) - 上次修改时间(Unix 时间戳) ctime time of last change (unix timestamp) - 上次改变时间(Unix 时间戳) blksize blocksize of filesystem IO * - 文件系统 IO 的块大小 blocks number of blocks allocated - 所占据块的数目 * Windows 下总是 0。
* - 仅在支持 st_blksize 类型的系统下有效。其它系统(如 Windows)返回 -1。
如果出错,stat() 返回 FALSE。
Note:因为 PHP 的整数类型是有符号整型而且很多平台使用 位整型,对 2GB以上的文件,一些文件系统函数可能返回无法预期的结果 。
错误/异常错误时会产生 E_WARNING 级别的错误。
更新日志版本 说明 4.0.6 返回一个数组包含有文件的统计信息,该数组具有以下列出的单元,数组下标从零开始。除了数字索引之外自还可以通过关联索引来访问。
范例
Example #1 stat() 例子
<?php/*Getfilestat*/$stat=stat('C:phpphp.exe');/**Printfileaccesstime,thisisthesame*ascallingfileatime()*/echo'Accesstime:'.$stat['atime'];/**Printfilemodificationtime,thisisthe*sameascallingfilemtime()*/echo'Modificationtime:'.$stat['mtime'];/*Printthedevicenumber*/echo'Devicenumber:'.$stat['dev'];?>
Example #2 Using stat() information together with touch()
<?php/*Getfilestat*/$stat=stat('C:phpphp.exe');/*Didwefailedtogetstatinformation?*/if(!$stat){echo'stat()callfailed...';}else{/**Wewanttheaccesstimetobe1week*afterthecurrentaccesstime.*/$atime=$stat['atime']+;/*Touchthefile*/if(!touch('some_file.txt',time(),$atime)){echo'Failedtotouchfile...';}else{echo'touch()returnedsuccess...';}}?> 注释Note:
注意:不同文件系统对时间的判断方法可能是不相同的。
Note: 此函数的结果会被缓存。参见clearstatcache() 以获得更多细节。
Tip自 PHP 5.0.0 起, 此函数也用于某些URL 包装器。请参见 支持的协议和封装协议以获得支持 stat() 系列函数功能的包装器列表。
参见lstat() - 给出一个文件或符号连接的信息 fstat() - 通过已打开的文件指针取得文件信息 filemtime() - 取得文件修改时间 filegroup() - 取得文件的组
PHP:rename()的用法_Filesystem函数 rename(PHP4,PHP5)rename重命名一个文件或目录说明boolrename(string$oldname,string$newname[,resource$context])尝试把oldname重命名为newname。参数oldnameNote:用于oldname中的封装
PHP:rmdir()的用法_Filesystem函数 rmdir(PHP4,PHP5)rmdir删除目录说明boolrmdir(string$dirname[,resource$context])尝试删除dirname所指定的目录。该目录必须是空的,而且要有相应的权限。失败时会产生
PHP:set_file_buffer()的用法_Filesystem函数 set_file_buffer(PHP4,PHP5)set_file_bufferstream_set_write_buffer()的别名说明此函数是该函数的别名:stream_set_write_buffer()。
标签: php stl
本文链接地址:https://www.jiuchutong.com/biancheng/285173.html 转载请保留说明!友情链接: 武汉网站建设