0

我在下面有这个脚本,在经过一定数量的迭代后停止而没有错误。当它使用的图像约为 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;\">&nbsp;</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;

      }

    }
4

3 回答 3

0

我遇到了这个问题,解决办法是临时增加内存限制脚本:

ini_set ("memory_limit", "100M");
于 2015-01-22T20:46:06.163 回答
0

也许尝试添加一些你自己的错误日志。

$filename = $srcDir . '/' . $filer;

echo "Trying {$filename}";

if (is_file($filename)) {

    //do the processing

} else {
    echo "{$filename} was not a file";
}

然后你至少会看到它尝试了哪些文件以及它何时停止工作。看看有没有图案?

于 2013-07-02T19:02:05.287 回答
0

将 的值提高set_time_limit(20);到更高的超时值...

提供错误消息可能会提供更多洞察力。

此外,使用后imagejpeg,使用imagedestroy($image_p)释放内存。

于 2013-07-02T18:43:05.693 回答