fileinode() Function 파일의 inode 번호를 반환합니다.
성공하면 지정된 파일의 inode 노드 번호를 반환합니다. 실패하면 false를 반환합니다.
Syntax
fileinode(filename)
파일 이름이 필요합니다. 확인할 문서를 지정합니다.
예
예시 #1 inode의 파일을 현재 파일과 비교
<?php $filename = 'index.php'; if (getmyinode() == fileinode($filename)) { echo 'You are checking the current file.'; } ?>
위 내용은 php fileinode() 함수 사용 예의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!