查詢

fileperms()函式—用法及示例

「 獲取指定檔案的許可權 」


函式名稱:fileperms()

函式描述:fileperms() 函式用於獲取指定檔案的許可權。

適用版本:所有 PHP 版本。

語法:fileperms(file_path)

引數:

  • file_path:必需,指定要獲取許可權的檔案路徑。

返回值:返回一個表示檔案許可權的數字。

示例:

$file = '/path/to/file.txt';
$permissions = fileperms($file);

echo "檔案許可權:{$permissions}";

輸出:

檔案許可權:33206

注意事項:

  • fileperms() 函式返回的許可權值是一個十進位制數,需要使用其它函式(如 decoct())將其轉換為八進位制表示。
  • 返回的許可權值表示檔案的所有者、所屬組和其他使用者的許可權。
補充糾錯
上一個函式: FFI\CType::getSize()函式
下一個函式: fileowner()函式
熱門PHP函式
分享連結