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

相关文章:

  • 2022-01-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-15
  • 2022-12-23
  • 2022-02-10
  • 2021-11-25
  • 2022-12-23
猜你喜欢
  • 2021-11-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-28
  • 2022-01-03
  • 2022-01-12
相关资源
相似解决方案