fileinode() 函數是 PHP 中的內置函數,用於返回文件的 inode。
用法:
fileinode(string $filename): int|false
參數:該函數隻有一個參數:
- filename: 該參數指定特定文件的路徑。
返回值:該函數返回文件的索引節點號,否則返回“false”。
錯誤:根據失敗情況,將發出 E_WARNING。
示例 1:下麵的代碼演示了fileinode()函數。
PHP
<?php
$filename = "index.php";
if (getmyinode() == fileinode($filename)) {
echo "You are checking the current file.";
}
?>
輸出:
You are checking the current file.
示例 2:下麵的代碼是另一個演示fileinode()函數。
PHP
<?php
$filename = "text.txt";
if (getmyinode() == fileinode($filename)) {
echo "You are checking the current file.";
} else {
echo "You are not checking the current files";
}
?>
輸出:
You are not checking the current files
參考: https://www.php.net/manual/en/function.fileinode.php
相關用法
- PHP fileinode()用法及代碼示例
- PHP fileatime()用法及代碼示例
- PHP filectime()用法及代碼示例
- PHP fileperms()用法及代碼示例
- PHP file_exists()用法及代碼示例
- PHP file()用法及代碼示例
- PHP fileowner()用法及代碼示例
- PHP filemtime()用法及代碼示例
- PHP filegroup()用法及代碼示例
- PHP filetype()用法及代碼示例
- PHP file_put_contents()用法及代碼示例
- PHP filesize( )用法及代碼示例
- PHP file_get_contents()用法及代碼示例
- PHP file_get_contents()和file_put_contents()的區別用法及代碼示例
- PHP file_get_contents和cURL的區別用法及代碼示例
- PHP filter_var_array()用法及代碼示例
- PHP filter_has_var()用法及代碼示例
- PHP filter_id()用法及代碼示例
- PHP filter_input()用法及代碼示例
- PHP filter_input_array()用法及代碼示例
- PHP filter_list()用法及代碼示例
- PHP filter_var()用法及代碼示例
- PHP finfo_close()用法及代碼示例
- PHP finfo_set_flags()用法及代碼示例
- PHP finfo_open()用法及代碼示例
注:本文由純淨天空篩選整理自neeraj3304大神的英文原創作品 PHP fileinode() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。