PHP fileinode() Function
Definition and Usage
The fileinode() function returns the inode number of the file.
If successful, it returns the inode number of the specified file. If failed, it returns false.
Syntax
fileinode(filename)
Parameter | Description |
---|---|
filename | Required. Specifies the file to be checked. |
Tips and Comments
Tip:The result of this function will be cached. Please use clearstatcache() To clear the cache.
Example
<?php echo fileinode("test.txt"); ?>