當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。