PHP fileinode() 函数
PHP 教程
· 2019-01-24 22:56:58
定义和用法
fileinode() 函数返回指定文件的 inode 编号。
如果成功,该函数返回指定文件的 inode 编号。如果失败,则返回 FALSE。
语法
fileinode(filename)
| 参数 | 描述 |
|---|---|
| filename | 必需。规定要检查的文件。 |
提示和注释
注释:该函数的结果会被缓存。请使用 clearstatcache() 来清除缓存。
注释:该函数不能在 Windows 系统上运行。
实例
<?php
echo fileinode("test.txt");
?>
点击查看所有 PHP 教程 文章: https://codercto.com/courses/l/5.html
Code Reading
Diomidis Spinellis / Addison-Wesley Professional / 2003-06-06 / USD 64.99
This book is a unique and essential reference that focuses upon the reading and comprehension of existing software code. While code reading is an important task faced by the vast majority of students,......一起来看看 《Code Reading》 这本书的介绍吧!