The fileinode() function returns the inode number of the specified file.
If successful, this function returns the inode number of the specified file. If it fails, returns FALSE.
fileinode(filename)
parameter | describe |
---|---|
filename | Required. Specifies the documents to be checked. |
Note: The results of this function will be cached. Please use clearstatcache() to clear the cache.
Note: This function does not work on Windows systems.
<?phpecho fileinode("test.txt");?>