file_exists

file_exists,是一個函式,中文名是檢查檔案或目錄是否存在。(如果在linux下。需要檢測的父級資料夾許可權不是 777 會返回false )

基本介紹

  • 中文名:檢查檔案或目錄是否存在
  • 外文名:file_exists
  • 否則:返回 FALSE
  • 存在:則返回 TRUE
用法介紹,例子,

用法介紹

file_exists -- 檢查檔案或目錄是否存在
說明
bool file_exists ( string filename )
如果由 filename 指定的檔案或目錄存在則返回 TRUE,否則返回 FALSE
在 Windows 中要用 //computername/share/filename 或者 \\computername\share\filename 來檢查網路中的已分享檔案。

例子

. 測試一個檔案是否存在
<?php
$filename = '/path/to/foo.txt';
if (file_exists($filename)) {
echo "The file $filename exists";
} else {
echo "The file $filename does not exist";
}
?>
注: 本函式的結果會被快取。更多信息參見 clearstatcache().
警告: 如果因為安全模式的限制而導致不能訪問檔案的話,該函式會返回 FALSE。然而,如果檔案在 safe_mode_include_dir 所指定的目錄內的話,仍然可以使用 include 來包含。

相關詞條

熱門詞條

聯絡我們