php でフォルダー名を取得する方法
PHP でフォルダー名を取得する方法は実際には非常に簡単で、1 つまたは 2 つの関数を覚えておくだけです。
$dir = "メッセージ/" // フォルダー名
;
if (is_dir($dir)){
If ($dh = opendir($dir)){
while (($file = readdir($dh)) !== false){
echo "ファイル名: $file
";
}
Closedir($dh);
}
}