php目錄不存在是怎麼判斷的

2020-07-16 10:06:20

php目錄不存在的判斷方法:首先建立一個PHP範例檔案;然後輸入判斷語句為「bool file_exists (string $filename)」;最後在瀏覽器中執行該檔案即可判斷目錄是否存在。

php判斷目錄是否存在

file_exists — 檢查檔案或目錄存在

說明

bool file_exists    ( string $filename   )

檢查檔案或目錄是否存在。

引數

filename

檔案或目錄的路徑。

在 Windows 中要用 //computername/share/filename 或者 computernamesharefilename 來檢查網路中的共用檔案。

返回值

如果由 filename 指定的檔案或目錄存在則返回 TRUE,否則返回 FALSE。

Note:

 This function will return FALSE for symlinks pointing to non-existing    files.

Warning

如果因為安全模式的限制而導致不能存取檔案的話,該函數會返回 FALSE。然而,可以使用 include 來包含,如果檔案在 safe_mode_include_dir 所指定的目錄裡。

Note:

The check is done using the real UID/GID instead of the effective one.

Note: 因為 PHP 的整數型別是有符號整型而且很多平台使用32位元整型, 對2GB以上的檔案,一些檔案系統函數可能返回無法預期的結果 。

範例

Example #1 測試一個檔案是否存在

<?php
$filename = '/path/to/foo.txt';
 
if (file_exists($filename)) {
    echo "檔案 $filename 存在";
} else {
    echo "檔案 $filename 不存在";
}
?>
//以上內容來自官方PHP開發幫助文件

更多相關知識,請存取PHP中文網

以上就是php目錄不存在是怎麼判斷的的詳細內容,更多請關注TW511.COM其它相關文章!