我在下面有这个脚本,在经过一定数量的迭代后停止而没有错误。当它使用的图像约为 4MB 时,脚本会在大约 10 次迭代后停止。当图像大约 1MB 时,脚本会在大约 30 次迭代后停止。当图像较小时,脚本可以进行 500 次迭代。这似乎不是超时,因为它每次都发生在不同的时间计数。
当我在我自己的机器上使用 xxamp 进行测试时,没有错误,并且脚本完美地完成了。
我猜这是某种类型的内存问题?在记忆方面,我完全没有经验和一无所知。
编辑:我在 imagecopyresampled 函数之前和之后放了一个回声。该脚本似乎停止在此功能上。
这是我遍历目录中每个文件的循环:
while (false !== ($filer = readdir($handle))) {
if (is_file($srcDir . '/' . $filer)) {
set_time_limit(20);
$counter++;
$total = $x;
$percent = intval($counter/$total * 100)."%";
// Javascript for updating the progress bar and information
echo '<script language="javascript">
document.getElementById("progress").innerHTML="<div style=\"width:'.$percent.';background-color:#333;\"> </div>";
document.getElementById("information").innerHTML="'.$counter.' images processed.";
</script>';
//location/filename variable
$filename = $srcDir . '/' . $filer;
// This is for the buffer achieve the minimum size in order to flush data
echo str_repeat(' ',1024*64);
// Send output to browser immediately
flush();
//get the extension of the image
$path_parts = pathinfo("$filename");
$ext = strtolower ($path_parts['extension']);
$width = 100;
$height = 100;
// Get new dimensions
list($width_orig, $height_orig) = getimagesize($filename);
$ratio_orig = $width_orig/$height_orig;
if ($width/$height > $ratio_orig) {
$width = $height*$ratio_orig;
} else {
$height = $width/$ratio_orig;
}
// Resample
$image_p = imagecreatetruecolor($width, $height);
$image = imagecreatefromjpeg($filename);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig);
// Output the small image
imagejpeg($image_p, "$destDir/$filer", 100);
//Move the big image
rename($srcDir . '/' . $filer, $destDirbig . '/' . $filer);
echo $counter;
}
}