php 多個文件壓縮到一塊兒存儲

$zip = new ZipArchive();
$res = $zip->open('test.zip', ZipArchive::CREATE); //不存在則建立
$filepath = 'sendmsg.php';
$zip->addFile($filepath);
$zip->close();php

相關文章
相關標籤/搜索