php zip文件到多个zip文件

时间:2012-05-04 11:56:16

标签: php zip

我正在使用php生成一个最高可达50MB的文件。在脚本结束时,我需要将文件发送到给定的电子邮件地址。我想将文件分成多个块,这样我就可以发送每个都没有太大附件的电子邮件。 在我看来,明显的解决方案是将文件压缩成zip部分。但我似乎无法找到如何在php中使用zip分割文件。

任何人都可以帮助我,或者让我指出更好的解决方案吗? :)

1 个答案:

答案 0 :(得分:0)

easyzip有一个当前版本的PHP的错误。替换这一行:

define(FUNCTION_NOT_FOUND,'Error: gzcompress() function is not found');
define(FILE_NOT_FOUND,'Error: file is not found');
define(DIRECTORY_NOT_FOUND,'Error: directory is not found');

以下:

define("FUNCTION_NOT_FOUND",'Error: gzcompress() function is not found');
define("FILE_NOT_FOUND",'Error: file is not found');
define("DIRECTORY_NOT_FOUND",'Error: directory is not found');