英 [ˈri:dəbl]   美 [ˈridəbəl]  

adj.易懂的;易懂的

php is_readable()函數 語法

作用:判斷指定檔名是否可讀。

語法:is_readable(file)

參數:

參數說明
file    ##。規定要檢查的文件。    

說明:若由 file 指定的檔案或目錄存在且可讀,則傳回 TRUE。

php is_readable()函數 範例

<?php
$file = is_readable("./test.txt");
if($file == 1)
{
    echo "该文件是可读的";
}else{
    echo "该文件不可读";
}
?>
#