PHP filegroup() 函數(shù)
PHP filegroup() 函數(shù)

定義和用法
filegroup() 函數(shù)返回指定文件的組 ID。
如果成功,該函數(shù)返回指定文件所屬組的 ID。如果失敗,則返回 FALSE。
語法
filegroup(filename)
參數(shù) | 描述 |
---|---|
filename | 必需。規(guī)定要檢查的文件。 |
提示和注釋
注釋:該函數(shù)的結(jié)果會被緩存。請使用 clearstatcache() 來清除緩存。
注釋:該函數(shù)不能在 Windows 系統(tǒng)上運行。
提示:請使用 posix_getgrgid() 來把組 ID 轉(zhuǎn)換為組名。
實例
<?php
echo filegroup("test.txt");
?>
echo filegroup("test.txt");
?>

相關(guān)文章
- PHP 變量
- PHP 文件處理
- PHP 文件上傳
- PHP array() 函數(shù)
- PHP array_change_key_case() 函數(shù)
- PHP array_key_exists() 函數(shù)
- PHP array_merge_recursive() 函數(shù)
- PHP array_slice() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP arsort() 函數(shù)
- PHP asort() 函數(shù)
- PHP natsort() 函數(shù)
- PHP next() 函數(shù)
- PHP reset() 函數(shù)
- PHP 5 Directory 函數(shù)
- PHP 5 Filesystem 函數(shù)
- PHP Filter 函數(shù)
- PHP 雜項 函數(shù)
- PHP 5 MySQLi 函數(shù)
- PHP PDO