去评论
dz插件网

github组件使用方法汇集--[归档]

左右不逢缘
2023/04/22 10:03:26
pclzip压缩解压缩使用方法:
  1. // 主文件:pclzip.lib.php
  2. // 官方:https://www.phpconcept.net/pclzip
  3. // 使用方法:https://github.com/vikyd/pclzip-doc-zh-cn
  4. // 压缩文件、目录使用示例
  5. require_once('pclzip.lib.php');
  6. $archive = new PclZip("ckeditor_for_discuz.zip");
  7. $ret = $archive->create('data/ccc.log, folder');
  8. if ($ret == 0) {
  9.     exit("Error : ".$archive->errorInfo(true));
  10. }