PHP is_readable() 函數(shù)

2018-11-21 16:11 更新

PHP is_readable() 函數(shù)


PHP Filesystem 參考手冊 完整的 PHP Filesystem 參考手冊

定義和用法

is_readable() 函數(shù)檢查指定的文件是否可讀。

如果文件可讀,該函數(shù)返回 TRUE。

語法

is_readable(file)

參數(shù) 描述
file 必需。規(guī)定要檢查的文件。


提示和注釋

注釋:該函數(shù)的結(jié)果會被緩存。請使用 clearstatcache() 來清除緩存。


實例

<?php
$file = "test.txt";
if(is_readable($file))
{
echo ("$file is readable");
}
else
{
echo ("$file is not readable");
}
?>

上面的代碼將輸出:

test.txt is readable


PHP Filesystem 參考手冊 完整的 PHP Filesystem 參考手冊
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號