php解码base 64非常大的文件,不是字符串

时间:2013-10-22 06:30:31

标签: php base64

我有一个系统,在从电子邮件文件中剥离文件后,将文件保存到基本64位编码的服务器硬盘中。

我想再次将文件更改为原始格式,我该如何在php中执行此操作?

这是我试图保存文件的方式,但似乎没有创建有效的文件:

$start = $part['starting-pos-body'];
$end = $part['ending-pos-body'];
$len = $end-$start;
$written = 0;
$write = 2028;
$body = '';
while ($start <= $end) {
 fseek($this->stream, $start, SEEK_SET);
 $my = fread($this->stream, $write);
 fwrite($temp_fp, base64_decode($my));
 $start += $write;
}
fclose($temp_fp);

3 个答案:

答案 0 :(得分:3)

@traylz明确指出为什么它不应该失败的原因。但是,即使是大型图像,base64_decode()也可能会失败。我已经处理了6到7 MB的文件,我还没有超过这个大小,所以对我来说它应该很简单:

$dir = dirname(__FILE__);
// get the base64 encoded file and decode it
$o_en = file_get_contents($dir . '/base64.txt');
$d = base64_decode($o_en);

// put decoded string into tmp file
file_put_contents($dir . '/base64_d', $d);

// get mime type (note: mime_content_type() is deprecated in favour
// for fileinfo functions)
$mime = str_replace('image/', '.', mime_content_type($dir . '/base64_d'));
rename($dir . '/base64_d', $dir . '/base64_d' . $mime);

如果以下失败,请尝试添加chunk_split()函数来解码操作:

$d = base64_decode(chunk_split($o_en));

所以我说的是什么...忘记循环,除非有需要...如果你不相信php的mime检测,请保留orignal文件扩展名。如果处理大文件,请在chunk_split()操作上使用base64_decode()

注意:所有理论都未经过测试

编辑:对于大多数可能会冻结file_get_contents()的大型文件,读入您需要的内容,输出到文件以便使用少量内存:

$chunkSize = 1024;
$src = fopen('base64.txt', 'rb');
$dst = fopen('binary.mime', 'wb');
while (!feof($src)) {
    fwrite($dst, base64_decode(fread($src, $chunkSize)));
}

答案 1 :(得分:1)

你的问题你读了2028个块,检查start&lt; = end你读取chunk之后,所以你读取超出结束指针,你应该检查&lt; insead of&lt; =(以避免读取0字节)

此外,您不需要对每次迭代进行fseek,因为fread从当前位置读取。你可以把fssek带出循环(之前)。为什么2028顺便说一下? 试试这个:

fseek($this->stream, $start, SEEK_SET);
while ($start < $end) {
    $write = min($end-$start,2048);
    $my = fread($this->stream, $write);
    fwrite($temp_fp, base64_decode($my));
    $start += $write;
}
fclose($temp_fp);

答案 2 :(得分:0)

谢谢大家的帮助 最后我最终得到了:

shell_exec('/usr/bin/base64 -d '.$temp_file.' > '.$temp_file.'_s');