杰克工作室 发表于 2023-2-26 15:52

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

<h5>pclzip压缩解压缩使用方法:</h5>

<pre>
// 主文件:pclzip.lib.php
// 官方:https://www.phpconcept.net/pclzip
// 使用方法:https://github.com/vikyd/pclzip-doc-zh-cn

// 压缩文件、目录使用示例
require_once(&#39;pclzip.lib.php&#39;);
$archive = new PclZip(&quot;ckeditor_for_discuz.zip&quot;);
$ret = $archive-&gt;create(&#39;data/ccc.log, folder&#39;);
if ($ret == 0) {
&nbsp; &nbsp; exit(&quot;Error : &quot;.$archive-&gt;errorInfo(true));
}
</pre>
<br />
<br />
&nbsp;
页: [1]
查看完整版本: github组件使用方法汇集--[归档]