php中判斷檔案存在是用file_exists還是is_file的整理

來源:互聯網
上載者:User

看了這篇PHP中file_exists與is_file,is_dir的區別的說法基本明白,PHP的 file_exists = is_dir + is_file。

寫程式驗證一下:

分別執行1000次,記錄所需時間。

檔案存在(目前的目錄)
is_file:0.4570ms
file_exists:2.0640ms

檔案存在(絕對路徑3層/www/hx/a/)
is_file:0.4909ms
file_exists:3.3500ms

檔案存在(絕對路徑5層/www/hx/a/b/c/)
is_file:0.4961ms
file_exists:4.2100ms

檔案不存在(目前的目錄)
is_file:2.0170ms
file_exists:1.9848ms

檔案不存在(絕對路徑5層/www/hx/a/b/c/)
is_file:4.1909ms
file_exists:4.1502ms

目錄存在
file_exists:2.9271ms
is_dir:0.4601ms
目錄不存在
file_exists:2.9719ms
is_dir:2.9359ms

is_file($file)
file_exists($file)
當$file是目錄時,is_file返回false,file_exists返回true

檔案存在的情況下,is_file比file_exists要快得多;
要檢測檔案所在的目錄越深,速度差越多,但至少快4倍。

檔案不存在的情況下,is_file比file_exists要慢一點點,但可以忽略不計。

目錄存在的情況下,is_dir比file_exists要快得多;
目錄不存在的情況下,is_dir比file_exists要慢一點點,但可以忽略不計。

結論:

如果要判斷檔案是否存在,用函數 is_file(),
如果要判斷目錄是否存在,用函數 is_dir(),
好像沒地方需要用file_exists了,不確定傳入的參數是檔案還是目錄的時候用?

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.