我以手动方式执行此操作,但我认为可能有更自动的方式来执行此操作。下面的脚本必须在每个文件夹中调整 1000 个文件夹的大小,总共有超过 100K 的图像(不是每个文件夹中的 100K)。我只有两分钟的 max_execution_time 来运行它。它可以在两分钟内完成大约 10 个文件夹。但是,实际上我只是希望脚本在两分钟结束之前暂停......然后从它停止的地方重新开始......希望重新启动它是 max_execution_time。我不知道 sleep() 是否可以做到这一点 - sleep 可能会计入执行时间,不确定。
手动方法是将 $count 变量增加 10,然后将 while 循环中的 i$ 也增加 10。因此,它将从中断的地方开始,一次处理 10 个文件夹。刷新以运行它。目前我也没有 cron 访问权限。
这是脚本...
class DevTestHelper {
//This will Go through all full size images and resize images into requested folder
function resizeGalleryImages($destFolder, $width, $height, $isCrop = false) {
$count = 1000;
$source = JPATH_SITE."/images/gallery/full";
$dest = JPATH_SITE."/images/gallery/".$destFolder;
echo 'Processing Images<br>';
//Loop through all 1000 folders 0 to 999 in the /full dir
for($i=0; $i < $count;$i++) {
$iPath = $source.'/'.$i;
if(is_dir($iPath)) {
$h = opendir($iPath);
//Loop through all the files in numbered folder
while ($entry = readdir($h)) {
//only read files
if ($entry != "." && $entry != ".." && !is_dir($entry)) {
$img = new GImage($source.'/'.$i.'/'.$entry);
$tmp = $img->resize($width, $height, true, 3);
if($isCrop) {
$tmpWidth = $tmp->getWidth();
$tmpHeight = $tmp->getHeight();
$xOffset = ($tmpWidth - $width) / 2;
$yOffset = ($tmpHeight - $height) / 2;
$tmp->crop($width, $height, $xOffset, $yOffset, false, 3);
}
$destination = $dest.'/'.$i.'/'.$entry;
if(!$tmp->toFile($destination)) {
echo 'error in creating resized image at: '.$destination.'<br>';
}
//echo $entry.'<br>';
}
}
echo 'Processed: '.$i.' Folder<br>';
}
}