目录

PHP fileinode() 函数

❮ PHP 文件系统参考

示例

返回"test.txt"的文件inode:

<?php
echo fileinode("test.txt");
?>
运行示例 »

定义和用法

fileinode() 函数返回指定文件的索引节点。

笔记:该函数的结果被缓存。使用清除统计缓存()清除缓存。

语法

fileinode( filename)

参数值

Parameter Description
filename Required. Specifies the path to the file to check


技术细节

返回值: 成功时文件的 inode 号,失败时为 FALSE
PHP 版本: 4.0+

❮ PHP 文件系统参考