PHP is_readable() 函數(shù)
PHP is_readable() 函數(shù)

定義和用法
is_readable() 函數(shù)檢查指定的文件是否可讀。
如果文件可讀,該函數(shù)返回 TRUE。
語(yǔ)法
is_readable(file)
參數(shù) | 描述 |
---|---|
file | 必需。規(guī)定要檢查的文件。 |
提示和注釋
注釋:該函數(shù)的結(jié)果會(huì)被緩存。請(qǐng)使用 clearstatcache() 來(lái)清除緩存。
實(shí)例
<?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

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