PHP fileinode() 函數(shù)
PHP fileinode() 函數(shù)

定義和用法
fileinode() 函數(shù)返回指定文件的 inode 編號(hào)。
如果成功,該函數(shù)返回指定文件的 inode 編號(hào)。如果失敗,則返回 FALSE。
語法
fileinode(filename)
參數(shù) | 描述 |
---|---|
filename | 必需。規(guī)定要檢查的文件。 |
提示和注釋
注釋:該函數(shù)的結(jié)果會(huì)被緩存。請(qǐng)使用 clearstatcache() 來清除緩存。
注釋:該函數(shù)不能在 Windows 系統(tǒng)上運(yùn)行。
實(shí)例
<?php
echo fileinode("test.txt");
?>
echo fileinode("test.txt");
?>

相關(guān)文章
- PHP 語法
- PHP 數(shù)據(jù)類型
- PHP 類型比較
- PHP 常量
- PHP 多維數(shù)組
- PHP 異常處理
- PHP array_key_last() 函數(shù)
- PHP array_multisort() 函數(shù)
- PHP array_rand() 函數(shù)
- PHP array_search() 函數(shù)
- PHP array_udiff_assoc() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP extract() 函數(shù)
- PHP sizeof() 函數(shù)
- PHP uksort() 函數(shù)
- PHP usort() 函數(shù)
- PHP FTP 函數(shù)
- PHP Mail 函數(shù)
- PHP 雜項(xiàng) 函數(shù)