php中的is_readable函數的用法:【is_readable(file)】。 is_readable函數用於判斷指定檔案是否可讀,如果指定檔案或目錄存在並可讀,則函數傳回true,否則,函數傳回false。
php is_readable函數用於判斷指定檔案是否可讀,其語法為is_readable(file),參數file必需,指的是規定要檢查的文件。
(推薦教學:php影片教學)
php is_readable函數怎麼用?
##作用:判斷指定檔案是否可讀。語法:
is_readable(file)參數:file必要。規定要檢查的文件。
說明:
如果由 file 指定的檔案或目錄存在且可讀,則傳回 TRUE。php is_readable()函數 範例
<?php $file = is_readable("./test.txt"); if($file == 1) { echo "该文件是可读的"; }else{ echo "该文件不可读"; } ?>
以上是php中的is_readable函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!