public function createZip()
{
$this->load->library("zip");
$name = "test.text";
$data = "ddddd";
$this->zip->add_data($name,$data);
$this->zip->archive("c:www/ci3.0/test.zip");
}

相关文章:

  • 2021-05-30
  • 2021-12-14
  • 2021-12-27
  • 2021-09-25
  • 2022-01-13
  • 2021-12-04
  • 2021-12-17
  • 2021-07-09
猜你喜欢
  • 2022-12-23
  • 2022-01-20
  • 2021-09-08
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-27
相关资源
相似解决方案