06/04/2021, 14:46
Hàm fileinode() trong PHP - PHP Function
Code $filename = 'index.php'; if (getmyinode() == fileinode($filename)) { echo 'You are checking the current file.'; }
Hàm fileinode()
sẽ lấy giá trị inode của file được truyền vào.
Bạn có thể tìm hiểu về inode tại đây.
Cú pháp
Cú pháp: fileinode( $filename);
Trong đó:
$filename
là đường dẫn đến file cần kiểm tra.
Kết quả trả về
Hàm sẽ trả về inode number của file truyền vào nếu thực hiện thành công, nếu thất bại hàm sẽ trả về False.
Ví dụ
Ví dụ về hàm fileinode()
mình lấy từ trang chủ php.net:
Code
$filename = 'index.php'; if (getmyinode() == fileinode($filename)) { echo 'You are checking the current file.'; }
Tham khảo: php.net
Nguồn: Zaidap.com.net