is_readable
(PHP 4, PHP 5, PHP 7, PHP 8)
is_readable — 判斷給定檔名是否可讀
說明
is_readable(string
$filename
): bool判斷給定檔名是否存在並且可讀。
參數
-
filename
-
檔案的路徑。
返回值
如果由 filename
指定的檔案或目錄存在並且可讀則返回 true
,否則返回 false
。
範例
示例 #1 is_readable() 例子
<?php
$filename = 'test.txt';
if (is_readable($filename)) {
echo 'The file is readable';
} else {
echo 'The file is not readable';
}
?>
錯誤/異常
失敗時拋出E_WARNING
警告。
註釋
記住 PHP 也許只能以執行 webserver 的使用者名稱(通常為 'nobody')來訪問檔案。不計入安全模式的限制。 Safe mode limitations are not taken into account before PHP 5.1.5.
注意: 此函式的結果會被快取。參見 clearstatcache() 以獲得更多細節。
小技巧
自 PHP 5.0.0 起, 此函式也用於某些 URL 包裝器。請參見 支援的協議和封裝協議以獲得支援 stat() 系列函式功能的包裝器列表。
注意:
The check is done using the real UID/GID instead of the effective one.
對於目錄這個函式可能會返回 true
。請使用 is_dir() 來區分檔案和目錄。