若成功,則傳回指定檔案的 inode 節點號。若失敗,則傳回 false。
語法
fileinode(filename)
filename 必要。規定要檢查的文件。
實例
例如# 1比較inode上的檔案與目前檔案
<?php $filename = 'index.php'; if (getmyinode() == fileinode($filename)) { echo 'You are checking the current file.'; } ?>
以上是php fileinode() 函數使用實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!