-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.php
executable file
·40 lines (31 loc) · 1.09 KB
/
script.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
exit();
try {
// Connessione al database
$pdo = new PDO('mysql:host=localhost;dbname=facemash', 'root', '');
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
} catch (PDOException $e) {
die("Errore di connessione al database: " . $e->getMessage());
}
// Directory delle immagini
$imageDir = 'images';
// Funzione per ottenere tutte le immagini nella cartella
function getImageFiles($dir) {
$files = array_diff(scandir($dir), array('..', '.'));
return array_filter($files, function($file) use ($dir) {
return is_file($dir . '/' . $file) && preg_match('/\.(jpg|jpeg|png|gif)$/i', $file);
});
}
// Ottieni tutti i file immagine dalla cartella
$imageFiles = getImageFiles($imageDir);
if (empty($imageFiles)) {
die("Nessuna immagine trovata nella cartella $imageDir.");
}
// Preparare la query per inserire le immagini
$stmt = $pdo->prepare('INSERT IGNORE INTO images (filename) VALUES (?)');
// Inserisci ogni immagine nel database
foreach ($imageFiles as $file) {
$stmt->execute([$file]);
}
echo "Immagini inserite nel database con successo.";
?>