php is_executable函數用來判斷某一檔案是否可以執行,如果檔案存在且可執行則回傳 TRUE ,錯誤時傳回 FALSE, 本文章向大家介紹is_executable函數的基本語法與使用實例。
php is_executable函數介紹
is_executable函數用於判斷給定檔案名稱是否可執行
語法:
bool is_executable ( string $filename )
bool is_executable ( string $filename )
名是否執行給定。
參數:
filename 檔案的路徑。
回傳值:
如果檔案存在且可執行則傳回 TRUE ,錯誤時傳回 FALSE 。
php is_executable函數實例
使用is_executable判斷permissions.php檔案是否可以執行,程式碼如下:
<?php $file_name="permissions.php"; //Only works on Windows with PHP 5.0.0 or later if(is_executable($file_name)) { echo ("The file $file_name is executable.<br />"); } else { echo ("The file $file_name is not executable.<br />"); } ?>
_以上判斷對php資料,謝謝大家對本站的支持!
更多php is_executable判斷給定檔名是否可執行實例相關文章請關注PHP中文網!