Home > Backend Development > PHP Tutorial > 关于压缩的一个有关问题,ZipArchive在PHP5.2和PHP5.3用法不一样吗

关于压缩的一个有关问题,ZipArchive在PHP5.2和PHP5.3用法不一样吗

WBOY
Release: 2016-06-13 12:54:17
Original
1028 people have browsed it

关于压缩的一个问题,ZipArchive在PHP5.2和PHP5.3用法不一样吗?

本帖最后由 bxline 于 2013-02-09 19:26:18 编辑 下面的代码我用apache+ php5.2本机调试是生成一个aa.zip是正确的
但传到服务器上,服务器是PHP5.3运行下面的代码结果生成2个文件(一个是aa.zip.a04780,另一个是aa.zip.b04780,这2个文件。而不是正常只生成aa.zip一个文件),2个ZIP文件后面还带数字编号,什么原因呢。
服务器用的是WIN03+FASTCGI+PHP5.3

下面是代码,

$zip = new ZipArchive();

if ($zip->open('d:/aa.zip', ZIPARCHIVE::CREATE) !== TRUE) {
   die ("Could not open archive");
}
$zip->addFile("d:/bb.txt",basename("bb.txt"));
$zip->close();
echo "Archive created successfully.";  
?>

------解决方案--------------------
经测试,没有发现你说的问题
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template