私は少し新しいプロジェクトに取り組んでいます。特定のディレクトリにあるファイルの数を知りたいと思いました。
<div id="header">
<?php
$dir = opendir('uploads/'); # This is the directory it will count from
$i = 0; # Integer starts at 0 before counting
# While false is not equal to the filedirectory
while (false !== ($file = readdir($dir))) {
if (!in_array($file, array('.', '..') and !is_dir($file)) $i++;
}
echo "There were $i files"; # Prints out how many were in the directory
?>
</div>
これは私がこれまでに持っているものです(検索から)。しかし、正しく表示されていませんか?私はいくつかのメモを追加したので、それらを自由に削除してください。それらは私ができる限りそれを最もよく理解できるようにするためのものです。
さらに詳しい情報が必要な場合、または私がこれについて十分に説明していないように感じる場合は、遠慮なくそのように述べてください。