当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP fileinode()用法及代码示例


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


相关用法


注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP fileinode() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。