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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。