使用Google App Engine上的PclZip将文件压缩为Zip文件

时间:2014-06-26 10:29:10

标签: php google-app-engine compression google-cloud-datastore

我尝试将txt文件压缩为存储在Google云端存储分区中的zip文件。

我已经编写了一个下面的函数,该函数适用于本地文件,但不适用于存储在云存储桶中的文件。

require_once('pclzip.lib.php');
  $archive = new PclZip("gs://.../file.zip");
  $v_list = $archive->add("gs://.../file.txt");

  if ($v_list == 0) {
    die("Error : ".$archive->errorInfo(true));
  }

我希望将zip文件保存在Google存储分区的同一目录中

有什么建议吗?

干杯

0 个答案:

没有答案