php is_executable函數用來檢查指定的檔案是否可執行,其語法為is_executable(file),參數file是必要的,指規定要檢查的檔案。
php is_executable函數怎麼用?
作用:檢查指定的檔案是否可執行。
語法:
is_executable(file)
參數:
file 必要。規定要檢查的文件。
說明:
若檔案存在且可執行,則傳回 true。
php is_executable()函數使用範例
<?php $file = is_executable("./test.txt"); if($file == 1) { echo "该文件是可执行的"; }else{ echo "该文件不可执行"; } ?>
以上是php is_executable函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!