我每天上传几千张图片到我的网络服务器。
图像文件名采用以下格式:photoXXXXXXX-Y.jpeg其中XXXXXXX是记录ID,Y是图像数。 (例如 - photo1357936-2.jpeg)
在MySQL表中有一个包含记录ID(sysid)的列和一个包含Y(num_of_photos)的列。最多有12个图像与ID相关联。
该表每天更新,并添加或删除包含ID的记录。
我需要以某种方式遍历id并与图像文件名的记录id部分进行比较,然后删除不再与给定id相关联的删除图像。
或者将图像文件名的记录ID部分与id进行比较,并删除孤立图像。无论哪种逻辑都更健全。
我可以使用CRON自动执行此任务,并知道如何取消设置以删除文件,但不确定从何处开始。
有什么想法吗?
答案 0 :(得分:2)
有什么想法吗?
你实际回答了自己的问题。
我需要以某种方式遍历id并与图像文件名的记录id部分进行比较,然后删除不再与给定id相关联的删除图像。
虽然给你一些面包屑:
1)opendir
& readdir
迭代文件/文件夹以获取文件名(可能是递归的)
2)preg_match
获取文件名的X和Y部分
3)mysql_query
(在课前有mysql_connect
等)获取X和Y的记录。
4)mysql_num_rows
查看数据库中是否有条目
5)如果不是:unlink
答案 1 :(得分:0)
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
// path to the images
$path_img='./media/images/inside/gallery';
// where images are listed in database
$table_name='gallery';
$field_name='file';
// unnecessary parts of filenames
$odd_tokens = array("_small", ".jpg", ".");
// limit number of image files to check, set to 10 for testing
$limit=10;
echo "begin\r\n";
//connection constants
include './application/config/config.php';
try{
$pdo = new PDO( 'mysql:host='.config::$db_server.';dbname='.config::$db_name, config::$db_user, config::$db_pass );
}
catch (Exception $e){
echo $e->getMessage();
exit();
}
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$r=$pdo->query('select count(1) cnt from '.$table_name)->fetch();
echo 'count images in database: '.$r['cnt']."\r\n";
// reset some counters
$cnt_files=0;
$cnt_checked=0;
$cnt_not_found=0;
$cnt_found=0;
$path=$path_img;
if ($handle = opendir($path)) {
while ($cnt_files != $limit && false !== ($entry = readdir($handle))) {
if ($entry != "." && $entry != "..") {
$cnt_files++;
if($entry > "") {
$cnt_checked++;
$img_name = str_replace ($odd_tokens,'',$path . '/' . $entry);
if(!checkExistsDb($pdo, $img_name, $table_name, $field_name)) {
$cnt_not_found++;
echo 'rm ' . $path . '/' . $entry . "\r\n";
//this will delete files unlink($path.'/'.$entry);
} else {
$cnt_found++;
}
}
}
}
closedir($handle);
}
else echo 'not found: '.$path."\r\n";
unset($pdo);
echo 'files: '.$cnt_files.' checked: '.$cnt_checked.' not_found: '.$cnt_not_found.' found: '.$cnt_found;
function checkExistsDb($pdo, $img_name, $table_name, $field_name) {
try{
$st = $pdo->prepare('SELECT ' . $field_name . ' FROM ' . $table_name . ' WHERE '. $field_name . '=:filename');
$st->execute(array(':filename'=>$img_name));
$result = $st->fetchAll();
}
catch (PDOException $e) {
echo $e->getMessage();
}
return $result?true:false;
}
谢谢 https://www.prestashop.com/forums/topic/290936-cleanup-imgp-folder-and-image-folder-questions/