fileinode() 함수는 파일의 inode 번호를 반환합니다. 이 함수는 성공하면 파일의 inode 번호를 반환하고 실패하면 FALSE를 반환합니다.
구문
fileinode(file_path)
매개변수
-
file_path - 확인할 파일입니다.
반환
fileinode() 함수는 성공하면 파일의 inode 번호를 반환하고 실패하면 FALSE를 반환합니다.
다음은 예입니다 -
예시
<?php $file_path= new.php'; if (getmyinode() == fileinode($file_path)) { echo 'This is your file!'; } ?>
다음은 출력입니다 -
참고 - 결과는 Windows 시스템에 따라 다를 수 있습니다.
출력
This is your file!