Questions tagged «zip»

3
Magento2:如何处理zip文件
我需要能够以编程方式处理zip文件。 在magento 1.9中,我正在做: $zip = new ZipArchive(); if ($zip->open($Zippath) === TRUE) { $zip->addFile($Filepath, $Filename); $zip->addFile($FilepathL, "toto.txt"); $zip->close(); return TRUE; } 我如何在magento 2中做同样的事情?
8 magento2  zip 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.