PHP is_readable() 函數
PHP is_readable() 函數

定義和用法
is_readable() 函數檢查指定的文件是否可讀。
如果文件可讀,該函數返回 TRUE。
語法
is_readable(file)
參數 | 描述 |
---|---|
file | 必需。規定要檢查的文件。 |
提示和注釋
注釋:該函數的結果會被緩存。請使用 clearstatcache() 來清除緩存。
實例
<?php
$file = "test.txt";
if(is_readable($file))
{
echo ("$file is readable");
}
else
{
echo ("$file is not readable");
}
?>
$file = "test.txt";
if(is_readable($file))
{
echo ("$file is readable");
}
else
{
echo ("$file is not readable");
}
?>
上面的代碼將輸出:
test.txt is readable

相關文章
- PHP 教程
- PHP 類型比較
- PHP 超級全局變量
- PHP Cookie
- PHP Secure E-mails
- PHP 錯誤處理
- PHP array_column() 函數
- PHP array_combine() 函數
- PHP array_diff_assoc() 函數
- PHP array_key_exists() 函數
- PHP array_pop() 函數
- PHP array_replace() 函數
- PHP array_splice() 函數
- PHP array_uintersect() 函數
- PHP array_uintersect_assoc() 函數
- PHP each() 函數
- PHP in_array() 函數
- PHP key() 函數
- PHP pos() 函數
- PHP PDO