私はこれを持っています。ファイルを含むディレクトリをスキャンしています(例:count.php.2013-04-11_151028.bak)。ファイル名から日付と時刻だけが必要で、それらをデータベースに挿入したい-2つのフィールドを持つテーブル(table2)(file_date -timestamp、count-int)。カウントは、そのフォルダーに日付が何回あるかを確認します (たとえば、5 つのファイル名に日付が含まれている場合、カウントは 5 になります。ファイルの日付に db にレコードがない場合、日付が挿入され、カウントは 1 になります)。同じファイルを常にスキャンしたくないため、挿入されたすべてのファイルはソースディレクトリから別のディレクトリに削除されます。
$dir = "ルート1"; $files = scandir($dir);
foreach ($files as $file_name)
{
$data = '';
$an = substr($file_name, -21, 4);
$luna = substr($file_name, -16, 2);
$zi = substr($file_name, -13, 2);
$ora = substr($file_name, -10, 2);
$min = substr($file_name, -8, 2);
$data = $an. '-' .$luna. '-' .$zi. ' ' .$ora. ':' .$min.':'.'00';
if(strtotime($data) == FALSE ) continue;
$result = mysqli_query($con,"SELECT count(*) as total FROM table2 WHERE file_date='$data'");
$row = mysqli_fetch_array($result, MYSQLI_ASSOC);
if($row >0) {
mysqli_query($con, "UPDATE table2 SET count=count+1 WHERE file_date='$data'");
}
else {
mysqli_query($con,"INSERT INTO table2 (file_date, count) VALUES ('$data',1)");
$source = "route1";
$destination = "route2";
foreach ($files as $file) {
if (in_array($file, array(".",".."))) continue;
if (copy($source.$file, $destination.$file)) {
$delete[] = $source.$file;
}
}
foreach ($delete as $file) {
unlink($file);
}
}
}