統計 PHP 目錄中的檔案數
在最近的專案中,您遇到需要確定特定目錄中檔案的數量。您嘗試了以下程式碼:
<code class="php">$dir = opendir('uploads/'); $i = 0; while (false !== ($file = readdir($dir))) { if (!in_array($file, array('.', '..') and !is_dir($file)) $i++; } echo "There were $i files";</code>
但是,您在正確顯示結果時遇到了困難。建議使用 FilesystemIterator 類別的更有效方法:
<code class="php">$fi = new FilesystemIterator(__DIR__, FilesystemIterator::SKIP_DOTS); printf("There were %d Files", iterator_count($fi));</code>
此程式碼利用 FilesystemIterator 類,它提供了一個用於遍歷檔案系統中的檔案和目錄的迭代器。透過指定 SKIP_DOTS 標誌,它會跳過特殊目錄“.”。和計數中的“..”。 iterator_count() 函數會計算迭代器中的元素數量,為您提供指定目錄中的檔案總數。
以上是如何高效統計PHP目錄下的檔案數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!