$zip = new ZipArchive; if ($zip->open('test.zip') === TRUE) { $zip->addFile("/path/to/a.txt", 'a.txt'); $zip->close(); echo 'ok'; } ...
確定! 回上一頁